How do i find out coords - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: How do i find out coords (
/showthread.php?tid=69756)
How do i find out coords -
KurtKill - 20.03.2009
Like I know there is a command but I forgot what is was is it like /save or what? please help
Re: How do i find out coords -
harly - 20.03.2009
/save, then go to Savedposition folder.
Re: How do i find out coords -
MenaceX^ - 20.03.2009
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..
Re: How do i find out coords -
brett7 - 20.03.2009
do /save [put a comment here if you wish] and it will save
Re: How do i find out coords -
Selluliitti_mies - 21.03.2009
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