[HELP]26 Errors -
Danijel. - 01.05.2012
Well i compiled my script, and i got 26 errors. I thought it's beacuse of the brackets but i tested it in iPLEOMAX's program and it says it's not the bracket's fault.
I downloaded all new includes, plugins and server map but it still gives me errors.
Sorry for my bad english, please help!
Re: [HELP]26 Errors -
Carbonite - 01.05.2012
Well, show us the errors.
Re: [HELP]26 Errors -
Danijel. - 01.05.2012
C:\Users\David\Desktop\Balkan Paradajz\gamemodes\BN.pwn(4605) : error 017: undefined symbol "SaveBusiness"
C:\Users\David\Desktop\Balkan Paradajz\gamemodes\BN.pwn(5101) : error 004: function "ProxDetector" is not implemented
C:\Users\David\Desktop\Balkan Paradajz\gamemodes\BN.pwn(5111) : error 004: function "ProxDetector" is not implemented
C:\Users\David\Desktop\Balkan Paradajz\gamemodes\BN.pwn(659

: error 004: function "CreateTunedCar" is not implemented
C:\Users\David\Desktop\Balkan Paradajz\gamemodes\BN.pwn(6689) : error 004: function "CreateTunedHeli" is not implemented
C:\Users\David\Desktop\Balkan Paradajz\gamemodes\BN.pwn(7782) : error 004: function "SetVehicleParamsForAll" is not implemented
C:\Users\David\Desktop\Balkan Paradajz\gamemodes\BN.pwn(7800) : error 004: function "SetVehicleParamsForAll" is not implemented
C:\Users\David\Desktop\Balkan Paradajz\gamemodes\BN.pwn(782

: error 004: function "SetVehicleParamsForAll" is not implemented
C:\Users\David\Desktop\Balkan Paradajz\gamemodes\BN.pwn(7834) : error 004: function "SetVehicleParamsForAll" is not implemented
C:\Users\David\Desktop\Balkan Paradajz\gamemodes\BN.pwn(7857) : error 004: function "SetVehicleParamsForAll" is not implemented
C:\Users\David\Desktop\Balkan Paradajz\gamemodes\BN.pwn(7863) : error 004: function "SetVehicleParamsForAll" is not implemented
C:\Users\David\Desktop\Balkan Paradajz\gamemodes\BN.pwn(7867) : error 017: undefined symbol "MotoSave"
C:\Users\David\Desktop\Balkan Paradajz\gamemodes\BN.pwn(7877) : error 004: function "endrace" is not implemented
C:\Users\David\Desktop\Balkan Paradajz\gamemodes\BN.pwn(7881) : error 004: function "ReadyRefresh" is not implemented
C:\Users\David\Desktop\Balkan Paradajz\gamemodes\BN.pwn(7890) : error 004: function "ab" is not implemented
C:\Users\David\Desktop\Balkan Paradajz\gamemodes\BN.pwn(7892) : error 004: function "ab" is not implemented
C:\Users\David\Desktop\Balkan Paradajz\gamemodes\BN.pwn(7893) : error 004: function "ab" is not implemented
C:\Users\David\Desktop\Balkan Paradajz\gamemodes\BN.pwn(7894) : error 004: function "ab" is not implemented
C:\Users\David\Desktop\Balkan Paradajz\gamemodes\BN.pwn(7896) : error 004: function "ab" is not implemented
C:\Users\David\Desktop\Balkan Paradajz\gamemodes\BN.pwn(8127) : error 017: undefined symbol "D_SetPlayerHealth"
C:\Users\David\Desktop\Balkan Paradajz\gamemodes\BN.pwn(10911) : error 004: function "CrimInRange" is not implemented
C:\Users\David\Desktop\Balkan Paradajz\gamemodes\BN.pwn(1156

: error 017: undefined symbol "D_SetPlayerHealth"
C:\Users\David\Desktop\Balkan Paradajz\gamemodes\BN.pwn(11569) : error 017: undefined symbol "D_SetPlayerHealth"
C:\Users\David\Desktop\Balkan Paradajz\gamemodes\BN.pwn(11631) : error 017: undefined symbol "D_SetPlayerHealth"
C:\Users\David\Desktop\Balkan Paradajz\gamemodes\BN.pwn(11635) : error 017: undefined symbol "D_SetPlayerHealth"
C:\Users\David\Desktop\Balkan Paradajz\gamemodes\BN.pwn(11641) : error 017: undefined symbol "D_SetPlayerHealth"
Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
26 Errors.
Re: [HELP]26 Errors -
TheDominator - 01.05.2012
Make a set of [PAWN] boxes to show us the lines where the errors lay.
Re: [HELP]26 Errors -
Carbonite - 01.05.2012
That does seem like a missing brackets error, it could also be an error like,
stock CheckMaleOrFemale(Variable)
{
if(Variable == 1) return "Female";
return "Male";
}
Which would do the same thing.
What you do is type #error then compile, if you get a user error then nothing is wrong with the code from the top line to the "#error" line, do this on every line (or after every public/stock) till you figure out the error or reach the bottom of your script, then come back.