1 | DELETE FROM trinity_string WHERE entry IN (57,58,5009); |
---|
2 | |
---|
3 | INSERT INTO trinity_string VALUES |
---|
4 | (57,'Using World DB: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), |
---|
5 | (58,'Using script library: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), |
---|
6 | (5009,'Sound %u Played to server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); |
---|
7 | |
---|
8 | |
---|
9 | DELETE FROM `command` WHERE name IN ('pet create','pet learn','pet unlearn','pet tp','gobject activate','playall'); |
---|
10 | INSERT INTO `command` (name,security,help) VALUES |
---|
11 | ('pet create',2,'Syntax: .pet create\r\n\r\nCreates a pet of the selected creature.'), |
---|
12 | ('pet learn',2,'Syntax: .pet learn\r\n\r\nLearn #spellid to pet.'), |
---|
13 | ('pet unlearn',2,'Syntax: .pet unlean\r\n\r\nunLearn #spellid to pet.'), |
---|
14 | ('pet tp',2,'Syntax: .pet tp #\r\n\r\nChange pet\'s amount of training points.'), |
---|
15 | ('modify gender',2,'Syntax: .modify gender\r\n\r\n.modify gender #male/female - Turns selected player into a male or female'), |
---|
16 | ('gobject activate',2,'Syntax: .gobject activate #guid\r\n\r\nActivates an object like a door or a button.'), |
---|
17 | ('playall',2,'Syntax: .playall #soundid\r\n\r\nPlayer a sound to whole server.'); |
---|