Advertisement
WIXXZI

Wixxzi's Game Master Tool

Oct 18th, 2012
345
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.86 KB | None | 0 0
  1. -----------------------------
  2. -- /// Aspire Projects /// --
  3. -----------------------------
  4.  
  5. function GameMasterTool_Trigger(item, event, player)
  6. item:GossipCreateMenu(3544, player, 0)
  7. item:GossipMenuAddItem(3, "Game Master Tool", 1, 0)
  8. item:GossipSendMenu(player)
  9. end
  10.  
  11.  
  12. function GameMasterTool_OnSelect(item, event, player, id, intid, code)
  13. if (intid == 1) then
  14. item:GossipCreateMenu(3544, player, 0)
  15. item:GossipMenuAddItem(2, "|cFF008080WIXXZI's Game Master Tool")
  16. item:GossipMenuAddItem(2, ".Summon = Summons the player to you.")
  17. item:GossipMenuAddItem(2, ".Recall Port <Location> = Teleports u to the location you want!")
  18. item:GossipMenuAddItem(2, ".Appear <PlayerName> = Teleports u to the Name / Target you want to!")
  19. item:GossipMenuAddItem(2, ".Char Add <ID> <Amount> = Adds u the Item in your bag if u have target on yourself!")
  20. item:GossipMenuAddItem(2, ".Kill <Target> = Kills the Player / Npc you have target on")
  21. item:GossipMenuAddItem(2, ".Levelup <LVL> = Levelups the selected target the Lvl you want")
  22. item:GossipMenuAddItem(2, ".Paralyze / .Unparalyze = Freezes the Player you have target on")
  23. item:GossipMenuAddItem(2, ".P = Looks up the targets Account Information")
  24. item:GossipMenuAddItem(2, "[Next]",2)
  25. item:GossipSendMenu(player)
  26. end
  27.  
  28. if (intid == 2) then
  29. item:GossipMenuAddItem(2, "Npc Commands Below")
  30. item:GossipMenuAddItem(2, ".Npc Spawn <NPCID> = Spawns the Npc at your location")
  31. item:GossipMenuAddItem(2, ".Npc Vendoradditem <ID> <Extended Cost> = Adds the Item to the Vendor with an Extended Cost")
  32. item:GossipMenuAddItem(2, ".Npc Vendorremoveitem <ID> = Removes the Item from the Vendor")
  33. item:GossipMenuAddItem(2, ".Npc Ongameobject = Saves the Npc at the object so i doesn't fall down to the ground")
  34. item:GossipMenuAddItem(2, ".Npc Equip1/2/3 <WeaponID> = Makes the NPC put an Weapon on himself")
  35. item:GossipMenuAddItem(2, ".Npc Respawn = Respawns the Target")
  36. item:GossipMenuAddItem(2, "[Back]",1)
  37. item:GossipMenuAddItem(2, "[Next]",3)
  38. item:GossipSendMenu(player)
  39. end
  40.  
  41. if (intid == 3) then
  42. item:GossipMenuAddItem(2, "|cFF008080GameObject Commands Below")
  43. item:GossipMenuAddItem(2, ".Gobject Spawn <ID> = Spawns the Object at your location! ( You can find Id's at Youtube")
  44. item:GossipMenuAddItem(2, ".Gobject Select = Selects the object that's nearby")
  45. item:GossipMenuAddItem(2, ".Gobject Delete = Deletes the Object you got Selected")
  46. item:GossipMenuAddItem(2, ".Gobject Scale <Scale> = Set the scale of object if you want it bigger or smaller")
  47. item:GossipMenuAddItem(2, ".Gobject Info = Tells u the info of your selected object!")
  48. item:GossipMenuAddItem(2, "[Back]",2)
  49. item:GossipMenuAddItem(2, "[Next]",4)
  50. end
  51.  
  52. if (intid == 4) then
  53. item:GossipMenuAddItem(2, "|cFF008080Hacker Commands")
  54. item:GossipMenuAddItem(2, ".Mod speed 1-255 = Sets the speed of the target and makes it run faster")
  55. item:GossipMenuAddItem(2, ".Cheat fly On/Off = Sets the Flymode of an target")
  56. item:GossipMenuAddItem(2, ".Cheat Casttime = Enables the Casttime cheat so you can use Spells Instantly")
  57. item:GossipMenuAddItem(2, ".Cheat Cooldown = Enables the No Cooldown cheat so you have no cooldown on youre spells")
  58. item:GossipMenuAddItem(2, ".Cheat Status = Checks what Cheats you have on you")
  59. item:GossipMenuAddItem(2, "[Back]",3)
  60. item:GossipMenuAddItem(2, "[Next]",5)
  61. end
  62.  
  63. if (intid == 5) then
  64. item:GossipMenuAddItem(2, "|cFF008080Abusing Players")
  65. item:GossipMenuAddItem(2, ".Ban Account/Player/Ip <Duration> = Bans the Account/Player/Ip, You have to do .P on the target, to view he's Ip/Account Name")
  66. item:GossipMenuAddItem(2, "Kick Player/Account/Ip = Kicks the Players Account or Ip!")
  67. item:GossipMenuAddItem(2, ".Ban All = Bans the targets IP/Account/Character")
  68. item:GossipMenuAddItem(2, "[Back]",4)
  69. item:GossipSendMenu(player)
  70. end
  71. end
  72.  
  73. RegisterItemGossipEvent(76652,1,"GameMasterTool_Tr igger")
  74. RegisterItemGossipEvent(76652,2,"GameMasterTool_On Select")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement