Advertisement
Guest User

Untitled

a guest
Feb 17th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. #pragma semicolon 1
  2. #include <sourcemod>
  3.  
  4. public Plugin myinfo =
  5. {
  6. name = "shizer2133",
  7. author = "yógi",
  8. description = "shizerek wie!",
  9. version = "69.0"
  10. };
  11.  
  12. public void OnPluginStart()
  13. {
  14. RegConsoleCmd("dm_ip", Command_Ip);
  15. }
  16.  
  17. public Action Command_Ip(int client, int args)
  18. {
  19. return Plugin_Handled;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement