Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.29 KB | None | 0 0
  1. #include <sourcemod>
  2. #include <clients>
  3. #include <sdktools>
  4.  
  5. public OnPluginStart()
  6. {
  7.     RegConsoleCmd("sm_suicide", Command_suicide);
  8. }
  9.  
  10. public Action:Command_suicide(client, args)
  11. {
  12.     args = client;
  13.     if(IsPlayerAlive(client))
  14.     {
  15.         ForcePlayerSuicide(client);
  16.     }
  17.     return Plugin_Handled
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement