[Ajuda] comando /ir
#2

Olб amigo, dei uma arrumada neste seu comando. Sу que fiz por strtok porque tu estбs usando strcmp. Mas aconselho usar ZCMD e sscanf.

pawn Код:
if(!strcmp("/ir", cmdtext, true, 5))
    {
        new id;
        if(PlayerInfo[playerid][pAdmin] >= 1)
        {
            tmp = strtok(cmdtext,idx);
            if(!strlen(tmp)) return SendClientMessage(playerid,BRANCO, "Use /ir [id]");
            id = strval(tmp);
            if(IsPlayerConnected(id)) return SendClientMessage(playerid, COR, "O player nгo estб online!");
            new Float:x, Float:y, Float:z;
            GetPlayerPos(id, x, y, z);
            SetPlayerPos(playerid, x, y,z);
            SetPlayerVirtualWorld(playerid, GetPlayerVirtualWorld(id));
            SetPlayerInterior(playerid, GetPlayerInterior(id));
        }
    }
Caso dк algum problema, me fale.
Reply


Messages In This Thread
[Ajuda] comando /ir - by mateusmaia - 18.11.2011, 15:17
Re: Ajuda comando /ir - by Hardware - 18.11.2011, 17:06
Re: Ajuda comando /ir - by mateusmaia - 18.11.2011, 17:25
Re: Ajuda comando /ir - by Hardware - 18.11.2011, 17:26

Forum Jump:


Users browsing this thread: 1 Guest(s)