Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2018
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 1.18 KB | None | 0 0
  1. #pragma semicolon 1
  2.  
  3. #define DEBUG
  4.  
  5. #define PLUGIN_AUTHOR "SAlty"
  6. #define PLUGIN_VERSION "6.66"
  7.  
  8. #include <sourcemod>
  9. #include <sdktools>
  10. #include <cstrike>
  11. //#include <sdkhooks>
  12. #pragma newdecls required
  13.  
  14. public Plugin myinfo =
  15. {
  16.     name = "ApplyForTango",
  17.     author = PLUGIN_AUTHOR,
  18.     description = "Open up MOTD for Tango Application.",
  19.     version = PLUGIN_VERSION,
  20.     url = ""
  21. };
  22.  
  23. public void OnPluginStart()
  24. {
  25.     RegConsoleCmd("sm_apply", Command_apply, "Opens up the application for Tango");
  26. }
  27.  
  28. public Action Command_apply(int client, int args)
  29. {
  30.    
  31.     PrintToChat(client, "\x033Application Template: https://tangoworldwide.net/index.php?topic=22.0");
  32.     PrintToChat(client, "\x033Application Template: https://tangoworldwide.net/index.php?topic=22.0");
  33.     PrintToChat(client, "\x011Application Template: https://tangoworldwide.net/index.php?topic=22.0");
  34.    
  35.     PrintToConsole(client, "Application Template: https://tangoworldwide.net/index.php?topic=22.0");
  36.     PrintToConsole(client, "Application Template: https://tangoworldwide.net/index.php?topic=22.0");
  37.     PrintToConsole(client, "Application Template: https://tangoworldwide.net/index.php?topic=22.0");
  38.    
  39.     return Plugin_Handled;
  40.    
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement