EDIT: Black Floor?


Code: Select all
function onCrystalClick(crystal)
if crystal.isActive and crystal.color == "green" then
for i=1,4 do
party:getChampion(i):insertItem(11-31,"grim_cap")
end
endCode: Select all
party:getChampion(i):insertItem(11-31,"grim_cap")Code: Select all
party:getChampion(i):insertItem(11-31,spawn("grim_cap"))Code: Select all
for i=1,4 do
for j=11,31 do
party:getChampion(i):insertItem(j,spawn("grim_cap"))
end
end
end