18.03.2015, 16:03
No Seu Segundo caso:
esta assim^^, mude o
para
PHP код:
if( !strcmp( cmd, "/participar", true ))
{
if( EventoCriado == 0 )
{
SendClientMessage( playerid, COLOR_ERRO, "[ x ] Nгo existe nenhum evento criado no momento !" );
return 1;
}
if( PlayerWantedLevel ( playerid ) == 1 )
{
SendClientMessage( playerid, COLOR_ERRO, "[ x ] Vocк nгo pode participar do evento estando procurado !" );
return 1;
}
if( ParticipandoEvento[ playerid ] == 1 )
{
SendClientMessage( playerid, COLOR_ERRO, "[ x ] Vocк jб estб participando do evento !" );
return 1;
}
if( vOcupados == VeiculosEvento )
{
SendClientMessage( playerid, COLOR_ERRO, "[ x ] Jб excedeu o limite de players no evento !" );
return 1;
}
PHP код:
if( PlayerWantedLevel ( playerid ) == 1 )
{
SendClientMessage( playerid, COLOR_ERRO, "[ x ] Vocк nгo pode participar do evento estando procurado !" );
return 1;
}
PHP код:
if( PlayerWantedLevel ( playerid ) > 0 )
{
SendClientMessage( playerid, COLOR_ERRO, "[ x ] Vocк nгo pode participar do evento estando procurado !" );
return 1;
}