• 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!

Lua Compat

EwR

New Member
Joined
Aug 28, 2013
Messages
94
Reaction score
3
What happen if i dont have compa.lua just global.lua and libs.lua
im using 1.0 tfs
 
What do you mean?
The file compat.lua is used so TFS 0.2 functions also work on TFS 1.0, without that the 0.2 functions wouldn't work in 1.0, so you need to have every script with TFS 1.0 functions/metatables.
If you want to add compat.lua, you can just add it where global.lua is and then add this at the top of global.lua.
Code:
dofile('data/compat.lua')
 
Back
Top