Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. #include <sourcemod>
  2.  
  3. #pragma semicolon 1
  4. #pragma newdecls required
  5.  
  6. public Plugin myinfo = {
  7. name = "IP Areny",
  8. author = "BlacK",
  9. description = "",
  10. version = "1.0.1",
  11. url = ""
  12. };
  13.  
  14. public void OnPluginStart()
  15. {
  16. RegConsoleCmd("sm_ip", Command_Ip);
  17. }
  18.  
  19. public Action Command_Ip(int client, int args)
  20. {
  21. PrintToChat(client, "\x01 Server IP:\x06 51.75.37.4:27040");
  22. return Plugin_Handled;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement