31.10.2012, 18:40
you should use for that just:
am not sure if you can use for floats also %f or something, but %d will work too i think
pawn Код:
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
new string[128];
format(string, sizeof(string), "you have teleported to Z coords: %d", z);
SendClientMessage(playerid, 0xFF0000FF, string);