Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.08 KB | None | 0 0
  1. --Command List
  2. if (!EbRPGComLst) then
  3.     EbRPGComLst = {}
  4.     EbRPGComLst[1] = ";ebrpg"
  5.     EbRPGComLst[2] = ";setgm"
  6.     EbRPGComLst[3] = ";remgm"
  7.     EbRPGComLst[4] = ";cleargm"
  8.     EbRPGComLst[5] = ";trustgm"
  9.     EbRPGComLst[6] = ";untrustgm"
  10.     EbRPGComLst[7] = ";cleartrust"
  11.     EbRPGComLst[8] = ";panic"
  12.     EbRPGComLst[9] = ";setup"
  13.     EbRPGComLst[10] = ";jester"
  14.     EbRPGComLst[11] = ";begin"
  15.     EbRPGComLst[12] = ";noclip"
  16.     EbRPGComLst[13] = ";savepreset"
  17.     EbRPGComLst[14] = ";presetdebug"
  18.     EbRPGComLst[15] = ";playerme"
  19.     EbRPGComLst[16] = ";bossme"
  20.     EbRPGComLst[17] = ";checkpresets"
  21. end
  22.  
  23. --Command Definitions
  24. if (!EbRPGComDef) then
  25.     EbRPGComDef = {}
  26.     EbRPGComDef[1] = "ADMIN: Toggles the EbNet RPG system."
  27.     EbRPGComDef[2] = "ADMIN: Gives GM status to the player under the crosshair."
  28.     EbRPGComDef[3] = "ADMIN: Removes GM status from player under the crosshair."
  29.     EbRPGComDef[4] = "ADMIN: Removes GM status from all connected players."
  30.     EbRPGComDef[5] = "ADMIN: Sets the GM under the crosshair as Trusted (enables ;noclip, ;playerme for Trusted GM)."
  31.     EbRPGComDef[6] = "ADMIN: Removes Trusted from the GM under the crosshair."
  32.     EbRPGComDef[7] = "ADMIN: Removes Trusted status from all GMs."
  33.     EbRPGComDef[8] = "ADMIN: OG HOD WHAT ARE YOU DOING! Removes trusted from all GMs, summons GMs to the Admin who sent the command, and freezes GMs."
  34.     EbRPGComDef[9] = "GM: If the map has been previously set up, or if there are presets for the map, this will load spawner data."
  35.     EbRPGComDef[10] = "GM: This helps if there are no presets and you want to set up while there are other players waiting. This will place a player spawn where you are aiming and surrounds it with NPC spawns of random types."
  36.     EbRPGComDef[11] = "GM: After setting up the spawners, this will activate them."
  37.     EbRPGComDef[12] = "GM: Enables noclip mode if GM is trusted."
  38.     EbRPGComDef[13] = "GM: Saves the data of all spawners for the current map in a file."
  39.     EbRPGComDef[14] = "GM: Saves the data of all spawners for the current map in a temporary file and activates all spawners within a radius of # to debug spawning traces."
  40.     EbRPGComDef[15] = "GM: Toggles you in or out of a temporary player state so you can run with the team and help FITE TEH FORSES OF EBIL... That is, if the GM is Trusted."
  41.     EbRPGComDef[16] = "GM: Sets you as a boss. Use this as close to the boss spawner that you want to take control of. This will deactivate spawning of boss NPCs, set the boss spawner as your spawnpoint, set your playermodel to the boss NPC's model, kill you, and give you droppable items and/or weapons for other players."
  42.     EbRPGComDef[17] = "PLAYER: Checks to see if there are presets for the current map"
  43.     EbRPGComDef[18] = "NOTE: GMs have access to PLAYER commands and ADMINs have access to all commands."
  44.     EbRPGComDef[19] = "NOTE: In non-Boss mode, GMs have godmode automatically."
  45.     EbRPGComDef[20] = "NOTE: If a GM dies in Bossmode, they'll automatically revert to reguler GM or Trusted GM on respawn. They'll respawn at the Boss Spawner."
  46. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement