MegastoRM

Untitled

Mar 21st, 2013
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. public fwd_playerprethink(id)
  2. {
  3. if(!is_user_alive( id ) )
  4. return FMRES_IGNORED
  5.  
  6.  
  7. if(get_user_health(id) > 10000 && klasa_igraca[id] == Ubica) // Da ogranici na klasu Ubica 10000 HP
  8. {
  9. set_user_health(id, 10000)
  10. }
  11. else if( get_user_health(id) > 100) && klasa_igraca[id] == Assassin)// Da na assassina ogranici 100 HP
  12. {
  13. set_user_health(id, 100)
  14. }
  15. else // Ogranici svim igracima na 1000 HP
  16. {
  17. set_user_health(id, 1000)
  18. }
  19. return FMRES_IGNORED
  20. }
Advertisement
Add Comment
Please, Sign In to add comment