diff options
| author | Kitzunu <24550914+Kitzunu@users.noreply.github.com> | 2020-09-03 12:42:56 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-03 12:42:56 +0200 |
| commit | c77a71d0df28da5cf6d462027738fd2f49dc5283 (patch) | |
| tree | 10db0dd53bc93db490ebbd10a83d81327709ac4d /docs | |
| parent | 98a0ec06555e3ed56721611b30a5eb7343487075 (diff) | |
| download | wiki-c77a71d0df28da5cf6d462027738fd2f49dc5283.tar.gz wiki-c77a71d0df28da5cf6d462027738fd2f49dc5283.tar.bz2 wiki-c77a71d0df28da5cf6d462027738fd2f49dc5283.zip | |
chore(playercreateinfo_item): Update with master (#245)
* chore(playercreateinfo_item): Update with master
* Update playercreateinfo_item.md
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/playercreateinfo_item.md | 81 |
1 files changed, 17 insertions, 64 deletions
diff --git a/docs/playercreateinfo_item.md b/docs/playercreateinfo_item.md index bd0f39d..24c272e 100644 --- a/docs/playercreateinfo_item.md +++ b/docs/playercreateinfo_item.md @@ -8,70 +8,19 @@ This table is used for any custom items that you might want to give to character **Structure** -<table> -<colgroup> -<col width="12%" /> -<col width="12%" /> -<col width="12%" /> -<col width="12%" /> -<col width="12%" /> -<col width="12%" /> -<col width="12%" /> -<col width="12%" /> -</colgroup> -<tbody> -<tr class="odd"> -<td><p><strong>Field</strong></p></td> -<td><p><strong>Type</strong></p></td> -<td><p><strong>Attributes</strong></p></td> -<td><p><strong>Key</strong></p></td> -<td><p><strong>Null</strong></p></td> -<td><p><strong>Default</strong></p></td> -<td><p><strong>Extra</strong></p></td> -<td><p><strong>Comment</strong></p></td> -</tr> -<tr class="even"> -<td><p><a href="#race">race</a></p></td> -<td><p>tinyint(3)</p></td> -<td><p>unsigned</p></td> -<td><p> </p></td> -<td><p>NO</p></td> -<td><p>0</p></td> -<td><p> </p></td> -<td><p> </p></td> -</tr> -<tr class="odd"> -<td><p><a href="#class">class</a></p></td> -<td><p>tinyint(3)</p></td> -<td><p>unsigned</p></td> -<td><p> </p></td> -<td><p>NO</p></td> -<td><p>0</p></td> -<td><p> </p></td> -<td><p> </p></td> -</tr> -<tr class="even"> -<td><p><a href="#itemid">itemid</a></p></td> -<td><p>mediumint(8)</p></td> -<td><p>unsigned</p></td> -<td><p> </p></td> -<td><p>NO</p></td> -<td><p>0</p></td> -<td><p> </p></td> -<td><p> </p></td> -</tr> -<tr class="odd"> -<td><p><a href="#amount">amount</a></p></td> -<td><p>tinyint(3)</p></td> -<td><p>signed</p></td> -<td><p> </p></td> -<td><p>NO</p></td> -<td><p>1</p></td> -<td><p> </p></td> -<td><p> </p></td> -</tr> -</tbody> -</table> +| Field | Type | Attributes | Key | Null | Default | Extra | Comment | +| :-----------|:----------|:-----------|:----|:-----|:--------|:------|:--------| +| [race][1] | tinyint | unsigned | PRI | NO | 0 | | | +| [class][2] | tinyint | unsigned | PRI | NO | 0 | | | +| [itemid][3] | mediumint | unsigned | PRI | NO | 0 | | | +| [amount][4] | smallint | unsigned | | NO | 1 | | | +| [Note][5] | varchar | | | YES | NULL | | | + +[1]: #race +[2]: #class +[3]: #itemid +[4]: #amount +[5]: #Note **Description of the fields** @@ -92,3 +41,7 @@ The template ID of the item. See item\_template.entry ### amount The number of copies of that item. + +### Note + +Note of the entry |
