SA-MP Forums Archive
[HELP] NOPCheck - 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)
+--- Thread: [HELP] NOPCheck (/showthread.php?tid=423003)



[HELP] NOPCheck - raamiix - 16.03.2013

How to fix this errors?

Код:
C:\Users\Ramin\Desktop\PL-RP\gamemodes\PL-RP.pwn(4926) : error 017: undefined symbol "NOPCheck"
C:\Users\Ramin\Desktop\PL-RP\gamemodes\PL-RP.pwn(5536) : error 017: undefined symbol "NOPCheck"
C:\Users\Ramin\Desktop\PL-RP\gamemodes\PL-RP.pwn(5552) : error 017: undefined symbol "NOPCheck"
C:\Users\Ramin\Desktop\PL-RP\gamemodes\PL-RP.pwn(5565) : error 017: undefined symbol "NOPCheck"
C:\Users\Ramin\Desktop\PL-RP\gamemodes\PL-RP.pwn(5579) : error 017: undefined symbol "NOPCheck"
C:\Users\Ramin\Desktop\PL-RP\gamemodes\PL-RP.pwn(5590) : error 017: undefined symbol "NOPCheck"
C:\Users\Ramin\Desktop\PL-RP\gamemodes\PL-RP.pwn(5604) : error 017: undefined symbol "NOPCheck"
C:\Users\Ramin\Desktop\PL-RP\gamemodes\PL-RP.pwn(5667) : error 017: undefined symbol "NOPCheck"
C:\Users\Ramin\Desktop\PL-RP\gamemodes\PL-RP.pwn(5682) : error 017: undefined symbol "NOPCheck"
C:\Users\Ramin\Desktop\PL-RP\gamemodes\PL-RP.pwn(5697) : error 017: undefined symbol "NOPCheck"
C:\Users\Ramin\Desktop\PL-RP\gamemodes\PL-RP.pwn(5712) : error 017: undefined symbol "NOPCheck"
C:\Users\Ramin\Desktop\PL-RP\gamemodes\PL-RP.pwn(5727) : error 017: undefined symbol "NOPCheck"
C:\Users\Ramin\Desktop\PL-RP\gamemodes\PL-RP.pwn(5742) : error 017: undefined symbol "NOPCheck"
C:\Users\Ramin\Desktop\PL-RP\gamemodes\PL-RP.pwn(5757) : error 017: undefined symbol "NOPCheck"
C:\Users\Ramin\Desktop\PL-RP\gamemodes\PL-RP.pwn(5772) : error 017: undefined symbol "NOPCheck"
C:\Users\Ramin\Desktop\PL-RP\gamemodes\PL-RP.pwn(5787) : error 017: undefined symbol "NOPCheck"
C:\Users\Ramin\Desktop\PL-RP\gamemodes\PL-RP.pwn(5802) : error 017: undefined symbol "NOPCheck"
C:\Users\Ramin\Desktop\PL-RP\gamemodes\PL-RP.pwn(5817) : error 017: undefined symbol "NOPCheck"
C:\Users\Ramin\Desktop\PL-RP\gamemodes\PL-RP.pwn(5832) : error 017: undefined symbol "NOPCheck"
C:\Users\Ramin\Desktop\PL-RP\gamemodes\PL-RP.pwn(5847) : error 017: undefined symbol "NOPCheck"
C:\Users\Ramin\Desktop\PL-RP\gamemodes\PL-RP.pwn(5877) : error 017: undefined symbol "NOPCheck"
C:\Users\Ramin\Desktop\PL-RP\gamemodes\PL-RP.pwn(5888) : error 017: undefined symbol "NOPCheck"
C:\Users\Ramin\Desktop\PL-RP\gamemodes\PL-RP.pwn(5907) : error 017: undefined symbol "NOPCheck"
C:\Users\Ramin\Desktop\PL-RP\gamemodes\PL-RP.pwn(5936) : error 017: undefined symbol "NOPCheck"
C:\Users\Ramin\Desktop\PL-RP\gamemodes\PL-RP.pwn(5948) : error 017: undefined symbol "NOPCheck"
C:\Users\Ramin\Desktop\PL-RP\gamemodes\PL-RP.pwn(5972) : error 017: undefined symbol "IsPlayerInRangeOfVehicle"

Compilation aborted.Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


26 Errors.



Re: [HELP] NOPCheck - Peach - 16.03.2013

How do we know what to fix without actually seeing some code.

Navigate to one of the lines and we'll see what the problem is.

You need to declare the function in your script, that's why it's not being read.

Check before you post.

https://sampforum.blast.hk/showthread.php?tid=385735
https://sampforum.blast.hk/showthread.php?tid=345328


Re: [HELP] NOPCheck - raamiix - 16.03.2013

Quote:
Originally Posted by Peach
Посмотреть сообщение
How do we know what to fix without actually seeing some code.

Navigate to one of the lines and we'll see what the problem is.
Код:
			    RemovePlayerFromVehicle(playerid);
			    new Float:slx, Float:sly, Float:slz;
				GetPlayerPos(playerid, slx, sly, slz);
				SetPlayerPos(playerid, slx, sly, slz);
			    NOPCheck(playerid);
			    SendClientMessageEx(playerid, COLOR_GRAD2, "You are not in the LSPD!");
			}



Re: [HELP] NOPCheck - Jstylezzz - 16.03.2013

I heard NOPCheck is from the NGRP script, if you're using leaked scripts, most people won't support you.
All I am going to say is, copy the NOPCheck stock from the NGRP script, and add it to your gamemode.


Re: [HELP] NOPCheck - tyler12 - 16.03.2013

http://forum.sa-mp.com/showpost.php?...08&postcount=5


Re: [HELP] NOPCheck - raamiix - 16.03.2013

Quote:
Originally Posted by Jari_Johnson*
Посмотреть сообщение
I heard NOPCheck is from the NGRP script, if you're using leaked scripts, most people won't support you.
All I am going to say is, copy the NOPCheck stock from the NGRP script, and add it to your gamemode.
How?