Module:Mazunki/Monsters: Difference between revisions

m
missed column
mNo edit summary
m (missed column)
Line 80: Line 80:
local bones = Items.getItemByID(monster.bones)  
local bones = Items.getItemByID(monster.bones)  
if bones ~= nil and bones.prayerPoints then
if bones ~= nil and bones.prayerPoints then
table.insert(rowTxt, tostring(true))
table.insert(rowTxt, bones.name)
table.insert(rowTxt, bones.name)
table.insert(rowTxt, bones.prayerPoints)
table.insert(rowTxt, bones.prayerPoints)
table.insert(rowTxt, tostring(false))
table.insert(rowTxt, tostring(nil))
table.insert(rowTxt, tostring(0))
table.insert(rowTxt, tostring(0))
elseif bones ~= nil and monster.boneQty then
elseif bones ~= nil and monster.boneQty then
table.insert(rowTxt, tostring(false))
table.insert(rowTxt, tostring(false))
table.insert(rowTxt, tostring(nil))
table.insert(rowTxt, tostring(0))
table.insert(rowTxt, tostring(0))
Line 93: Line 96:
else
else
table.insert(rowTxt, tostring(false))
table.insert(rowTxt, tostring(false))
table.insert(rowTxt, tostring(nil))
table.insert(rowTxt, tostring(0))
table.insert(rowTxt, tostring(0))
table.insert(rowTxt, tostring(false))
table.insert(rowTxt, tostring(nil))
table.insert(rowTxt, tostring(0))
table.insert(rowTxt, tostring(0))
end
end
892

edits