Forums WoW Modding Support Archives Azerothcore Discord Archives [DiscordArchive] I dont really understand... Could you provide some images?

[DiscordArchive] I dont really understand... Could you provide some images?

[DiscordArchive] I dont really understand... Could you provide some images?

Pages (7): Previous 1 3 4 5 6 7 Next  
rektbyfaith
Administrator
0
04-12-2020, 05:45 PM
#51
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
rektbyfaith
04-12-2020, 05:45 PM #51

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

rektbyfaith
Administrator
0
04-12-2020, 05:56 PM
#52
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.
rektbyfaith
04-12-2020, 05:56 PM #52

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.

rektbyfaith
Administrator
0
04-12-2020, 06:01 PM
#53
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
rektbyfaith
04-12-2020, 06:01 PM #53

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

rektbyfaith
Administrator
0
04-12-2020, 06:03 PM
#54
Archived author: Kitzunu • Posted: 2020-04-12T18:03:03.021000+00:00
Original source

I will check soon
rektbyfaith
04-12-2020, 06:03 PM #54

Archived author: Kitzunu • Posted: 2020-04-12T18:03:03.021000+00:00
Original source

I will check soon

rektbyfaith
Administrator
0
04-12-2020, 06:03 PM
#55
Archived author: stevej • Posted: 2020-04-12T18:03:39.303000+00:00
Original source

Thank you.
rektbyfaith
04-12-2020, 06:03 PM #55

Archived author: stevej • Posted: 2020-04-12T18:03:39.303000+00:00
Original source

Thank you.

rektbyfaith
Administrator
0
04-12-2020, 06:04 PM
#56
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...
rektbyfaith
04-12-2020, 06:04 PM #56

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...

rektbyfaith
Administrator
0
04-12-2020, 06:10 PM
#57
Archived author: stevej • Posted: 2020-04-12T18:10:18.449000+00:00
Original source

```sql
SELECT * FROM `item_template` WHERE `Flags`=134221824;
```
rektbyfaith
04-12-2020, 06:10 PM #57

Archived author: stevej • Posted: 2020-04-12T18:10:18.449000+00:00
Original source

```sql
SELECT * FROM `item_template` WHERE `Flags`=134221824;
```

rektbyfaith
Administrator
0
04-12-2020, 06:16 PM
#58
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)
rektbyfaith
04-12-2020, 06:16 PM #58

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)

rektbyfaith
Administrator
0
04-12-2020, 06:17 PM
#59
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
rektbyfaith
04-12-2020, 06:17 PM #59

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

rektbyfaith
Administrator
0
04-12-2020, 06:17 PM
#60
Archived author: stevej • Posted: 2020-04-12T18:17:20.822000+00:00
Original source

Yes
rektbyfaith
04-12-2020, 06:17 PM #60

Archived author: stevej • Posted: 2020-04-12T18:17:20.822000+00:00
Original source

Yes

Pages (7): Previous 1 3 4 5 6 7 Next  
Recently Browsing
 1 Guest(s)
Recently Browsing
 1 Guest(s)