• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

[Request]Lib Folder for forgotten server 0.3.7_SVN and login.lua

Na Amigo

The crazy girl
Joined
Jun 5, 2017
Messages
254
Solutions
3
Reaction score
17
Location
Egypt
i want lib folder working for the forgotten server 0.3.7_SVN because i have problems with god commands
and other bugs
Code:
[0:33:34.077] [Error - GlobalEvent Interface]
[0:33:34.077] data/globalevents/scripts/raid.lua:onThink
[0:33:34.077] Description:
[0:33:34.077] data/globalevents/scripts/raid.lua:214: attempt to call global 'isInArray' (a nil value)
[0:33:34.077] stack traceback:
[0:33:34.077]   data/globalevents/scripts/raid.lua:214: in function <data/globalevents/scripts/raid.lua:209>
[0:33:34.077] [Error - GlobalEvents::think] Couldn't execute event: raids

[0:33:45.280] [Error - TalkAction Interface]
[0:33:45.280] data/talkactions/scripts/teleporttiles.lua:onSay
[0:33:45.280] Description:
[0:33:45.280] data/lib/011-string.lua:11: attempt to call global 'isInArray' (a nil value)
[0:33:45.280] stack traceback:
[0:33:45.280]   data/lib/011-string.lua:11: in function 'explode'
[0:33:45.280]   data/talkactions/scripts/teleporttiles.lua:4: in function <data/talkactions/scripts/teleporttiles.lua:1>
KsXMvf.png
 
he gave you what you needed. the client version doesn't matter for a lib folder
all you need anyway is to just replace the function by putting it in your functions file in lib
LUA:
function isInArray(array, value)
    for k, v in pairs(array) do
        if v == value then
            return true
        end
    end
    return false
end
 
he gave you what you needed. the client version doesn't matter for a lib folder
all you need anyway is to just replace the function by putting it in your functions file in lib
LUA:
function isInArray(array, value)
    for k, v in pairs(array) do
        if v == value then
            return true
        end
    end
    return false
end
dude i want for version 8.6 not 9.46
 
dude i want for version 8.6 not 9.46
i told you the version doesn't matter, it's a lib folder.
the version only matters for items folder and map folder
the version is determined in the exe, it has nothing to do with the lib folder...
i could literally give you the same lib folder and say it's 8.6 when it's still the 9.46 one and it would still work lmfao
 
i told you the version doesn't matter, it's a lib folder.
the version only matters for items folder and map folder
the version is determined in the exe, it has nothing to do with the lib folder...
i could literally give you the same lib folder and say it's 8.6 when it's still the 9.46 one and it would still work lmfao
where to put it in 050-functions?
 
anywhere.
just make sure it's not inside of another function or in another piece of code
just put it down at the bottom
well it's working but i have some proplem why the message of the day didn't appear and why the last login didn't appear and why !online command don't work ?
 
well it's working but i have some proplem why the message of the day didn't appear and why the last login didn't appear and why !online command don't work ?
that's not an error related to the lib
that's just your data pack being garbage and broken lol
 
Back
Top