whiplk

In-game PrintPos

Feb 18th, 2012
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.16 KB | None | 0 0
  1. CMD:pos(playerid) {
  2.     new Float:pos[3];
  3.  
  4.     GetPlayerPos(playerid, pos[0], pos[1], pos[2]);
  5.     printf("x: %f, y: %f, z: %f", pos[0], pos[1], pos[2]);
  6.     return true;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment