23.06.2014, 19:01
I've located the problem. The commented one doesnt work.
How can i make it so the commented one works?
pawn Код:
/*for(new i=0; i < MAX_VEHICLES; i++)
{
if(IsATruck(i))
{
PlayerHaul[i][pCapacity] = 100;
}
else if(IsATrailer(i))
{
PlayerHaul[i][pCapacity] = 1000;
}
}*/
for(new i=0; i < MAX_VEHICLES; i++)
{
PlayerHaul[i][pCapacity] = 100;
}