• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[OTCV8] error.log but how i can debug where is problem

Malek

Member
Joined
Dec 25, 2009
Messages
101
Reaction score
5
Hello, can someone help me or give me a hint on how to debug error logs in my OT client? I'm working on its modification, and unfortunately, I didn't make a commit while having many files open. Now, I don't know at which point I made a mistake because previously, the client didn't generate any error logs. After about 30 minutes, I noticed that an error log appeared, and I have no idea what exactly went wrong. How can I find out where the error is?

Code:
GPU ANGLE (NVIDIA GeForce RTX 2080 Ti Direct3D11 vs_5_0 ps_5_0) (Google Inc.)
OpenGL OpenGL ES 3.0.0 (ANGLE 2.1.0.54a3d7cbcadb)
[Atlas] Texture size is: 4096x4096 (max: 16384x16384)
Found work dir at 'C:/Users/Jakub/Desktop/test/test — kopia/'
== application started at Mar 01 2025 23:53:08
Test Client 2.6 rev 0 (alpha) made by ************ built on Nov 16 2020 for arch x86
Exiting application..
Błąd: modules.game_interface jest nil
Błąd: modules.game_interface jest nil
Błąd: modules.game_interface jest nil
Błąd: modules.game_interface jest nil
Błąd: modules.game_interface jest nil
Błąd: modules.game_interface jest nil
Błąd: modules.game_interface jest nil
Błąd: modules.game_interface jest nil
Błąd: modules.game_interface jest nil
Błąd: modules.game_interface jest nil
Błąd: modules.game_interface jest nil
Błąd: modules.game_interface jest nil
ERROR: Lua error: /modules/game_walking/walking.lua:175: attempt to index field 'game_interface' (a nil value)
stack traceback:
    [C]: in function '__index'
    /modules/game_walking/walking.lua:175: in function 'unbindTurnKey'
    /modules/game_walking/walking.lua:83: in function 'unbindKeys'
    /modules/game_walking/walking.lua:41: in function 'terminate'
    /modules/client_topmenu/topmenu.otmod:10:[@onUnload]:1: in main chunk
ERROR: Unable to unload module 'client_topmenu': LUA ERROR:
/modules/game_walking/walking.lua:175: attempt to index field 'game_interface' (a nil value)
stack traceback:
    [C]: in function '__index'
    /modules/game_walking/walking.lua:175: in function 'unbindTurnKey'
    /modules/game_walking/walking.lua:83: in function 'unbindKeys'
    /modules/game_walking/walking.lua:41: in function 'terminate'
    /modules/client_topmenu/topmenu.otmod:10:[@onUnload]:1: in main chunk
WARNING: widget 'widget490' was not explicitly destroyed

I didn't edit anything in the topmenu or walking, but I understand that the issue is that the game interface didn't load properly. I made edits there as well, but I copied a working game interface from the client backup, and the log is still being generated. So I guess the problem is not on the game_interface side.
 
bump! I really need to find the source that's causing the error.log to keep dumping.
 
Did you modify your topmenu module?

ERROR: Unable to unload module 'client_topmenu': LUA ERROR:

I would assume this is the root cause, most likely you are referencing a nil variable somewhere in there.
It would be nice if you figured out when this happens, try reloading your modules and see if the same errors instantly occurs

If you need help to investigate this, just send me a pm
 
Hello, can someone help me or give me a hint on how to debug error logs in my OT client? I'm working on its modification, and unfortunately, I didn't make a commit while having many files open. Now, I don't know at which point I made a mistake because previously, the client didn't generate any error logs. After about 30 minutes, I noticed that an error log appeared, and I have no idea what exactly went wrong. How can I find out where the error is?

Code:
GPU ANGLE (NVIDIA GeForce RTX 2080 Ti Direct3D11 vs_5_0 ps_5_0) (Google Inc.)
OpenGL OpenGL ES 3.0.0 (ANGLE 2.1.0.54a3d7cbcadb)
[Atlas] Texture size is: 4096x4096 (max: 16384x16384)
Found work dir at 'C:/Users/Jakub/Desktop/test/test — kopia/'
== application started at Mar 01 2025 23:53:08
Test Client 2.6 rev 0 (alpha) made by ************ built on Nov 16 2020 for arch x86
Exiting application..
Błąd: modules.game_interface jest nil
Błąd: modules.game_interface jest nil
Błąd: modules.game_interface jest nil
Błąd: modules.game_interface jest nil
Błąd: modules.game_interface jest nil
Błąd: modules.game_interface jest nil
Błąd: modules.game_interface jest nil
Błąd: modules.game_interface jest nil
Błąd: modules.game_interface jest nil
Błąd: modules.game_interface jest nil
Błąd: modules.game_interface jest nil
Błąd: modules.game_interface jest nil
ERROR: Lua error: /modules/game_walking/walking.lua:175: attempt to index field 'game_interface' (a nil value)
stack traceback:
    [C]: in function '__index'
    /modules/game_walking/walking.lua:175: in function 'unbindTurnKey'
    /modules/game_walking/walking.lua:83: in function 'unbindKeys'
    /modules/game_walking/walking.lua:41: in function 'terminate'
    /modules/client_topmenu/topmenu.otmod:10:[@onUnload]:1: in main chunk
ERROR: Unable to unload module 'client_topmenu': LUA ERROR:
/modules/game_walking/walking.lua:175: attempt to index field 'game_interface' (a nil value)
stack traceback:
    [C]: in function '__index'
    /modules/game_walking/walking.lua:175: in function 'unbindTurnKey'
    /modules/game_walking/walking.lua:83: in function 'unbindKeys'
    /modules/game_walking/walking.lua:41: in function 'terminate'
    /modules/client_topmenu/topmenu.otmod:10:[@onUnload]:1: in main chunk
WARNING: widget 'widget490' was not explicitly destroyed

I didn't edit anything in the topmenu or walking, but I understand that the issue is that the game interface didn't load properly. I made edits there as well, but I copied a working game interface from the client backup, and the log is still being generated. So I guess the problem is not on the game_interface side.
The best thing you can do in OTClient is to revert back to the changes.
 

Similar threads

Back
Top