23.01.2016, 13:50
In my experiance to convert a gamemode from Windows to Linux. (from a host POV)
If using npcs make all names lower case and use _ for spaces e.g. John Doe -> john_doe because linux kernel would render that as j^ohn%20d^oe and because that doesn't match the server it wont find the NPC.
Plugins just find the corresponding linux build version.
Mysql can sometimes have an issue across OS however i haven't seen any of these problems since R34 onwards.
on server.cfg on windows you can load plugins by just name (no extension) but on linux you have to have .so extension or they will not load.
make sure all files are present: filterscripts, includes etc.
Once you have done/checked the above it should work.
If using npcs make all names lower case and use _ for spaces e.g. John Doe -> john_doe because linux kernel would render that as j^ohn%20d^oe and because that doesn't match the server it wont find the NPC.
Plugins just find the corresponding linux build version.
Mysql can sometimes have an issue across OS however i haven't seen any of these problems since R34 onwards.
on server.cfg on windows you can load plugins by just name (no extension) but on linux you have to have .so extension or they will not load.
make sure all files are present: filterscripts, includes etc.
Once you have done/checked the above it should work.