C:\DOCUME~1\USER\Desktop\HGRP\pawno\include\streamer.inc(363) : error 017: undefined symbol "Streamer_OnPlayerPickUpPickup" C:\DOCUME~1\USER\Desktop\HGRP\pawno\include\streamer.inc(383) : error 017: undefined symbol "Streamer_OnPlayerEnterCP" C:\DOCUME~1\USER\Desktop\HGRP\pawno\include\streamer.inc(403) : error 017: undefined symbol "Streamer_OnPlayerLeaveCP" C:\DOCUME~1\USER\Desktop\HGRP\pawno\include\streamer.inc(423) : error 017: undefined symbol "Streamer_OnPlayerEnterRaceCP" C:\DOCUME~1\USER\Desktop\HGRP\pawno\include\streamer.inc(443) : error 017: undefined symbol "Streamer_OnPlayerLeaveRaceCP" C:\Documents and Settings\USER\Desktop\HGRP\gamemodes\HGRPv1.pwn(1357) : error 017: undefined symbol "RPN" C:\Documents and Settings\USER\Desktop\HGRP\gamemodes\HGRPv1.pwn(1358) : error 017: undefined symbol "SendRobberyMessage" C:\Documents and Settings\USER\Desktop\HGRP\gamemodes\HGRPv1.pwn(1359) : error 017: undefined symbol "SendCopMessage" C:\Documents and Settings\USER\Desktop\HGRP\gamemodes\HGRPv1.pwn(1377) : error 017: undefined symbol "IsACop" C:\Documents and Settings\USER\Desktop\HGRP\gamemodes\HGRPv1.pwn(1381) : error 017: undefined symbol "IsACop" C:\Documents and Settings\USER\Desktop\HGRP\gamemodes\HGRPv1.pwn(1384) : error 017: undefined symbol "GiveDodMoney" C:\Documents and Settings\USER\Desktop\HGRP\gamemodes\HGRPv1.pwn(1526) : error 017: undefined symbol "IsPlayerLoggedIn" C:\Documents and Settings\USER\Desktop\HGRP\gamemodes\HGRPv1.pwn(1566) : error 017: undefined symbol "ResetDodWeapons" C:\Documents and Settings\USER\Desktop\HGRP\gamemodes\HGRPv1.pwn(2471) : error 017: undefined symbol "split" C:\Documents and Settings\USER\Desktop\HGRP\gamemodes\HGRPv1.pwn(2559) : error 017: undefined symbol "IsPlayerLoggedIn" C:\Documents and Settings\USER\Desktop\HGRP\gamemodes\HGRPv1.pwn(2564) : error 017: undefined symbol "RPNU" C:\Documents and Settings\USER\Desktop\HGRP\gamemodes\HGRPv1.pwn(2586) : error 017: undefined symbol "SaveDodAmmo" C:\Documents and Settings\USER\Desktop\HGRP\gamemodes\HGRPv1.pwn(2822) : error 017: undefined symbol "SaveToys" C:\Documents and Settings\USER\Desktop\HGRP\gamemodes\HGRPv1.pwn(2841) : error 017: undefined symbol "RPNU"
I've successfully compiled it earlier, but I add some commands and this happens. I've got the commands from the script of my friend which it is also successfully compiled, but I don't know why this is happening when I re-compile my script. Maybe there is something that is not defined or? Don't have an idea anymore.
|
stock IsACop(playerid)
// ...
IsACop(playerid)
// ...
That's a rule at programming.. copying-pasting won't make it works if you've not defined anything.
First of all, about the streamer errors - use the latest plugin/include. About the rest, they're all most likely custom functions. Try to find to your friend's script about these functions either as pawn Код:
pawn Код:
|
stock IsACop(playerid) { if(PlayerInfo[playerid][pFac] == 1) return 1; return 0; }
I looked in my friends script, and it is absolutely the same as what I have in my script....
|
error 017: undefined symbol "IsACop" |