please help me why i get this error
PHP Code:
Welcome to the AMX Mod X 1.8.1-300 Compiler.
Copyright (c) 1997-2006 ITB CompuPhase, AMX Mod X Team
Warning: Loose indentation on line 74
Warning: Unreachable code on line 75
Warning: Loose indentation on line 75
Warning: Loose indentation on line 98
Warning: Function "client_authorizedold" should return a value on line 103
Warning: Loose indentation on line 123
Error: Invalid expression, assumed zero on line 127
Warning: Loose indentation on line 132
Warning: Loose indentation on line 314
Warning: Loose indentation on line 315
1 Error.
Could not locate output file C:\****.amx (compile failed).
PHP Code:
public client_authorized(id) {
if (is_user_bot(id))
return PLUGIN_CONTINUE
const LEN = 32
new authid[LEN + 1], name[32]
get_user_authid(id, authid, LEN)
get_user_name(id, name, 31)
g_regged[id] = checkreg(authid, name)
if (g_regged[id])
server_print("[%s] %s (%s) is registered.", PLUGINNAME, name, authid)
if (get_cvar_num(CVAR_KICKNONREGGED)) {
new regurl[128]
get_cvar_string(CVAR_REGURL, regurl, 127)
server_cmd("kick #%d your Steam ID %s is been blacklisted at %s .", get_user_userid(id), authid, regurl)
else {
server_print("[%s] %s (%s) is not blacklisted.", PLUGINNAME, name, authid)
}
}
return PLUGIN_CONTINUE
}