
Originally Posted by
Stusse
Aight well, you got any ideas what can be wrong since that's exactly what I'm doing...
Thanks
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

Originally Posted by
Junglemaster1992
I use forgee.lua bpopener, but when Xeno wants to open the bp's it stucks at a bp, before update I hadnt this problem :///
Greetings
Read the thread. Forgee's backpack opener is outdated and there are much better options.