XADRENALINEIX

xMANU 4EVA TKx Extinguish Net Player's Fire

May 18th, 2013
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.32 KB | None | 0 0
  1. Indivdual Network Player
  2. if(IS_CHAR_ON_FIRE(players[index].ped)){
  3. EXTINGUISH_CHAR_FIRE(players[index].ped);
  4. print("Stopped fire!");
  5. }
  6. return;
  7. }
  8. All Network Players
  9. for(i = 0;i <= player_loop;i++){
  10. if(IS_CHAR_ON_FIRE(players[i].ped)){
  11. EXTINGUISH_CHAR_FIRE(players[i].ped);
  12. WAIT(10);
  13. }
  14. }
  15. print("Stopped all fire");
  16. }
Advertisement
Add Comment
Please, Sign In to add comment