[DUV]Como Criar Um CMD /entrar Pra Dentro de Um Interior
#6

Quote:
Originally Posted by gabrielbnv
Посмотреть сообщение
Mano Agora As Funзхes Foram, So Falta 1 Pekeno Detalhe, Como Arrumo Isso: error 030: compound statement not closed at the end of file (started at line 490)

Aki Comeзa a Linha 490:

public OnPlayerCommandText(playerid, cmdtext[])//executa comandos
{
//Teleporte
if(strcmp(cmdtext,"/entrar",true)==0)
{
if(IsPlayerInRangeOfPoint(25.0,playerid,1394.1074, 400.7764,19.7944))//Retrito б esse local, coloque as coordenadas do local onde o comando deve ser usado.
{
SetPlayerPos(playerid, 833.269775,10.588416,1004.179687);//Para onde o jogador irб caso esteja no local (definido acima) e use o comando//
return 1;
}
}
Ops, hб uma diferenзa sim entre PlayerToPoint e IsPlayerInRangeOfPoint, pois os parвmetros sгo:


IsPlayerInRangeOfPoint(playerid, Float:range, Float, Float:y, Float:z)

PlayerToPoint(Float:radi, playerid, Float, Float:y, Float:z)



Whatever, aн estб a public OnPlayerCommandText, testada e funcionando

pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
    //Teleporte
    if (strcmp("/entrar", cmdtext, true, 10) == 0)
    {
        if(IsPlayerInRangeOfPoint(playerid,7.0,1394.1074,400.7764,19.7944))//Retrito б esse local, coloque as coordenadas do local onde o comando deve ser usado.
        {
            SetPlayerPos(playerid, 833.269775,10.588416,1004.179687);//Para onde o jogador irб caso esteja no local (definido acima) e use o comando//
            return 1;
        }
        return 1;
    }
    return 0;
}
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)