[Duda] Cуmo hacer para...?
#10

yo pregunto ...

la variable Float:val no esta de mas o esta mal colocada?.

pawn Код:
stock SearchPlayerWhitHighPoints()
{
    new
        tmp,
        Float:val; //xa se xrea cuando utiliza SearchPlayerWhitHighPoints

    foreach(new i : Player)
    {
        if(PlayerInfo[i][RadarSpeed] > val) //aca estaria en 0.0 la variable val
        {
            tmp = i;
            val = PlayerInfo[i][RadarSpeed]; //aca le establetemos el valor de la variable RadarSpeed a la variable val, pero despues no se usa o_O.
        }
    }

    return tmp;
}
EDIT: por lo que tu me explicaste, lo que quieres es esto peor bueh ...


pawn Код:
stock SearchPlayerWhitHighPoints(){
    new puntos=0;
    foreach(new user: Player){
        if(PlayerInfo[user][RadarSpeed] > puntosMAX){
            puntos = user;
        }
    } return puntos;
}
pawn Код:
stock SearchPlayerWhitHighPoints(){
    new puntos=0, contar=0;
    foreach(new user: Player){
        if(PlayerInfo[user][RadarSpeed] > puntosMAX){
            contar++;
            puntos = user;
        }
    }
    if(contar == 1) return puntos;
    else if(contar > 1) return INVALID_PLAYER_ID;
}
Reply


Messages In This Thread
[Duda] Cуmo hacer para...? - by Swedky - 31.01.2014, 15:57
Respuesta: [Duda] Cуmo hacer para...? - by CrossOv3r - 31.01.2014, 16:10
Respuesta: [Duda] Cуmo hacer para...? - by Swedky - 31.01.2014, 16:17
Respuesta: [Duda] Cуmo hacer para...? - by OTACON - 31.01.2014, 16:55
Respuesta: [Duda] Cуmo hacer para...? - by Swedky - 31.01.2014, 16:58
Respuesta: [Duda] Cуmo hacer para...? - by OTACON - 31.01.2014, 17:12
Re: [Duda] Cуmo hacer para...? - by admantis - 31.01.2014, 17:21
Respuesta: [Duda] Cуmo hacer para...? - by TheChaoz - 31.01.2014, 19:46
Respuesta: [Duda] Cуmo hacer para...? - by Swedky - 31.01.2014, 19:52
Respuesta: [Duda] Cуmo hacer para...? - by OTACON - 31.01.2014, 20:00

Forum Jump:


Users browsing this thread: 1 Guest(s)