Revision 2, 0.7 kB
(checked in by yumileroy, 17 years ago)
|
[svn] * Proper SVN structure
Original author: Neo2003
Date: 2008-10-02 16:23:55-05:00
|
Line | |
---|
1 | DELETE FROM `command` WHERE `name` = 'wp import'; |
---|
2 | DELETE FROM `command` WHERE `name` = 'wp export'; |
---|
3 | |
---|
4 | INSERT INTO `command` (`name`,`security`,`help`) VALUES |
---|
5 | ('wp import',3,'Syntax: .wp import $filename'); |
---|
6 | |
---|
7 | INSERT INTO `command` (`name`,`security`,`help`) VALUES |
---|
8 | ('wp export',3,'Syntax: .wp export [#creature_guid or Select a Creature] $filename'); |
---|
9 | |
---|
10 | UPDATE `command` SET `help` = 'Syntax: .wp modify [#creature_guid or Select a Creature]\r\nadd - Add a waypoint after the selected visual\r\nwaittime $time\r\nemote ID\r\nspell ID\r\ntext1| text2| text3| text4| text5 <text>\r\nmodel1 ID\r\nmodel2 ID\r\nmove(moves wp to player pos)\r\ndel (deletes the wp)\r\n\r\nOnly one parameter per time!' WHERE `name` = 'wp modify'; |
---|