Advertisement
Sufyan

....C

Aug 25th, 2011
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.47 KB | None | 0 0
  1. new First1[MAX_PLAYERS];
  2.  
  3.  
  4. public OnPlayerDeath(playerid, killerid, reason)
  5. {
  6.  
  7.    
  8.     First1[killerid] ++;
  9.     First1[playerid] = 0;
  10.    
  11.    
  12.     if(First1[killerid] == 1)
  13.     {
  14.     TextDrawShowForPlayer(killerid,Text:Money[playerid]);
  15.     TextDrawSetString(Text:Money[playerid],"~g~+$1000");
  16.     SetTimerEx("JustHide",4000, false, "i", killerid);
  17.    
  18.     }
  19.    
  20. return 1;
  21. }
  22.  
  23.  
  24.  
  25.  
  26. public JustHide(playerid,killerid)
  27. {
  28.     TextDrawHideForPlayer(killerid,Text:Money[playerid]);
  29.     return 1;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement