Help please, please
#1

Код:
C:\Users\sean mcelholm\Desktop\SAN-RP Scripting - PRIVATE\gamemodes\sasrp.pwn(2119) : error 004: function "ABroadCast" is not implemented
C:\Users\sean mcelholm\Desktop\SAN-RP Scripting - PRIVATE\gamemodes\sasrp.pwn(2158) : error 004: function "SendFamilyMessage" is not implemented
C:\Users\sean mcelholm\Desktop\SAN-RP Scripting - PRIVATE\gamemodes\sasrp.pwn(2186) : error 004: function "SendFamilyMessage" is not implemented
C:\Users\sean mcelholm\Desktop\SAN-RP Scripting - PRIVATE\gamemodes\sasrp.pwn(2357) : error 004: function "FixHour" is not implemented
C:\Users\sean mcelholm\Desktop\SAN-RP Scripting - PRIVATE\gamemodes\sasrp.pwn(4613) : error 004: function "ProxDetector" is not implemented
C:\Users\sean mcelholm\Desktop\SAN-RP Scripting - PRIVATE\gamemodes\sasrp.pwn(4626) : error 004: function "ProxDetector" is not implemented
C:\Users\sean mcelholm\Desktop\SAN-RP Scripting - PRIVATE\gamemodes\sasrp.pwn(4856) : error 004: function "SendFamilyMessage" is not implemented
C:\Users\sean mcelholm\Desktop\SAN-RP Scripting - PRIVATE\gamemodes\sasrp.pwn(4871) : error 004: function "ProxDetector" is not implemented
C:\Users\sean mcelholm\Desktop\SAN-RP Scripting - PRIVATE\gamemodes\sasrp.pwn(5928) : error 004: function "ProxDetector" is not implemented
C:\Users\sean mcelholm\Desktop\SAN-RP Scripting - PRIVATE\gamemodes\sasrp.pwn(6252) : error 004: function "SendFamilyMessage" is not implemented
C:\Users\sean mcelholm\Desktop\SAN-RP Scripting - PRIVATE\gamemodes\sasrp.pwn(8003) : error 004: function "SendIRCMessage" is not implemented
C:\Users\sean mcelholm\Desktop\SAN-RP Scripting - PRIVATE\gamemodes\sasrp.pwn(8025) : error 004: function "SendIRCMessage" is not implemented
C:\Users\sean mcelholm\Desktop\SAN-RP Scripting - PRIVATE\gamemodes\sasrp.pwn(8312) : error 004: function "OOCOff" is not implemented
C:\Users\sean mcelholm\Desktop\SAN-RP Scripting - PRIVATE\gamemodes\sasrp.pwn(8325) : error 004: function "OOCOff" is not implemented
C:\Users\sean mcelholm\Desktop\SAN-RP Scripting - PRIVATE\gamemodes\sasrp.pwn(8345) : error 004: function "OOCOff" is not implemented
C:\Users\sean mcelholm\Desktop\SAN-RP Scripting - PRIVATE\gamemodes\sasrp.pwn(8353) : error 004: function "OOCOff" is not implemented
C:\Users\sean mcelholm\Desktop\SAN-RP Scripting - PRIVATE\gamemodes\sasrp.pwn(8395) : error 004: function "ProxDetector" is not implemented
C:\Users\sean mcelholm\Desktop\SAN-RP Scripting - PRIVATE\gamemodes\sasrp.pwn(8673) : error 004: function "SendCopMessage" is not implemented
C:\Users\sean mcelholm\Desktop\SAN-RP Scripting - PRIVATE\gamemodes\sasrp.pwn(8675) : error 004: function "SendCopMessage" is not implemented
C:\Users\sean mcelholm\Desktop\SAN-RP Scripting - PRIVATE\gamemodes\sasrp.pwn(8686) : error 004: function "SendCopMessage" is not implemented
C:\Users\sean mcelholm\Desktop\SAN-RP Scripting - PRIVATE\gamemodes\sasrp.pwn(8688) : error 004: function "SendCopMessage" is not implemented
C:\Users\sean mcelholm\Desktop\SAN-RP Scripting - PRIVATE\gamemodes\sasrp.pwn(8813) : error 004: function "SendFamilyMessage" is not implemented
C:\Users\sean mcelholm\Desktop\SAN-RP Scripting - PRIVATE\gamemodes\sasrp.pwn(8832) : error 004: function "SendFamilyMessage" is not implemented
C:\Users\sean mcelholm\Desktop\SAN-RP Scripting - PRIVATE\gamemodes\sasrp.pwn(9120) : error 004: function "PlayerFixRadio" is not implemented
C:\Users\sean mcelholm\Desktop\SAN-RP Scripting - PRIVATE\gamemodes\sasrp.pwn(9494) : error 004: function "SendFamilyMessage" is not implemented
C:\Users\sean mcelholm\Desktop\SAN-RP Scripting - PRIVATE\gamemodes\sasrp.pwn(11081) : error 004: function "ABroadCast" is not implemented

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


26 Errors.
How can I know where the problem is?
Reply
#2

I know I should not be bumping, but is there any way to fix a "is not implemented" error?
Reply
#3

Give us a code of the last thing you did. before getting those errors.
Reply
#4

Looks like you have missed a ';' in the whole of your script. Try looking through it very carefully, to find a missing ';'

> it could also be a missing bracket ) }
Reply
#5

Quote:
Originally Posted by lewismichaelbbc
Посмотреть сообщение
Looks like you have missed a ';' in the whole of your script. Try looking through it very carefully, to find a missing ';'

> it could also be a missing bracket ) }
It's like most thing what causes those errors, Or you will have a missing include.
Yes as he said have one more careful look.
Reply
#6

i have 2 ideeas: 1. do you have all that function or
you typed ] or [ , instead of { } making getting 26 nice errors....
Reply
#7

This error has to do with the forwarding a public function. See if forwarding them works..
Reply
#8

Quote:
Originally Posted by Kevin FOx
Посмотреть сообщение
Give us a code of the last thing you did. before getting those errors.
Too much errors to give a code, and those error lines have got no error in them.

Quote:
Originally Posted by lewismichaelbbc
Посмотреть сообщение
Looks like you have missed a ';' in the whole of your script. Try looking through it very carefully, to find a missing ';'

> it could also be a missing bracket ) }
Ok, I'll search.

Quote:
Originally Posted by Majed
Посмотреть сообщение
It's like most thing what causes those errors, Or you will have a missing include.
Yes as he said have one more careful look.
Same answer.
Reply
#9

That's all about forward functions, do you even have "forward ProxDetector();" and so on? if not add it, and fix the other fuctions not implemented.


Edit: Then you missing an include.
Reply
#10

Quote:
Originally Posted by HarlemSAMP
Посмотреть сообщение
That's all about forward functions, do you even have "forward ProxDetector();" and so on? if not add it, and fix the other fuctions not implemented.
They are all forwarded, but the errors are still the same.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)