06.05.2016, 04:31
Now dialogs works fine, thanks!
I have another suggestion: In the default shoebill linux package, the startup.sh looks like:
As you see, the "path" is set to $CLIENT_JRE_PATH, $SERVER_JRE_PATH. However, using this way, the server will use the client VM instead of the server VM. So the suggestion would be to change the order (put the server VM path first). That should perform better.
Other issue (on linux, haven't tested on windows): onDisable (from my gamemode) is not called when I kill the process using CTRL+C or using "pkill samp03svr". The only way to call onDisable is to use rcon "exit" command. This is very important, since most cleanup is done here.
I dont know why it happens, I even dont know if it happens on shoebill or is a sampgdk problem. Anyway, using a blank gamemode, OnGameModeExit is working fine when killing the process.
I have another suggestion: In the default shoebill linux package, the startup.sh looks like:
Код:
export LD_LIBRARY_PATH=.:$JRE_HOME/lib/i386:$JRE_HOME/lib/i386/client:$JRE_HOME/lib/i386/server:/usr/local/lib
Other issue (on linux, haven't tested on windows): onDisable (from my gamemode) is not called when I kill the process using CTRL+C or using "pkill samp03svr". The only way to call onDisable is to use rcon "exit" command. This is very important, since most cleanup is done here.
I dont know why it happens, I even dont know if it happens on shoebill or is a sampgdk problem. Anyway, using a blank gamemode, OnGameModeExit is working fine when killing the process.