[AJUDA] Pessoas on no servidor
#1

Olб, como й que eu faзo para fazer com que o valor abaixo se multiplique pelo nъmero de pessoas online no servidor?
pawn Код:
CofreOrg[1][COdinheiro] = CofreOrg[1][COdinheiro] + 10 * PlayersOnline;
Reply
#2

pawn Код:
new playersCount;
for(new i; i < MAX_PLAYERS; ++i)
{
    if(IsPlayerConnected(i)) ++playersCount
}

CofreOrg[1][COdinheiro] += playersCount * 10;
Reply
#3

PHP код:
new PlayersOnline;
for(new 
iGetMaxPlayers(); p++)
    if(
IsPlayerConnected(i))
        
PlayersOnline++; 
Reply
#4

pawn Код:
CofreOrg[1][COdinheiro] = CofreOrg[1][COdinheiro] + 10 * PlayersOnline;

// Final do GM:
stock Coount()
{
    new out;
    for(new i, e = GetMaxPlayers(); i != e; i++)
    {
        if(IsPlayerConnected(i)) out++
    }
    return out;
}
Reply
#5

Obrigado deu certo! +rep
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)