[Off] Qual a melhor forma de criar uma Loop.
#7

GetPlayerPoolSize, tambйm acho interessante adicionar que tambйm existe para os veнculos GetVehiclePoolSize.

Код:
FreezeAll()
{
    for(new i = 0, j = GetPlayerPoolSize(); i <= j; i++) // note that we assign the return value to a new variable (j) to avoid calling the function with each iteration
    {
        TogglePlayerControllable(i, 0);
    }
}
Код:
RepairAllVehicles()
{
    for(new i = 1, j = GetVehiclePoolSize(); i <= j; i++) // vehicleids start at 1
    {
        RepairVehicle(i);
    }
}
Reply


Messages In This Thread
Qual a melhor forma de criar uma Loop. - by [BOPE]Seu._.Madruga - 29.01.2016, 23:56
Re: Qual a melhor forma de criar uma Loop. - by SickAttack - 30.01.2016, 00:06
Re: Qual a melhor forma de criar uma Loop. - by Kuddy - 30.01.2016, 00:15
Re: Qual a melhor forma de criar uma Loop. - by JonathanFeitosa - 30.01.2016, 07:41
Re: Qual a melhor forma de criar uma Loop. - by De4gle - 30.01.2016, 08:43
Re: Qual a melhor forma de criar uma Loop. - by Coringa_Vilao - 30.01.2016, 15:32
Re: Qual a melhor forma de criar uma Loop. - by Monotox - 30.01.2016, 17:11

Forum Jump:


Users browsing this thread: 1 Guest(s)