How do i find out coords
#1

Like I know there is a command but I forgot what is was is it like /save or what? please help
Reply
#2

/save, then go to Savedposition folder.
Reply
#3

Quote:
Originally Posted by KurtKill
Like I know there is a command but I forgot what is was is it like /save or what? please help
Maybe test instead of creating a topic? You already knew the command..
Reply
#4

do /save [put a comment here if you wish] and it will save
Reply
#5

or if you use your own server add this on OnPlayerCommandText
Код:
	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);
  }
and type in game /mypos
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)