

In the end I found two scenes that really have spirit. So that fulfills a long forgotten request by
neikun and kuningas.
Code: Select all
onEquipItem = function(champion,slot)
name_counter:decrement()
end,
Code: Select all
function namer()
if name_counter_2:getValue() == 0 and
champion:getItem(7) or
champion:getItem(8) == "name_blade" then
champion:setName(name)
end
end
Code: Select all
onEquipItem = function(champion,slot)
champion:setName("Name")
end,
onUnequipItem = function(champion, slot)
if slot == 7 or
slot == 8 then
equipStopper.stopUnequip(champion, slot)
end
end,