Guest User

ViolentDave

a guest
Sep 25th, 2008
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.36 KB | None | 0 0
  1. /*
  2.                             SetVehiclePlayerHealthAwesome - By VD
  3. */
  4.  
  5. //**INCLUDES**//
  6. #include <a_samp>
  7.  
  8.  
  9. // **FORWARDS** //
  10. forward SetVehiclePlayerHealthAwesome(playerid, carid, carhealth, playerhealth);
  11.  
  12.  
  13.  
  14. public SetVehiclePlayerHealthAwesome(playerid, carid, carhealth, playerhealth)
  15. {
  16.     SetVehicleHealth(carid, carhealth);
  17.     SetPlayerHealth(playerid, playerhealth);
  18. }
Advertisement
Add Comment
Please, Sign In to add comment