26 errors.
#1

Here are the errors we're getting:
Код:
C:\Users\ASUS\Desktop\SAMP Server\Eagle Gaming Roleplay\gamemodes\egrp.pwn(4941) : error 017: undefined symbol "GiftPlayer"
C:\Users\ASUS\Desktop\SAMP Server\Eagle Gaming Roleplay\gamemodes\egrp.pwn(5043) : error 004: function "ABroadCast" is not implemented
C:\Users\ASUS\Desktop\SAMP Server\Eagle Gaming Roleplay\gamemodes\egrp.pwn(5336) : error 004: function "SetPlayerToTeamColor" is not implemented
C:\Users\ASUS\Desktop\SAMP Server\Eagle Gaming Roleplay\gamemodes\egrp.pwn(5601) : error 004: function "SetPlayerWeapons" is not implemented
C:\Users\ASUS\Desktop\SAMP Server\Eagle Gaming Roleplay\gamemodes\egrp.pwn(5662) : error 004: function "ABroadCast" is not implemented
C:\Users\ASUS\Desktop\SAMP Server\Eagle Gaming Roleplay\gamemodes\egrp.pwn(5953) : error 017: undefined symbol "SaveBusiness"
C:\Users\ASUS\Desktop\SAMP Server\Eagle Gaming Roleplay\gamemodes\egrp.pwn(6196) : error 017: undefined symbol "LockCar"
C:\Users\ASUS\Desktop\SAMP Server\Eagle Gaming Roleplay\gamemodes\egrp.pwn(6200) : error 017: undefined symbol "UnLockCar"
C:\Users\ASUS\Desktop\SAMP Server\Eagle Gaming Roleplay\gamemodes\egrp.pwn(6285) : error 017: undefined symbol "LockCar"
C:\Users\ASUS\Desktop\SAMP Server\Eagle Gaming Roleplay\gamemodes\egrp.pwn(6289) : error 017: undefined symbol "UnLockCar"
C:\Users\ASUS\Desktop\SAMP Server\Eagle Gaming Roleplay\gamemodes\egrp.pwn(6374) : error 017: undefined symbol "LockCar"
C:\Users\ASUS\Desktop\SAMP Server\Eagle Gaming Roleplay\gamemodes\egrp.pwn(6378) : error 017: undefined symbol "UnLockCar"
C:\Users\ASUS\Desktop\SAMP Server\Eagle Gaming Roleplay\gamemodes\egrp.pwn(6463) : error 017: undefined symbol "LockCar"
C:\Users\ASUS\Desktop\SAMP Server\Eagle Gaming Roleplay\gamemodes\egrp.pwn(6467) : error 017: undefined symbol "UnLockCar"
C:\Users\ASUS\Desktop\SAMP Server\Eagle Gaming Roleplay\gamemodes\egrp.pwn(6552) : error 017: undefined symbol "LockCar"
C:\Users\ASUS\Desktop\SAMP Server\Eagle Gaming Roleplay\gamemodes\egrp.pwn(6556) : error 017: undefined symbol "UnLockCar"
C:\Users\ASUS\Desktop\SAMP Server\Eagle Gaming Roleplay\gamemodes\egrp.pwn(8378) : error 004: function "SendFamilyMessage" is not implemented
C:\Users\ASUS\Desktop\SAMP Server\Eagle Gaming Roleplay\gamemodes\egrp.pwn(8406) : error 004: function "SendFamilyMessage" is not implemented
C:\Users\ASUS\Desktop\SAMP Server\Eagle Gaming Roleplay\gamemodes\egrp.pwn(8593) : error 004: function "FixHour" is not implemented
C:\Users\ASUS\Desktop\SAMP Server\Eagle Gaming Roleplay\gamemodes\egrp.pwn(8640) : error 004: function "split" is not implemented
C:\Users\ASUS\Desktop\SAMP Server\Eagle Gaming Roleplay\gamemodes\egrp.pwn(8942) : error 004: function "split" is not implemented
C:\Users\ASUS\Desktop\SAMP Server\Eagle Gaming Roleplay\gamemodes\egrp.pwn(9133) : error 004: function "split" is not implemented
C:\Users\ASUS\Desktop\SAMP Server\Eagle Gaming Roleplay\gamemodes\egrp.pwn(10176) : error 004: function "SetPlayerWeapons" is not implemented
C:\Users\ASUS\Desktop\SAMP Server\Eagle Gaming Roleplay\gamemodes\egrp.pwn(11107) : error 017: undefined symbol "SaveGarages"
C:\Users\ASUS\Desktop\SAMP Server\Eagle Gaming Roleplay\gamemodes\egrp.pwn(11139) : error 017: undefined symbol "SaveGarages"
C:\Users\ASUS\Desktop\SAMP Server\Eagle Gaming Roleplay\gamemodes\egrp.pwn(11309) : error 017: undefined symbol "SenderName"

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


26 Errors.
Here are our includes:
Код:
#include <a_samp>
#include <dini>
#include <utils>
#include <zones>
#include <yom_buttons>
#include <streamer>
#include <cuff>
#include <foreach>
#include <SII>
We have about 100,000 lines of code and after one recent edit (we didn't touch any of those lines in the errors) we got these errors. What could they possible be so we can look out for it? We didn't touch anything in the lines where they say the errors are, so I have no idea what's going on.
Reply
#2

And these all functions are implemented ? If yes, you might did a mistake like missed a { / } or Blabla(blabla);abc
Check the lines which you recently edited.
Reply
#3

Quote:
Originally Posted by Dayrion
Посмотреть сообщение
And these all functions are implemented ? If yes, you might did a mistake like missed a { / } or Blabla(blabla);abc
Check the lines which you recently edited.
Thanks for your reply
Yeah, I wanted to know exactly which mistakes because all those functions are implemented so I'll look around for something like that thank you!
Reply
#4

Just an example to be sure you get the problem:
PHP код:
CMD:test2(playeridparams[])
{
    new 
str[90], Float:zR;
    
GetPlayerFacingAngle(playeridzR);
    
format(str90"facing angle : %f"zR);
    
SendClientMessage(playerid, -1str);
    return 
1;

Код:
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase
aaaaaaaaaaaand...

PHP код:
CMD:test2(playeridparams[])
{
    new 
str[90], Float:zR;
    
GetPlayerFacingAngle(playeridzR);
    
format(str90"facing angle : %f"zR);
    
SendClientMessage(playerid, -1str);
    return 
1
Get some errors :
Код:
 error 004: function "adminVeh" is not implemented
 error 017: undefined symbol "vSave"
 error 004: function "save" is not implemented
 error 017: undefined symbol "GetName"
 function "adminChat" is not implemented
[...]

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

26 Errors.
Reply
#5

Quote:
Originally Posted by Dayrion
Посмотреть сообщение
Just an example to be sure you get the problem:
PHP код:
CMD:test2(playeridparams[])
{
    new 
str[90], Float:zR;
    
GetPlayerFacingAngle(playeridzR);
    
format(str90"facing angle : %f"zR);
    
SendClientMessage(playerid, -1str);
    return 
1;

Код:
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase
aaaaaaaaaaaand...

PHP код:
CMD:test2(playeridparams[])
{
    new 
str[90], Float:zR;
    
GetPlayerFacingAngle(playeridzR);
    
format(str90"facing angle : %f"zR);
    
SendClientMessage(playerid, -1str);
    return 
1
Get some errors :
Код:
 error 004: function "adminVeh" is not implemented
 error 017: undefined symbol "vSave"
 error 004: function "save" is not implemented
 error 017: undefined symbol "GetName"
 function "adminChat" is not implemented
[...]

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

26 Errors.
I'll use that information, thanks
Reply
#6

Update: ran through multiple bracket checkers, fixed like two errors but I still get the same errors ;c
Reply
#7

Quote:
Originally Posted by KillingPigs123
Посмотреть сообщение
Update: ran through multiple bracket checkers, fixed like two errors but I still get the same errors ;c
Daamn. :/

You still have 26 errors ? I don't know any other way to solve this problem.
If you WANT, PM me your GM and I will check it but guarantee nothing.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)