Advertisement
Guest User

Suicide.pwn

a guest
Mar 3rd, 2012
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.54 KB | None | 0 0
  1. //By SomeGuy#1
  2. //Do Not Remove Credits
  3.  
  4. #include <a_samp>
  5.  
  6. #define Suicide
  7.  
  8. public OnFilterScriptInit()
  9. {
  10.    print("\n-----------------------------------------");
  11.    print("Suicide Filterscript");
  12.    print("Created By SomeGuy#1");
  13.    print("-------------------------------------------\n");
  14.  
  15.  
  16.    return 1;
  17. }
  18.  
  19. public OnFilterScriptExit()
  20. {
  21.    return 1;
  22. }
  23. public OnPlayerCommandText(playerid, cmdtext[])
  24. {
  25.    if(strcmp(cmdtext,"/suicide",true)==0)
  26.    {
  27.    SetPlayerHealth(playerid, -1);
  28.    return 1;
  29.    }
  30.    return 0;
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement