Advertisement
Guest User

Untitled

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