Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2020
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. #pragma semicolon 1
  2. #pragma newdecls required
  3.  
  4. #define DEBUG
  5. #define PLUGIN_AUTHOR "Jplays"
  6. #define PLUGIN_VERSION "1.0.0"
  7. #define PLUGIN_DESCRIPTION "Putas para cs:go"
  8. #define PLUGIN_NAME "Jplays | Putas"
  9.  
  10. #include <sourcemod>
  11. #include <sdktools>
  12. #include <multicolors>
  13.  
  14. public Plugin myinfo =
  15. {
  16. name = PLUGIN_NAME,
  17. author = PLUGIN_AUTHOR,
  18. description = PLUGIN_DESCRIPTION,
  19. version = PLUGIN_VERSION,
  20. url = "https://jplays.tk"
  21. };
  22.  
  23.  
  24. public void OnPluginStart()
  25. {
  26. RegConsoleCmd("sm_putas", Cmd_Grupo);
  27. }
  28.  
  29. public Action Cmd_Grupo(int client, int args)
  30. {
  31. CPrintToChat(client, "{darkred}https://pornhub.com");
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement