SA-MP Forums Archive
Twenty Six Errors... - 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: Twenty Six Errors... (/showthread.php?tid=115005)



Twenty Six Errors... - TheGtaLover - 22.12.2009

I get these errors?
Quote:

C:\Users\pam\Desktop\samp03asvr_R4_win32\gamemodes \larp.pwn(2187) : error 004: function "SafeGivePlayerMoney" is not implemented
C:\Users\pam\Desktop\samp03asvr_R4_win32\gamemodes \larp.pwn(2216) : error 004: function "SafeGivePlayerMoney" is not implemented
C:\Users\pam\Desktop\samp03asvr_R4_win32\gamemodes \larp.pwn(2252) : error 004: function "SafeResetPlayerWeapons" is not implemented
C:\Users\pam\Desktop\samp03asvr_R4_win32\gamemodes \larp.pwn(2253) : error 004: function "SafeGivePlayerWeapon" is not implemented
C:\Users\pam\Desktop\samp03asvr_R4_win32\gamemodes \larp.pwn(2280) : error 004: function "SafeResetPlayerWeapons" is not implemented
C:\Users\pam\Desktop\samp03asvr_R4_win32\gamemodes \larp.pwn(2751) : error 004: function "PlayerToPoint" is not implemented
C:\Users\pam\Desktop\samp03asvr_R4_win32\gamemodes \larp.pwn(2762) : error 004: function "PlayerToPoint" is not implemented
C:\Users\pam\Desktop\samp03asvr_R4_win32\gamemodes \larp.pwn(2774) : error 004: function "PlayerToPoint" is not implemented
C:\Users\pam\Desktop\samp03asvr_R4_win32\gamemodes \larp.pwn(277 : error 004: function "PlayerToPoint" is not implemented
C:\Users\pam\Desktop\samp03asvr_R4_win32\gamemodes \larp.pwn(2790) : error 004: function "PlayerToPoint" is not implemented
C:\Users\pam\Desktop\samp03asvr_R4_win32\gamemodes \larp.pwn(2794) : error 004: function "PlayerToPoint" is not implemented
C:\Users\pam\Desktop\samp03asvr_R4_win32\gamemodes \larp.pwn(279 : error 004: function "PlayerToPoint" is not implemented
C:\Users\pam\Desktop\samp03asvr_R4_win32\gamemodes \larp.pwn(2802) : error 004: function "PlayerToPoint" is not implemented
C:\Users\pam\Desktop\samp03asvr_R4_win32\gamemodes \larp.pwn(2806) : error 004: function "PlayerToPoint" is not implemented
C:\Users\pam\Desktop\samp03asvr_R4_win32\gamemodes \larp.pwn(2810) : error 004: function "PlayerToPoint" is not implemented
C:\Users\pam\Desktop\samp03asvr_R4_win32\gamemodes \larp.pwn(2814) : error 004: function "PlayerToPoint" is not implemented
C:\Users\pam\Desktop\samp03asvr_R4_win32\gamemodes \larp.pwn(281 : error 004: function "PlayerToPoint" is not implemented
C:\Users\pam\Desktop\samp03asvr_R4_win32\gamemodes \larp.pwn(2830) : error 004: function "PlayerToPoint" is not implemented

Any help?


Re: Twenty Six Errors... - TheGtaLover - 22.12.2009

Pawn Manual?


Re: Twenty Six Errors... - Zeromanster - 22.12.2009

Your missing a bracket. Good luck finding it. :P


Re: Twenty Six Errors... - TheGtaLover - 22.12.2009

Quote:
Originally Posted by zєяσмαиѕтєя
Your missing a bracket. Good luck finding it. :P
holy.... shit...


Re: Twenty Six Errors... - Correlli - 22.12.2009

Quote:
Originally Posted by zєяσмαиѕтєя
Your missing a bracket. Good luck finding it. :P
This error can happen without the missing bracket, like if you have forwarded the function and you're using it in your script but you haven't defined it.


Re: Twenty Six Errors... - TheGtaLover - 22.12.2009

So.. Like.. Okay, Im confussed. I need a bracket some where? or.. What?


Re: Twenty Six Errors... - Correlli - 22.12.2009

OK, here's the example of my post so you can understand what i've posted before:

Correct example:
pawn Код:
forward myFunction(value1, value2); /* forwarded */

public myFunction(value1, value2) /* defined */
{
  new
      value3;
  value3 = value1 + value2;
  return value3;
}

public OnPlayerConnect(playerid)
{
  printf("%i", myFunction(5, 15)); /* used */
  return true;
}
Wrong example:
pawn Код:
forward myFunction(value1, value2); /* forwarded */

public OnPlayerConnect(playerid)
{
  printf("%i", myFunction(5, 15)); /* used but NOT defined anywhere in this example */
  return true;
}



Re: Twenty Six Errors... - TheGtaLover - 22.12.2009

fixed, thanks