Function is not implemented - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Function is not implemented (
/showthread.php?tid=204253)
Function is not implemented [FIXED] -
Flyfishes - 29.12.2010
Hey!
Last night I compiled my script and I got it working with 1 warning. I kept my PC on over the night till today and when I were going to compile the script again I got many errors. I haven't changed anything in the script from last night till today?!
Код:
C:\Users\Magnus\Desktop\pawno\gamemodes\bcrp.pwn(2029) : error 017: undefined symbol "AddCCTV"
C:\Users\Magnus\Desktop\pawno\gamemodes\bcrp.pwn(2030) : error 017: undefined symbol "AddCCTV"
C:\Users\Magnus\Desktop\pawno\gamemodes\bcrp.pwn(2031) : error 017: undefined symbol "AddCCTV"
C:\Users\Magnus\Desktop\pawno\gamemodes\bcrp.pwn(2032) : error 017: undefined symbol "AddCCTV"
C:\Users\Magnus\Desktop\pawno\gamemodes\bcrp.pwn(2033) : error 017: undefined symbol "AddCCTV"
C:\Users\Magnus\Desktop\pawno\gamemodes\bcrp.pwn(2034) : error 017: undefined symbol "AddCCTV"
C:\Users\Magnus\Desktop\pawno\gamemodes\bcrp.pwn(2035) : error 017: undefined symbol "AddCCTV"
C:\Users\Magnus\Desktop\pawno\gamemodes\bcrp.pwn(2036) : error 017: undefined symbol "AddCCTV"
C:\Users\Magnus\Desktop\pawno\gamemodes\bcrp.pwn(2037) : error 017: undefined symbol "AddCCTV"
C:\Users\Magnus\Desktop\pawno\gamemodes\bcrp.pwn(2038) : error 017: undefined symbol "AddCCTV"
C:\Users\Magnus\Desktop\pawno\gamemodes\bcrp.pwn(2039) : error 017: undefined symbol "AddCCTV"
C:\Users\Magnus\Desktop\pawno\gamemodes\bcrp.pwn(2040) : error 017: undefined symbol "AddCCTV"
C:\Users\Magnus\Desktop\pawno\gamemodes\bcrp.pwn(2041) : error 017: undefined symbol "AddCCTV"
C:\Users\Magnus\Desktop\pawno\gamemodes\bcrp.pwn(2042) : error 017: undefined symbol "AddCCTV"
C:\Users\Magnus\Desktop\pawno\gamemodes\bcrp.pwn(2126) : error 004: function "LoadFactions" is not implemented
C:\Users\Magnus\Desktop\pawno\gamemodes\bcrp.pwn(2127) : error 004: function "LoadVehicles" is not implemented
C:\Users\Magnus\Desktop\pawno\gamemodes\bcrp.pwn(2128) : error 004: function "LoadSpawnPoint" is not implemented
C:\Users\Magnus\Desktop\pawno\gamemodes\bcrp.pwn(2129) : error 004: function "LoadBuildings" is not implemented
C:\Users\Magnus\Desktop\pawno\gamemodes\bcrp.pwn(2130) : error 004: function "LoadHouses" is not implemented
C:\Users\Magnus\Desktop\pawno\gamemodes\bcrp.pwn(2131) : error 004: function "LoadBusinesses" is not implemented
I've tried to reboot my PC and that didn't work.
Re: Function is not implemented -
Mean - 29.12.2010
Could you show us the CODE?
Re: Function is not implemented -
Flyfishes - 29.12.2010
It's around 4k of lines with code.
Re: Function is not implemented -
alpha500delta - 29.12.2010
Ohwell
AddCCTV is not defined, add #define SOMETHING AddCCTV, or any other defining your using to add a CCTV
And for
Код:
C:\Users\Magnus\Desktop\pawno\gamemodes\bcrp.pwn(2126) : error 004: function "LoadFactions" is not implemented
C:\Users\Magnus\Desktop\pawno\gamemodes\bcrp.pwn(2127) : error 004: function "LoadVehicles" is not implemented
C:\Users\Magnus\Desktop\pawno\gamemodes\bcrp.pwn(2128) : error 004: function "LoadSpawnPoint" is not implemented
C:\Users\Magnus\Desktop\pawno\gamemodes\bcrp.pwn(2129) : error 004: function "LoadBuildings" is not implemented
C:\Users\Magnus\Desktop\pawno\gamemodes\bcrp.pwn(2130) : error 004: function "LoadHouses" is not implemented
C:\Users\Magnus\Desktop\pawno\gamemodes\bcrp.pwn(2131) : error 004: function "LoadBusinesses" is not implemented
You forgot to add "forward LoadVehicles(Something);" and all the other errors
Re: Function is not implemented -
Flyfishes - 29.12.2010
My load functions load ALL vehicles etc. Not just one id: LoadVehicle(vehicleid);
AddCCTV is defined with a stock
Re: Function is not implemented -
Flyfishes - 29.12.2010
FIXED FIXED FIXED