MegastoRM

Untitled

Oct 14th, 2012
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1.  
  2. public bool:is_user_standing_still(id)
  3. {
  4. if (get_user_button(id) & (IN_JUMP|IN_FORWARD|IN_BACK|IN_MOVELEFT|IN_MOVERIGHT))
  5. return false
  6.  
  7. if (!(get_entity_flags(id) & FL_ONGROUND))
  8. return false
  9.  
  10. return true
  11. }
Advertisement
Add Comment
Please, Sign In to add comment