XADRENALINEIX

Cosy's Teleport In Front

May 20th, 2013
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. void TeleportForward(void)
  2. {
  3. if ( IS_PLAYER_PLAYING(GetPlayerIndex()) )
  4. {
  5. float x, y, z, ch;
  6. GET_CHAR_HEADING(GetPlayerPed(), &ch);
  7. GET_CHAR_COORDINATES(GetPlayerPed(), &x, &y, &z);
  8. SET_CHAR_COORDINATES(GetPlayerPed(), x+(10*SIN((-1*ch))), y+(10*COS((-1*ch))), z);
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment