this is the report I get from dedicated:
[00:15:32] LUA ERROR: maps/dm_quake.lua:259: attempt to index local 'file' (a nil value)
[00:15:32] -> maps/dm_quake.lua:259: in function 'update_report'
[00:15:32] -> maps/dm_quake.lua:312: in function 'endsequence'
[00:15:32] -> maps/dm_quake.lua:38: in function <maps/dm_quake.lua:35>
This is the function which supposedly is incorrect although it works perfectly by starting new game:
1
2
3
4
5
6
2
3
4
5
6
function update_report(report) 	msg(string.char(169)..'255255255Match report has been added to ranking history') 	local file = io.open("sys/areports.txt", "a") 	file:write(report.. "\n") 	file:close() end
How comes dedicated server can not do what starting new game can? Please help