28.03.2015, 05:39
O tabuador fica horas carregando e nгo da em nada mano.
O warning que estou tendo, й principalmente no final do comando, como exemplo aqui:
O warning que estou tendo, й principalmente no final do comando, como exemplo aqui:
PHP код:
if( !strcmp( cmdtext, "/flip", true ))
{
if( pInfo[ playerid ][ PLAYER_VIP ] == 1 || aInfo[ playerid ][ Dono ] == 1 || aInfo[ playerid ][ Admin ] == 1 || aInfo[ playerid ][ Moderador ] == 1 || aInfo[ playerid ][ Ajudante ] == 1 )
{
if( GetPlayerWantedLevel ( playerid ) == 1 )
{
SendClientMessage( playerid, COLOR_ERRO, "[ x ] Vocк nгo pode desvirar o veнculo estando procurado !" );
return 1;
}
if( pInfo[ playerid ][ fardado ] == 1 )
{
SendClientMessage( playerid, COLOR_ERRO, "[ x ] Vocк nгo pode desvirar o veнculo estando fardado(a) !" );
return 1;
}
if( IsPlayerInAnyVehicle( playerid ))
{
new
getVehicle, Float:a
;
getVehicle = GetPlayerVehicleID( playerid );
GetVehicleZAngle( getVehicle, a );
SetVehicleZAngle( getVehicle, a );
SendClientMessage( playerid, 0x00FF66AA, "{37CA3A}[ BOT ] Kratos:{FFFFFF} Veнculo desvirado com sucesso !" );
}
else
{
SendClientMessage( playerid, COLOR_ERRO, "[ x ] Vocк nгo estб em um veнculo !" );
}
return 1;
}
else
{
SendClientMessage( playerid, COLOR_ERRO, "[ x ] Vocк nгo tem permissгo!" );
}
return 1; // warning
}