Log in

View Full Version : SSA and might Ring equip



edwinnowak41
03-18-2016, 02:13 AM
can someone write a script that will assume amulet and ring as they always disappear?

edwinnowak41
03-25-2016, 09:38 AM
bump !

Jontor
03-26-2016, 12:02 PM
local ring = "might ring"
local amulet = "stone skin amulet"

Module.New("", function()
if (Self.Amulet().id ~= Item.GetItemIDFromDualInput(amulet)) then
Self.Equip(amulet, "amulet")
end

if (Self.Ring().id ~= Item.GetRingActiveID(Item.GetItemIDFromDualInput(r ing))) then
Self.Equip(amulet, "ring")
end
end)

edwinnowak41
04-11-2016, 01:09 PM
thanks a lot bro.

Azuel
10-08-2016, 09:20 AM
if (Self.Ring().id ~= Item.GetRingActiveID(Item.GetItemIDFromDualInput(r ing))) then
Self.Equip(amulet, "ring")


Of course you mean:



if (Self.Ring().id ~= Item.GetRingActiveID(Item.GetItemIDFromDualInput(r ing))) then
Self.Equip(ring, "ring")


Otherwise bot try to set up in a place of the amulet.
But i think all visitors see the difference in script ;)