Core/Commands: enable .gm ingame command + misc cleaning
This commit is contained in:
@@ -1,8 +1,7 @@
|
|||||||
/*
|
|
||||||
Insert MovementType to Fizzle Darkstorm (GUID = 6455) and Burning Blade Fanatic (GUID = 6432) npc
|
|
||||||
*/
|
|
||||||
ALTER TABLE world_db_version CHANGE COLUMN 2016_08_21_00 2016_08_24_00 bit;
|
ALTER TABLE world_db_version CHANGE COLUMN 2016_08_21_00 2016_08_24_00 bit;
|
||||||
|
|
||||||
|
-- Insert MovementType to Fizzle Darkstorm (GUID = 6455) and Burning Blade Fanatic (GUID = 6432) npc
|
||||||
|
|
||||||
DELETE FROM `waypoint_data` WHERE `id` IN (645500,643200);
|
DELETE FROM `waypoint_data` WHERE `id` IN (645500,643200);
|
||||||
-- Fizzle Darkstorm
|
-- Fizzle Darkstorm
|
||||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
|
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
|
||||||
|
|||||||
@@ -0,0 +1,5 @@
|
|||||||
|
ALTER TABLE world_db_version CHANGE COLUMN 2016_08_24_00 2016_08_24_01 bit;
|
||||||
|
|
||||||
|
UPDATE command SET security = 0 WHERE name = 'gm ingame';
|
||||||
|
|
||||||
|
DELETE FROM command WHERE name IN ('evade', 'chatmessage');
|
||||||
@@ -31,7 +31,7 @@ public:
|
|||||||
{
|
{
|
||||||
{ "chat", SEC_GAMEMASTER, false, &HandleGMChatCommand, "" },
|
{ "chat", SEC_GAMEMASTER, false, &HandleGMChatCommand, "" },
|
||||||
{ "fly", SEC_GAMEMASTER, false, &HandleGMFlyCommand, "" },
|
{ "fly", SEC_GAMEMASTER, false, &HandleGMFlyCommand, "" },
|
||||||
//{ "ingame", SEC_PLAYER, true, &HandleGMListIngameCommand, "" },
|
{ "ingame", SEC_PLAYER, true, &HandleGMListIngameCommand, "" },
|
||||||
{ "list", SEC_GAMEMASTER, true, &HandleGMListFullCommand, "" },
|
{ "list", SEC_GAMEMASTER, true, &HandleGMListFullCommand, "" },
|
||||||
{ "visible", SEC_GAMEMASTER, false, &HandleGMVisibleCommand, "" },
|
{ "visible", SEC_GAMEMASTER, false, &HandleGMVisibleCommand, "" },
|
||||||
{ "", SEC_GAMEMASTER, false, &HandleGMCommand, "" }
|
{ "", SEC_GAMEMASTER, false, &HandleGMCommand, "" }
|
||||||
|
|||||||
Reference in New Issue
Block a user