/rc Respawn de Carros
#1

Bom Galera, Procurei o Comando /RC e nгo Achei,

o Comando й o Seguiinte,

/rc pra Respawnar Todosos Carros, mas pra ele n respawnar os carros Ocupados

vlww
Reply
#2

ajuda?pedido? duvida? oq?
Reply
#3

ZCMD ? STRCMP ? SSCANF?
Reply
#4

http://forum.sa-mp.com/showpost.php?...3&postcount=68
Reply
#5

pawn Код:
if(strcmp(cmdtext,"/rc", true) == 0)
{
    for(new x = 0; x < MAX_VEHICLES ; x++)
    {
        SetVehicleToRespawn(x);
    }
    return 1;
}
Simples assim, basta fechar para admins
Reply
#6

Certeza que procurou?
Pois eu acho que nгo. Procure dinovo -_-.
Reply
#7

pawn Код:
stock ResetarCarros()
{
        SendClientMessageToAll(-1, "algum administrador espawnou todos os carros.");
        static bool:inVeh;
    for(new i; i < MAX_VEHICLES; i++ )
        {
                inVeh = false;
        for(new j; j < GetMaxPlayers(); j++ )
                {
                        if(IsPlayerInVehicle( j, i ))
                        inVeh = true;
                        break;
                }
        if(!inVeh) SetVehicleToRespawn(i);
   }
}
Creditos: desconhecido.
Reply
#8

Quote:
Originally Posted by [O.z]Caroline
Посмотреть сообщение
pawn Код:
stock ResetarCarros()
{
        SendClientMessageToAll(-1, "algum administrador espawnou todos os carros.");
        static bool:inVeh;
    for(new i; i < MAX_VEHICLES; i++ )
        {
                inVeh = false;
        for(new j; j < GetMaxPlayers(); j++ )
                {
                        if(IsPlayerInVehicle( j, i ))
                        inVeh = true;
                        break;
                }
        if(!inVeh) SetVehicleToRespawn(i);
   }
}
Creditos: desconhecido.
pawn Код:
if(strcmp("/rc", cmdtext, true, 3) == 0) return ResetarCarros();
pawn Код:
stock ResetarCarros()
{
    new
        Nome[MAX_PLAYER_NAME],
        sStr[27 + MAX_PLAYER_NAME]
    ;
    GetPlayerName(playerid, Nome, sizeof(Nome));
    format(sStr, sizeof(sStr), "%s respawnou todos os carros!", Nome);
    SendClientMessageToAll(-1, sStr);
    new bool:inVeh;
    for(new i; i < MAX_VEHICLES; i++ )
    {
        inVeh = false;
        for(new j; j < GetMaxPlayers(); j++ )
        {
            if(IsPlayerInVehicle(j, i))
            inVeh = true;
            break;
        }
        if(!inVeh) SetVehicleToRespawn(i);
    }
    return 1;
}
Reply
#9

Quote:
Originally Posted by Shickcard
Посмотреть сообщение
pawn Код:
if(strcmp("/rc", cmdtext, true, 3) == 0) return ResetarCarros();
pawn Код:
stock ResetarCarros()
{
    new
        Nome[MAX_PLAYER_NAME],
        sStr[27 + MAX_PLAYER_NAME]
    ;
    GetPlayerName(playerid, Nome, sizeof(Nome));
    format(sStr, sizeof(sStr), "%s respawnou todos os carros!", Nome);
    SendClientMessageToAll(-1, sStr);
    new bool:inVeh;
    for(new i; i < MAX_VEHICLES; i++ )
    {
        inVeh = false;
        for(new j; j < GetMaxPlayers(); j++ )
        {
            if(IsPlayerInVehicle(j, i))
            inVeh = true;
            break;
        }
        if(!inVeh) SetVehicleToRespawn(i);
    }
    return 1;
}
erro, undefined symbol playerd.


pawn Код:
if(!strcmp("/rc", cmdtext, true)) return ResetarCarros(playerid);
pawn Код:
stock ResetarCarros(playerid)
{
    new
        Nome[MAX_PLAYER_NAME],
        sStr[27 + MAX_PLAYER_NAME]
    ;
    GetPlayerName(playerid, Nome, sizeof(Nome));
    format(sStr, sizeof(sStr), "%s respawnou todos os carros!", Nome);
    SendClientMessageToAll(-1, sStr);
    static bool:inVeh;
    for(new i; i < MAX_VEHICLES; i++ )
    {
        inVeh = false;
        for(new j; j < GetMaxPlayers(); j++ )
        {
            if(IsPlayerInVehicle(j, i))
            inVeh = true;
            break;
        }
        if(!inVeh) SetVehicleToRespawn(i);
    }
    return 1;
}
Reply
#10

Quote:
Originally Posted by Lohran
Посмотреть сообщение
ajuda?pedido? duvida? oq?
Pedido
Quote:
Originally Posted by Los
Посмотреть сообщение
ZCMD ? STRCMP ? SSCANF?
STRCMP
Quote:
Originally Posted by Willian_Luigi
Посмотреть сообщение
pawn Код:
if(strcmp(cmdtext,"/rc", true) == 0)
{
    for(new x = 0; x < MAX_VEHICLES ; x++)
    {
        SetVehicleToRespawn(x);
    }
    return 1;
}
Simples assim, basta fechar para admins
Eu quero Pra Nгo Respawnar os CarrosOcupado por Players
Quote:
Originally Posted by Shickcard
Посмотреть сообщение
Certeza que procurou?
Pois eu acho que nгo. Procure dinovo -_-.
Sim, Ja Procurei e Nгo achei oq eu queria
Quote:
Originally Posted by [O.z]Caroline
Посмотреть сообщение
pawn Код:
stock ResetarCarros()
{
        SendClientMessageToAll(-1, "algum administrador espawnou todos os carros.");
        static bool:inVeh;
    for(new i; i < MAX_VEHICLES; i++ )
        {
                inVeh = false;
        for(new j; j < GetMaxPlayers(); j++ )
                {
                        if(IsPlayerInVehicle( j, i ))
                        inVeh = true;
                        break;
                }
        if(!inVeh) SetVehicleToRespawn(i);
   }
}
Creditos: desconhecido.
ERRO: "COMANDO DESCONHEЗIDO"
Creditos TheGarfild
Quote:
Originally Posted by Gustavo_Araujo
Посмотреть сообщение
Vlw, Funfou Thnaks
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)