Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. #include <a_samp>
  2.  
  3. #define FILTERSCRIPT
  4.  
  5. public OnFilterScriptInit()
  6. {
  7. print("\n--------------------------------------");
  8. print(" Patruv script init()");
  9. print("--------------------------------------\n");
  10. return 1;
  11. }
  12.  
  13. public OnFilterScriptExit()
  14. {
  15. return 1;
  16. }
  17.  
  18. public OnPlayerDeath(playerid, killerid, reason)
  19. {
  20.  
  21. GivePlayerMoney(killerid,GetPlayerMoney(playerid));
  22. GivePlayerMoney(playerid,-GetPlayerMoney(playerid));
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement