Scripting Error - 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: Scripting Error (
/showthread.php?tid=115757)
Scripting Error -
Jo1Nt - 25.12.2009
I got 2 errors:
C:\Documents and Settings\f@ne\My Documents\Downloads\GTARP\gamemodes\angelz.PWN(324 76) : error 004: function "NameTimer" is not implemented
C:\Documents and Settings\f@ne\My Documents\Downloads\GTARP\gamemodes\angelz.PWN(347 87) : warning 203: symbol is never used: "GetPointDistanceToPointExMorph"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Error.
How can i fix them?
Re: Scripting Error -
MadeMan - 25.12.2009
Show line 32476.
Re: Scripting Error -
Jo1Nt - 25.12.2009
NameTimer();
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
Re: Scripting Error -
Jo1Nt - 25.12.2009
Can i get Any Help?
Re: Scripting Error -
cigo - 25.12.2009
show nametimer function
Re: Scripting Error -
[HiC]TheKiller - 25.12.2009
Quote:
Originally Posted by Jo1Nt
NameTimer();
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
|
pawn Код:
stock NameTimer()
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
........
}
}
}