[Pedido] /rc
#1

ola queridosssssssssssssss preciso de ajuda de voces nisso aki em comando /rc ele nao reseta veiculos sem uso ele reseta todos os veiculos '-' isso e ruim ne sera que alguem pode da uma olhada ai

PHP код:
// This command allows you to change your password for logging in
COMMAND:rc(playeridparams[])
{
    
SendAdminText(playerid"/rc"params);
    if (
APlayerData[playerid][LoggedIn] == true)
    {
        if (
APlayerData[playerid][PlayerLevel] >= 2)
        {
            
SendClientMessageToAll(0x00FF00FF"Todos os veнculos foram resetados pelo admin");
            for(new 
i=0i<MAX_VEHICLESi++)
            {
                
#define VehicleOccupied(i)
                
{
                    
SetVehicleToRespawn(i);
                }
            }
        }
        else
            return 
0;
    }
    else
        return 
0;
    return 
1;

Reply
#2

pawn Код:
// This command allows you to change your password for logging in
COMMAND:rc(playerid, params[])
{
    SendAdminText(playerid, "/rc", params);
    if (APlayerData[playerid][LoggedIn] == true && APlayerData[playerid][PlayerLevel] >= 2)
    {
        SendClientMessageToAll(0x00FF00FF, "Todos os veнculos foram resetados pelo admin");
        for(new i=0; i<MAX_VEHICLES; i++)
            SetVehicleToRespawn(i);
    }
    return 1;
}
Reply
#3

Quote:
Originally Posted by PT
Посмотреть сообщение
pawn Код:
// This command allows you to change your password for logging in
COMMAND:rc(playerid, params[])
{
    SendAdminText(playerid, "/rc", params);
    if (APlayerData[playerid][LoggedIn] == true && APlayerData[playerid][PlayerLevel] >= 2)
    {
        SendClientMessageToAll(0x00FF00FF, "Todos os veнculos foram resetados pelo admin");
        for(new i=0; i<MAX_VEHICLES; i++)
            SetVehicleToRespawn(i);
    }
    return 1;
}
Vlw cara REEP++
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)