26.06.2018, 21:11
Galera, criei o comando abaixo porйm na hora que digito ele no servidor aparece a seguinte mensagem:
SERVER: Unknowm Command.
Cуdigo do comando:
SERVER: Unknowm Command.
Cуdigo do comando:
pawn Код:
if( !strcmp( cmd, "/criarderby", true ))
{
if(pAdmin[playerid] == 5 || pAdmin[playerid] == 4)
{
if( EventoCriado == 1 )
{
SendClientMessage( playerid, Vermelho, "| ERRO | Jб tem um evento em andamento!" );
return 1;
}
else
{
vEvento[ CreateVehicle( 556, 1127.2469,1359.3855,10.8203,183.2775, 0, 1, -1 ) ] = 1;
vEvento[ CreateVehicle( 556, 1123.3887,1359.4010,10.8203,184.5308, 0, 1, -1 ) ] = 1;
vEvento[ CreateVehicle( 556, 1119.4945,1358.9907,10.8203,187.3509, 0, 1, -1 ) ] = 1;
vEvento[ CreateVehicle( 556, 1116.0231,1359.4000,10.8203,171.9974, 0, 1, -1 ) ] = 1;
vEvento[ CreateVehicle( 556, 1113.3241,1359.0577,10.8203,178.6500, 0, 1, -1 ) ] = 1;
ivEvento[ vEvento[ VeiculosEvento ]] = 1;
SetPlayerPos(playerid,1169.2644,1354.8823,14.5703);
EventoCriado = 1;
SendClientMessage( playerid, AZUL_BEST, "| INFO | Evento criado com sucesso!" );
SendClientMessageToAll( AZUL_BEST, "| BCV-Admin | O(A) %s %s criou o evento ( Derby-Monster ), use /irevento!", CargoAdmin(playerid), PlayerName(playerid) );
GameTextForAll("~y~Evento ~g~Criado ~y~use ~b~/irevento", 6000, 1);
T_AntBug = 1;
SetTimer( "CongelarPlayers", 1000, false );
VeiculosEvento++;
return 1;
}
}
}