Advertisement
Guest User

Untitled

a guest
Dec 6th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.67 KB | None | 0 0
  1. #pragma semicolon 1
  2.  
  3. #define DEBUG
  4.  
  5. #define PLUGIN_AUTHOR ""
  6. #define PLUGIN_VERSION "0.00"
  7.  
  8. #include <sourcemod>
  9. #include <sdktools>
  10.  
  11. #pragma newdecls required
  12.  
  13. public Plugin myinfo =
  14. {
  15. name = "ENWRules",
  16. author = "Jamie",
  17. description = "'Sends Rules'",
  18. version = PLUGIN_VERSION,
  19. url = "extreme-network.net"
  20. }
  21.  
  22. public void OnPluginStart()
  23. {
  24. RegConsoleCmd("sm_rules", Command_rules);
  25. }
  26.  
  27. public Action Command_rules(int client, int args)
  28. {
  29. PrintToConsole(client, "No loopholing of the rules is allowed.
  30. No team-killing through map-features, or any other way.
  31. A freeday is considered a special day.
  32. T’s are not allowed to camp the entrance of armory in order to block CT’s from exiting. Doing so will make the T a rebeller.
  33. No cheating is implied for all minigames excluding last requests.
  34. If someone is breaking the rules, it is your responsibility as a player to inform an admin.
  35. Once the warden is dead, it is a freeday until another CT claims warden.
  36. To give a special day, do !games. If !games is not done before cells open, it is a freeday.
  37. AFK freezing (No movement at all) is not permitted.
  38. Freezing allows players to stand, crouch and jump on the spot unless specified
  39. Knifing cannot be restricted at any point in the round.
  40. Orders must be given by 14:00 of the round, otherwise it is a freeday.
  41. Cell doors should only be opened when the Warden gives the command to do so, or does it themselves (unless a T manages to open them first).
  42. The cells must be opened before 14:00 on the map timer.
  43. If the cells are opened but no commands are given, the T’s have a freeday.
  44. Shots may not be fired into the stack unless the CT is sure they have a clear shot, or unless the entire stack is rebelling.
  45. Being in armoury, vents and having a gun instantly makes a T a rebel, unless the Warden has given them permission.
  46. The first round is always a freeday to allow players to join.
  47. Do not swap back to CT if you have been swapped by a staff member.
  48. As a dead player, speaking over the warden is punishable.
  49. Incidents that occur in one round cannot have an effect on any rounds after – all commands, punishments and rewards are limited to the round that they are issued. For example, a T cannot be given “a freeday next round” for any reason, including freekilling.
  50. In order for a vent cell to be considered a special cell, the vent must be accessible. (For example, if a vent is not open or able to be opened, that cell is no longer considered special)
  51. You may not interfere with other players' LRs
  52. Use common sense at all times");
  53. PrintToChat(client, "@https://extreme-network.net/forum/index.php?/forums/topic/1821-jailbreak-rules-games%22");
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement