06.11.2011, 00:04
estava usando um tuto aki do forum e o /entrar deu certo mais o /sair nao funciona apertando 'f'
pawn Код:
if ((newkeys==KEY_SECONDARY_ATTACK)) // Key ( F / Enter )
{
OnPlayerCommandText(playerid,"/entrar");
OnPlayerCommandText(playerid,"/sair");
}
PHP код:
if(strcmp(cmdtext, "/sair", true) == 0) // Comando
{
if(IsPlayerInRangeOfPoint(playerid, 2.0, 2304.7072, -15.5751, 26.7421))//sair agencia
{
SetPlayerInterior(playerid, 0); // .Setando o Interior ao sair
SetPlayerPos(playerid, 1221.1441, -1815.5300, 16.5937); // cordenada de spawn
GameTextForPlayer(playerid, "~b~L~w~os ~b~S~w~antos", 3000, 1);
}
return 1;
}