[Ajuda] /Limpar chat e Teletransporte
#10

Porque diabos criou outro tуpico com a mesma porra do assunto ?


Agora retire o "include bCMD",
coloque dentro do OnPlayerCommandText:
pawn Код:
if(!strcmp(cmdtext, "/limparchat"))
{
    if(!IsPlayerAdmin(playerid)) return 0;

    for(new Interador; Interador != 65; Interador++)
    {
        SendClientMessageToAll(-1, #); 
    }
    return 1;
}


Se vocк usar SSCANF cola isto:
pawn Код:
if(!strcmp(cmdtext,"/ir", true))
{
    if(!IsPlayerAdmin(playerid)) return 0;

    new PtId;
    if(sscanf(params, "i", PtId)) return 0;

    static Float: fX, Float: fY, Float: fZ;
    GetPlayerPos(PtId, fX, fY, fZ);
    SetPlayerPos(playerid, fX, fY, fZ);
    return 1;
}

Caso nгo usar...
pawn Код:
if(!strcmp(cmdtext,"/ir", true, 2))
{
    if(!IsPlayerAdmin(playerid))
        return SendClientMessage(playerid, -1, "ERRO"), false;
   
    if(!strval(cmdtext[4]))
        return SendClientMessage(playerid, -1, "ERRO"), false;

    static
        Float: fX,
        Float: fY,
        Float: fZ,
        Float: fA
    ;

    GetPlayerPos(strval(cmdtext[4]), fX, fY, fZ);
    SetPlayerPos(playerid, fX, fY, fZ);
    GetPlayerFacingAngle(strval(cmdtext[4]), fA);
    SetPlayerAngle(playerid, fA);
    SetPlayerVirtualWorld(playerid, GetPlayerVirtualWorld(strval(cmdtext[4])));
    SetPlayerInterior(playerid, GetPlayerInterior(strval(cmdtext[4])));
    return 1;
}
Reply


Messages In This Thread
/Limpar chat e Teletransporte - by Lucas-Fc - 07.09.2012, 19:52
Re: /Limpar chat e Teletransporte - by Vinicius_HardScore - 07.09.2012, 20:00
Re: /Limpar chat e Teletransporte - by Lucas-Fc - 07.09.2012, 20:08
Re: /Limpar chat e Teletransporte - by Lucas-Fc - 07.09.2012, 20:10
Re: /Limpar chat e Teletransporte - by Vinicius_HardScore - 07.09.2012, 20:12
Re: /Limpar chat e Teletransporte - by Lucas-Fc - 07.09.2012, 20:14
Re: /Limpar chat e Teletransporte - by Vinicius_HardScore - 07.09.2012, 20:16
Re: /Limpar chat e Teletransporte - by Lucas-Fc - 07.09.2012, 20:16
Re: /Limpar chat e Teletransporte - by Douglas_prt - 07.09.2012, 20:20
Re: /Limpar chat e Teletransporte - by zSuYaNw - 07.09.2012, 20:23

Forum Jump:


Users browsing this thread: 1 Guest(s)