24.11.2010, 11:23
Quote:
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; } } |
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;
}