19.06.2009, 21:30
i dont think that is possible.
Just make a command to test each coordinate.
Like /teleport1, teleport 2...
Just make a command to test each coordinate.
Like /teleport1, teleport 2...
pawn Код:
if(!strcmp(cmdtext,"/tp1",true,4))
{
SetPlayerPos(playerid, 1278.1628,-36.6077,1001.0156); //change coordinates
SendClientMessage(playerid,COLOR_KHAKI,"This is teleport 1");
return 1;
}
if(!strcmp(cmdtext,"/tp2",true,4))
{
SetPlayerPos(playerid, 1278.1628,-36.6077,1001.0156); //change coordinates
SendClientMessage(playerid,COLOR_KHAKI,"This is teleport 2");
return 1;
}