Talk to forgee about that.
Printable View
I just realized that, in fixing another issue, I subtly broke this. My bad. In your XenoLuaLib.lua, replace Creature.New() with this one for now:
Code:function Creature.New(value)
local c = {}
setmetatable(c, Creature)
if (value == nil) then
c._id = -1
c._listindex = -1
c._name = ""
else
if (type(value) == 'string') then
c._name = value
c._id = getCreatureID(value)
c._listindex = getCreatureListIndex(c._id)
elseif (type(value) == 'number') then
if (value < 1300) then
value = getCreatureIDFromIndex(value)
end
c._id = value
c._listindex = getCreatureListIndex(c._id)
c._name = getCreatureName(c._listindex)
end
end
return c
end
Read the thread. Forgee's backpack opener is outdated and there are much better options.
Alright, thanks :)
Many thanks, will test and report back with results!
Edit: Works good with it being changed! Thanks
Mate how i can do 17972, 17977 id as walkable in xeno ?
bot show on diagnostick info as blocking and noobs try kill me :)