26 errors
#1

Hey,
I tried to do something in the GM. (I don't really remember what I did) and after copile I got 26 errors.
Please help me.
Those are the errors:

PHP код:
C:\Users\liorl\Desktop\Samp 0.3.7\gamemodes\NYRP.pwn(267) : warning 216nested comment
C
:\Users\liorl\Desktop\Samp 0.3.7\gamemodes\NYRP.pwn(316) : error 017undefined symbol "MAX_PLAYERVEHICLES"
C:\Users\liorl\Desktop\Samp 0.3.7\gamemodes\NYRP.pwn(316) : error 009invalid array size (negativezero or out of bounds)
C:\Users\liorl\Desktop\Samp 0.3.7\gamemodes\NYRP.pwn(440) : error 010invalid function or declaration
C
:\Users\liorl\Desktop\Samp 0.3.7\gamemodes\NYRP.pwn(530) : error 010invalid function or declaration
C
:\Users\liorl\Desktop\Samp 0.3.7\gamemodes\NYRP.pwn(560) : error 010invalid function or declaration
C
:\Users\liorl\Desktop\Samp 0.3.7\gamemodes\NYRP.pwn(1201) : error 021symbol already defined"PlayerVehicle"
C:\Users\liorl\Desktop\Samp 0.3.7\gamemodes\NYRP.pwn(1379) : error 010invalid function or declaration
C
:\Users\liorl\Desktop\Samp 0.3.7\gamemodes\NYRP.pwn(1457) : error 021symbol already defined"gItemList"
C:\Users\liorl\Desktop\Samp 0.3.7\gamemodes\NYRP.pwn(1465) : error 010invalid function or declaration
C
:\Users\liorl\Desktop\Samp 0.3.7\gamemodes\NYRP.pwn(1491) : error 010invalid function or declaration
C
:\Users\liorl\Desktop\Samp 0.3.7\gamemodes\NYRP.pwn(1527) : error 010invalid function or declaration
C
:\Users\liorl\Desktop\Samp 0.3.7\gamemodes\NYRP.pwn(1667) : error 010invalid function or declaration
C
:\Users\liorl\Desktop\Samp 0.3.7\gamemodes\NYRP.pwn(1757) : error 010invalid function or declaration
C
:\Users\liorl\Desktop\Samp 0.3.7\gamemodes\NYRP.pwn(1870) : error 017undefined symbol "PlayerSerial"
C:\Users\liorl\Desktop\Samp 0.3.7\gamemodes\NYRP.pwn(1870) : error 017undefined symbol "PlayerSerial"
C:\Users\liorl\Desktop\Samp 0.3.7\gamemodes\NYRP.pwn(1871) : error 017undefined symbol "PlayerSerial"
C:\Users\liorl\Desktop\Samp 0.3.7\gamemodes\NYRP.pwn(2027) : error 017undefined symbol "STORAGE_POSITION"
C:\Users\liorl\Desktop\Samp 0.3.7\gamemodes\NYRP.pwn(2029) : error 017undefined symbol "SerialFile"
C:\Users\liorl\Desktop\Samp 0.3.7\gamemodes\NYRP.pwn(2029) : error 017undefined symbol "STORAGE_POSITION"
C:\Users\liorl\Desktop\Samp 0.3.7\gamemodes\NYRP.pwn(2030) : error 017undefined symbol "SerialFile"
C:\Users\liorl\Desktop\Samp 0.3.7\gamemodes\NYRP.pwn(2031) : error 017undefined symbol "SerialFile"
C:\Users\liorl\Desktop\Samp 0.3.7\gamemodes\NYRP.pwn(2033) : error 017undefined symbol "Bans"
C:\Users\liorl\Desktop\Samp 0.3.7\gamemodes\NYRP.pwn(2034) : error 017undefined symbol "STORAGE_POSITION"
C:\Users\liorl\Desktop\Samp 0.3.7\gamemodes\NYRP.pwn(2036) : error 017undefined symbol "SerialFile"
C:\Users\liorl\Desktop\Samp 0.3.7\gamemodes\NYRP.pwn(2036) : error 017undefined symbol "STORAGE_POSITION"
C:\Users\liorl\Desktop\Samp 0.3.7\gamemodes\NYRP.pwn(2037) : error 017undefined symbol "SerialFile"
Compilation aborted.Pawn compiler 3.2.3664              Copyright (c1997-2006ITB CompuPhase
26 Errors

Codes
line 316:
PHP код:
new PlayerVehicle[MAX_PLAYERS][MAX_PLAYERVEHICLES]; 
line 440: There is nothing in this line (I don't know why there is an error here).
line 530: There is nothing in this line (I don't know why there is an error here).
line 560: There is nothing in this line (I don't know why there is an error here).
line 1201:
PHP код:
    "Landstalker""Bravura""Buffalo""Linerunner""Perrenial"
line 1379:
PHP код:
//---------MASK------------// 
line 1457:
PHP код:
400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430
line 1465: There is nothing in this line (I don't know why there is an error here).
line 1491: There is nothing in this line (I don't know why there is an error here).
line 1527: There is nothing in this line (I don't know why there is an error here).
line 1667:
PHP код:
= New York Police Department 
line 1757: There is nothing in this line (I don't know why there is an error here).
line 1870:
PHP код:
return PlayerSerial
line 1871:
PHP код:

line 2027: There is nothing in this line (I don't know why there is an error here).
line 2029:
PHP код:
fread(SerialFileBans); 
line 2030:
PHP код:
fclose(SerialFile); 
line 2031: There is nothing in this line (I don't know why there is an error here).
line 2033:
PHP код:
fremove(STORAGE_POSITION); 
line 2034: There is nothing in this line (I don't know why there is an error here).
line 2036:
PHP код:
fwrite(SerialFileBans); 
line 2037:
PHP код:
fclose(SerialFile); 
Reply
#2

Quote:
Originally Posted by V1Su4L
Посмотреть сообщение
I don't really remember what I did
That's why version control was invented.

Posting a list of errors is useless without the related code.
Reply
#3

Quote:
Originally Posted by Vince
Посмотреть сообщение
That's why version control was invented.

Posting a list of errors is useless without the related code.
I updated the topic with the codes.
Reply
#4

Quote:
Originally Posted by V1Su4L
Посмотреть сообщение
I updated the topic with the codes.
sorry, but is the problem on my eyes? or you didn't update it?
Reply
#5

Quote:
Originally Posted by XeonMaster
Посмотреть сообщение
sorry, but is the problem on my eyes? or you didn't update it?
I didn't, i'm still updating.
edit: Updated.
Reply
#6

Bump
Reply
#7

check your inbox
Reply
#8

Quote:
Originally Posted by XeonMaster
Посмотреть сообщение
check your inbox
I answered you in INBOX.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)