Ajutor Pawno -
OficerD - 31.01.2016
Acestea sunt warningurile care imi apar cand copilez.
C:\Users\Ionut\Desktop\Five-Time\gamemodes\RPG.pwn(19350) : warning 204: symbol is assigned a value that is never used: "admincar1"
C:\Users\Ionut\Desktop\Five-Time\gamemodes\RPG.pwn(19352) : warning 204: symbol is assigned a value that is never used: "admincar2"
C:\Users\Ionut\Desktop\Five-Time\gamemodes\RPG.pwn(19351) : warning 204: symbol is assigned a value that is never used: "admincar3"
C:\Users\Ionut\Desktop\Five-Time\gamemodes\RPG.pwn(19353) : warning 204: symbol is assigned a value that is never used: "admincar4"
C:\Users\Ionut\Desktop\Five-Time\gamemodes\RPG.pwn(19355) : warning 204: symbol is assigned a value that is never used: "helpercar1"
C:\Users\Ionut\Desktop\Five-Time\gamemodes\RPG.pwn(19356) : warning 204: symbol is assigned a value that is never used: "helpercar2"
C:\Users\Ionut\Desktop\Five-Time\gamemodes\RPG.pwn(19357) : warning 204: symbol is assigned a value that is never used: "helpercar3"
C:\Users\Ionut\Desktop\Five-Time\gamemodes\RPG.pwn(1935

: warning 204: symbol is assigned a value that is never used: "helpercar4"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
Header size: 16144 bytes
Code size: 3467840 bytes
Data size: 21141032 bytes
Stack/heap size: 32768 bytes; estimated max. usage: unknown, due to recursion
Total requirements:24657784 bytes
8 Warnings.
Aceasta este linia:
//-----------------------------------[STAFF Vehicles]--------------------------------------------//
//admin
admincar1 = AddStaticVehicle(541,1362.0121,-1635.4783,13.0078,269.3901,2,2); //Bullet
admincar3 = AddStaticVehicle(541,1361.7220,-1643.2803,13.0078,269.5037,2,2); //Bullet
admincar2 = AddStaticVehicle(541,1361.7273,-1650.9823,13.0078,270.3948,2,2); //Bullet
admincar4 = AddStaticVehicle(541,1361.8401,-1659.0255,13.0078,274.8091,2,2); //Bullet
//helpers
helpercar1 = AddStaticVehicle(560,1452.4698,-1844.7462,13.2609,0.0400,3,3); //Sultan
helpercar2 = AddStaticVehicle(560,1456.1705,-1844.6786,13.2519,2.1344,3,3); //Sultan
helpercar3 = AddStaticVehicle(560,1460.4325,-1844.6066,13.2518,359.3297,3,3); //Sultan
helpercar4 = AddStaticVehicle(560,1464.3026,-1844.6051,13.2517,359.4437,3,3); //Sultan
Re: Ajutor Pawno -
BiosMarcel - 31.01.2016
dont worry about that, it jsut means that u created the cars but havent used them until now, the compiler just wants to tell u that it is useless as it is right now cuz it takes more space, but as i said, dont worry
Re: Ajutor Pawno -
Darkwood17 - 31.01.2016
If you won't use these cars anywhere in your code just remove the prefixes, unless if you will use them in a callback (like OnPlayerEnterVehicle). For the size-warnings, this means that you're using large arrays in functions. You can try optimizing your script or just ignore it.
Next time you are posting use English or go to the Non-English section. Also use the [CODE] tag.