From 29b1eb3ed30e0dd50ba1cfe222a33b070e3e6e0b Mon Sep 17 00:00:00 2001 From: Kitzunu <24550914+Kitzunu@users.noreply.github.com> Date: Sat, 1 May 2021 01:48:43 +0200 Subject: chore(docs): Update all integers to not use width (#448) * float * VARCHAR * TIMESTAMP * BIGINT * MEDIUMINT * SMALLINT * TINYINT * INT * BLOB * SIGNED/UNSIGNED * AUTO_INCREMENT * \(\d+\) * Update Bit-and_bytes-tutorial.md * clean-up * Last mistakes * this one didnt commit lul --- docs/spell_scripts.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'docs/spell_scripts.md') diff --git a/docs/spell_scripts.md b/docs/spell_scripts.md index 94d148d..e43a9c0 100644 --- a/docs/spell_scripts.md +++ b/docs/spell_scripts.md @@ -10,15 +10,15 @@ Holds scripts that can be activated by spells with effect SPELL\_EFFECT\_SCRIPT\ | Field | Type | Attributes | Key | Null | Default | |----------------------------------|--------------|--------------|-----|------|---------| -| [id](scripts#id) | mediumint(8) | unsigned | | NO | 0 | -| [effIndex](scripts#effindex) | tinyint(3) | unsigned | | NO | 0 | -| [delay](scripts#delay) | int(10) | unsigned | | NO | 0 | -| [command](scripts#command) | mediumint(8) | unsigned | | NO | 0 | -| [datalong](scripts#otherfields) | mediumint(8) | unsigned | | NO | 0 | -| [datalong2](scripts#otherfields) | int(10) | unsigned | | NO | 0 | -| [dataint](scripts#otherfields) | int(11) | | | NO | 0 | -| [x](scripts#otherfields) | float | | | NO | 0 | -| [y](scripts#otherfields) | float | | | NO | 0 | -| [z](scripts#otherfields) | float | | | NO | 0 | -| [o](scripts#otherfields) | float | | | NO | 0 | +| [id](scripts#id) | MEDIUMINT | UNSIGNED | | NO | 0 | +| [effIndex](scripts#effindex) | TINYINT | UNSIGNED | | NO | 0 | +| [delay](scripts#delay) | INT | UNSIGNED | | NO | 0 | +| [command](scripts#command) | MEDIUMINT | UNSIGNED | | NO | 0 | +| [datalong](scripts#otherfields) | MEDIUMINT | UNSIGNED | | NO | 0 | +| [datalong2](scripts#otherfields) | INT | UNSIGNED | | NO | 0 | +| [dataint](scripts#otherfields) | INT | | | NO | 0 | +| [x](scripts#otherfields) | FLOAT | | | NO | 0 | +| [y](scripts#otherfields) | FLOAT | | | NO | 0 | +| [z](scripts#otherfields) | FLOAT | | | NO | 0 | +| [o](scripts#otherfields) | FLOAT | | | NO | 0 | -- cgit