sscanf icon indicating copy to clipboard operation
sscanf copied to clipboard

Problems with "_ALS" error using 2.11.4

Open marcoguzman0 opened this issue 3 years ago • 0 comments

Hi there! I have some errors after compile my gamemode using sscanf 2.11.4

C:\Users\marco\Desktop\Server RP\ServerRP.pwn:99 (error) undefined symbol "_ALS"; did you mean "ALL"? C:\Users\marco\Desktop\Server RP\ServerRP.pwn:99 (error) invalid expression, assumed zero C:\Users\marco\Desktop\Server RP\ServerRP.pwn:99 (error) undefined symbol "_ALS_go" C:\Users\marco\Desktop\Server RP\ServerRP.pwn:99 (fatal) too many error messages on one line Build encountered fatal error

The code in the gamemode is this...

public OnGameModeExit() { for (new i = 0, j = GetPlayerPoolSize(); i <= j; i++) { if (IsPlayerConnected(i)) { OnPlayerDisconnect(i, 1); // This is the line 99 } } mysql_close(g_SQL); return 1; }

What should I do to fix it? I apologize for my poor English :s

marcoguzman0 avatar Apr 18 '22 19:04 marcoguzman0