[DiscordArchive] I dont really understand... Could you provide some images?
[DiscordArchive] I dont really understand... Could you provide some images?
Archived author: conFIGured • Posted: 2020-04-12T17:45:01.361000+00:00
Original source
first aid is kinda the same way but it doesnt break/cap it 1/1. I removed 1st aid from DK in playercreateinfo_spell and it still shows up in the DK skill list lol. Maybe this stuff is hardcoded in the client, shrug
Archived author: stevej • Posted: 2020-04-12T17:56:48.841000+00:00
Original source
Hi, good afternoon. I'm trying to put together a custom lightweight item. I managed to do it, but copying the attributes of the items that already exist. But actually, I would like to create my own attributes and for example, add: strength, defense, stop, hold, skill...
But the truth is that I don't know which attribute of the table I should modify.
I also don't know if it's in `item_template` or in another table.
Any information about it, I can use. Thank you.
Archived author: stevej • Posted: 2020-04-12T18:01:22.760000+00:00
Original source
**16 Armor**
**+24 Intellect**
**+36 Stamina**
**+24 Critical Strike**
Equip: Experience gained is increased by 10%.
Requires level 1 to 80 (80)
The 10% of experience, I know where to eliminate it, because it is a spell.
The issue is where to edit those attributes that are in bold to put other differences, such as stop, defense, dodge, e.t.c
Archived author: Kitzunu • Posted: 2020-04-12T18:03:03.021000+00:00
Original source
I will check soon
Archived author: stevej • Posted: 2020-04-12T18:03:39.303000+00:00
Original source
Thank you.
Archived author: stevej • Posted: 2020-04-12T18:04:55.801000+00:00
Original source
I managed to make all the items out of lightweight fabric. But they copy the attributes of the other items. And actually, I wanted more than anything to do something a little better.
Also, I wanted to make a tank set for example.
With a shield and defense attributes, dodge, stop...
Archived author: stevej • Posted: 2020-04-12T18:10:18.449000+00:00
Original source
```sql
SELECT * FROM `item_template` WHERE `Flags`=134221824;
```
Archived author: Kitzunu • Posted: 2020-04-12T18:16:25.634000+00:00
Original source
`stat_type1` - 10 combined with `stat_value1` - 10 defines that
Check wiki for which stat type gives what
But for strength it would be ITEM_MOD_STRENGTH (4)
Archived author: Kitzunu • Posted: 2020-04-12T18:17:01.945000+00:00
Original source
http://www.azerothcore.org/wiki/item_template#stat_type
[Embed: item_template]
Wiki and Documentation of AzerothCore project
http://www.azerothcore.org/wiki/item_template
Archived author: stevej • Posted: 2020-04-12T18:17:20.822000+00:00
Original source
Yes