mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 04:37:00 +00:00
11 lines
649 B
SQL
11 lines
649 B
SQL
UPDATE `command`
|
|
SET `help` = 'Syntax: .modify $parameter $value Modify the value of various parameters. Use .help modify $parameter to get help on specific parameter usage. Supported parameters include hp, mana, rage, energy, money, speed, swim, scale, bit, bwalk, aspeed, faction, spell and tp.'
|
|
WHERE `name` = 'modify' LIMIT 1 ;
|
|
|
|
UPDATE `command`
|
|
SET `help` = 'Syntax: .aura #spellid Add the aura from spell #spellid to the selected Unit.'
|
|
WHERE `name` = 'aura' LIMIT 1 ;
|
|
|
|
UPDATE `command`
|
|
SET `help` = 'Syntax: .unaura #spellid Remove aura due to spell #spellid from the selected Unit.'
|
|
WHERE `name` = 'unaura' LIMIT 1 ;
|