Scripts/Commands: Added .dev command to show <Dev> tag in nickname

This commit is contained in:
Rochet2
2011-09-21 11:35:29 -03:00
committed by Fredi Machado
parent a0030ef334
commit a0a22ecbc8
6 changed files with 85 additions and 1 deletions

View File

@@ -0,0 +1,3 @@
DELETE FROM command WHERE name = 'dev';
INSERT INTO command VALUES
('dev', 3, 'Syntax: .dev [on/off]\r\n\r\nEnable or Disable in game Dev tag or show current state if on/off not provided.');

View File

@@ -0,0 +1,4 @@
DELETE FROM trinity_string WHERE entry IN (1137, 1138);
INSERT INTO trinity_string (`entry`,`content_default`) VALUES
(1137, 'Dev mode is ON'),
(1138, 'Dev mode is OFF');