21.03.2009, 16:22
or if you use your own server add this on OnPlayerCommandText
and type in game /mypos
Код:
if(strcmp(cmd, "/mypos", true) == 0) { new Float:x, Float:y, Float:z; GetPlayerPos(playerid, x, y, z); new msg7[256]; format(msg7, 256, "Your position is: %f,%f,%f.", x, y, z); SendClientMessage(playerid, COLOR_GREEN, msg7); }