Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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!
Now it does not give me an error in the console, and when I ask for the addon it does not tell me that I do not have the necessary items, it just does not tell me anything and there is no error in the console
After 'second demon outfit addon' the console show me this error
Lua Script Error: [Npc interface]
data/npc/scripts/addons.lua:onCreatureSay
data/npc/scripts/addons.lua:264: attempt to compare number with nil
stack traceback:
[C]: in function '__lt'...
So far, this is what I have, only that I have problems with maxhealth and maxmana, since the code is in login, I have a bug that every time I log out and login, my life goes up permanently and increases every time I log out and login.
could you help me @Xikini ?
local BONUSES =...
local BONUSES = CreatureEvent("BONUSADDONS")
male = {128, 129, 130}
female = {136, 137, 138}
function BONUSES.onLogin(player)
local Outfits = 0
local sex = player:getSex()
if sex == 0 then
for i, looktype in pairs(female) do
if...
I did not understand much your script man, but it gave me a good idea, just putting all the looktypes distributed by gender
local BONUSES = CreatureEvent("BONUSADDONS")
male = {128, 129, 130}
female = {136, 137, 138}
function BONUSES.onLogin(player)
local Outfits = 0
local sex =...