Errors After Mixing a filterscript and a gamemode
#6

Quote:
Originally Posted by Konstantinos
Посмотреть сообщение
Do not use y_ini and SII together. Both use similar names to some functions like INI_Open and INI_Close.

y_ini is recommended so get rid of that SII.
when just y_ini is included i got these errors :
Код:
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(492) : error 017: undefined symbol "INI_ReadInt"
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(493) : error 017: undefined symbol "INI_ReadInt"
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(494) : error 017: undefined symbol "INI_ReadInt"
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(496) : error 017: undefined symbol "INI_ReadInt"
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(497) : error 017: undefined symbol "INI_ReadInt"
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(498) : error 017: undefined symbol "INI_ReadInt"
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(499) : error 017: undefined symbol "INI_ReadInt"
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(500) : warning 202: number of arguments does not match definition
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(513) : error 035: argument type mismatch (argument 1)
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(514) : error 035: argument type mismatch (argument 1)
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(515) : error 035: argument type mismatch (argument 1)
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(516) : error 035: argument type mismatch (argument 1)
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(517) : error 035: argument type mismatch (argument 1)
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(518) : error 035: argument type mismatch (argument 1)
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(519) : error 035: argument type mismatch (argument 1)
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(520) : error 017: undefined symbol "INI_Save"
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(521) : warning 202: number of arguments does not match definition
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(512) : warning 204: symbol is assigned a value that is never used: "score"
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(2821) : error 017: undefined symbol "ClientMessage"
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(2837) : error 017: undefined symbol "ClientMessage"
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(2869) : error 017: undefined symbol "ClientMessage"
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(2952) : error 017: undefined symbol "ClientMessage"
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(2968) : error 017: undefined symbol "ClientMessage"
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(2989) : error 017: undefined symbol "ClientMessage"
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(3019) : error 017: undefined symbol "ClientMessage"
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(3035) : error 017: undefined symbol "ClientMessage"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


23 Errors.
and when SII Just includes :

Код:
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(154) : warning 213: tag mismatch
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(155) : error 017: undefined symbol "INI_SetTag"
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(156) : error 035: argument type mismatch (argument 1)
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(157) : error 035: argument type mismatch (argument 1)
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(158) : warning 202: number of arguments does not match definition
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(154) : warning 204: symbol is assigned a value that is never used: "acc"
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(166) : warning 213: tag mismatch
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(167) : error 017: undefined symbol "INI_SetTag"
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(168) : error 035: argument type mismatch (argument 1)
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(169) : error 035: argument type mismatch (argument 1)
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(170) : warning 202: number of arguments does not match definition
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(166) : warning 204: symbol is assigned a value that is never used: "file"
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(177) : error 017: undefined symbol "INI_Int"
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(1484) : error 017: undefined symbol "INI_ParseFile"
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(1484) : warning 215: expression has no effect
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(1484) : error 029: invalid expression, assumed zero
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(1484) : error 017: undefined symbol "extra"
D:\Downloads\samp03x_svr_R2_win32\gamemodes\battleship.pwn(1484) : fatal error 107: too many error messages on one line

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


11 Errors.
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 4 Guest(s)