aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorKingPin <none@none>2008-11-04 13:32:08 -0600
committerKingPin <none@none>2008-11-04 13:32:08 -0600
commit89c9756b7718cac2026a03ee1c7b1aac0a565a4d (patch)
tree1a26af23bf36cfc1d1bb3cf81d44b6063a5ea450 /sql
parentb53ab74b50cc8fa7e4c137d0aa4bc617501ef423 (diff)
[svn] added commands : pet create, tp, learn, unlearn. gobject activate and playall. thanx to dythzer.
--HG-- branch : trunk
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/171_world.sql17
1 files changed, 17 insertions, 0 deletions
diff --git a/sql/updates/171_world.sql b/sql/updates/171_world.sql
new file mode 100644
index 00000000000..3678b76ec4b
--- /dev/null
+++ b/sql/updates/171_world.sql
@@ -0,0 +1,17 @@
+DELETE FROM trinity_string WHERE entry IN (57,58,5009);
+
+INSERT INTO trinity_string VALUES
+(57,'Using World DB: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
+(58,'Using script library: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
+(5009,'Sound %u Played to server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
+
+
+DELETE FROM `command` WHERE name IN ('pet create','pet learn','pet unlearn','pet tp','gobject activate','playall');
+INSERT INTO `command` (name,security,help) VALUES
+('pet create',2,'Syntax: .pet create\r\n\r\nCreates a pet of the selected creature.'),
+('pet learn',2,'Syntax: .pet learn\r\n\r\nLearn #spellid to pet.'),
+('pet unlearn',2,'Syntax: .pet unlean\r\n\r\nunLearn #spellid to pet.'),
+('pet tp',2,'Syntax: .pet tp #\r\n\r\nChange pet\'s amount of training points.'),
+('modify gender',2,'Syntax: .modify gender\r\n\r\n.modify gender #male/female - Turns selected player into a male or female'),
+('gobject activate',2,'Syntax: .gobject activate #guid\r\n\r\nActivates an object like a door or a button.'),
+('playall',2,'Syntax: .playall #soundid\r\n\r\nPlayer a sound to whole server.'); \ No newline at end of file