Twenty Six Errors...
#1

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?
Reply
#2

Pawn Manual?
Reply
#3

Your missing a bracket. Good luck finding it. :P
Reply
#4

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

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.
Reply
#6

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

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;
}
Reply
#8

fixed, thanks
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)