The `playercreateinfo_item` table
This table is used for any custom items that you might want to give to characters on creation. I used to be used to hold the normal items that characters get as well, but now that info is read from CharStartOutfit.dbc
Table Structure
Field | Type | Attributes | Key | Null | Default | Extra | Comment |
---|---|---|---|---|---|---|---|
race | TINYINT | UNSIGNED | PRI | NO | 0 | ||
class | TINYINT | UNSIGNED | PRI | NO | 0 | ||
itemid | MEDIUMINT | UNSIGNED | PRI | NO | 0 | ||
amount | SMALLINT | UNSIGNED | NO | 1 | |||
Note | VARCHAR | YES | NULL |
Description of the fields
The character's race.
:ChrRaces.dbc_tc2
The character's class.
:ChrClasses.dbc_tc2
The template ID of the item. See item_template.entry
The number of copies of that item.
Note of the entry