Quote:
Originally Posted by adsy
Quote:
Originally Posted by Lexuss
C:\Users\Lex\Desktop\GMs from Scratch\gamemodes\LexRole1.pwn(36423) : error 029: invalid expression, assumed zero
C:\Users\Lex\Desktop\GMs from Scratch\gamemodes\LexRole1.pwn(36406) : warning 204: symbol is assigned a value that is never used: "car"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Error.
new car = GetPlayerVehicleID(playerid); = line 36406
}
else = 36423
{
|
best to do
Код:
new car;
car = GetPlayerVehicleID(playerid);
|
Cant he just delete that line? If car isent used then theres surely no need for it?