about scoring again
#1

how i can make save scoring for all the cars?

by this code
Код:
public kalvicarscore()
{
  for(new i=0; i<MAX_PLAYERS; i++ )
  {
     if(GetVehicleModel(GetPlayerVehicleID(i)) == 480)
     {
     SetPlayerScore(i, GetPlayerScore(i)+1);
    }
  }
  return 1;
}
Reply
#2

noone cant help ?
Reply
#3

pawn Код:
public kalvicarscore()
{
    for(new i=0; i<MAX_PLAYERS; i++ )
    {
        if(IsPlayerInAnyVehicle(i))
        {
            SetPlayerScore(i, GetPlayerScore(i)+1);
        }
    }
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)