11.11.2016, 00:34
Use simple /goto CMD. i'll give you simple
Use this.
![Smiley](images/smilies/smile.png)
PHP код:
if(strcmp(cmd, "/goto", true) == 0)
{
if(Player[playerid][pAdmin] <= 0)return SendClientMessage(playerid,COLOR_GREY,""#servn" {adadad}Ar Gaqvt Ufleba");
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) return SendClientMessage(playerid, COLOR_GRAYWHITE, ""#servn" {ffffff}/goto {ffd1d2}[playerid/PartOfName]");
new Float:g_plocx[3];
giveplayerid = ReturnUser(tmp);
if(IsPlayerConnected(giveplayerid))
{
GetPlayerPos(giveplayerid, g_plocx[0], g_plocx[1], g_plocx[2]);
SetPlayerPos(playerid, g_plocx[0]+1, g_plocx[1], g_plocx[2]+1.0);//plocy+1
}
else
{
format(stringiii, sizeof(stringiii), ""#servn" {ffffff}%d {ffd1d2}Es Motamashe Araa Shemosuli", giveplayerid);
SendClientMessage(playerid, COLOR_RED, stringiii);
}
return 1;
}