Advertisement
Guest User

Untitled

a guest
Feb 6th, 2017
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. #include <sourcemod>
  2. #include <sdktools>
  3. #include <sdkhooks>
  4. #include <cstrike>
  5. #include <colors>
  6. #include <autoexecconfig>
  7. #include <warden>
  8. #include <mystocks>
  9.  
  10. #undef REQUIRE_PLUGIN
  11. #include <smartjaildoors>
  12. #define REQUIRE_PLUGIN
  13.  
  14. public Plugin myinfo = {
  15. name = "Button Spotted",
  16. author = "Pookie",
  17. description = "Indique le joueur qui a ouvert les jails",
  18. version = "1.0",
  19. url = "http://www.involved-gaming.com/forum/index.php"
  20. };
  21.  
  22.  
  23. public void SJD_ButtonPressed(int client)
  24. {
  25. if (SJD_IsCurrentMapConfigured() && SJD_OpenDoors());
  26. {
  27. int team = GetClientTeam(client);
  28. PrintToChatAll("%t %t", " A ouvert les jails !", team, client);
  29. }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement