PDA

View Full Version : Put ring on LAbEL



Lesiosky
12-02-2015, 10:38 AM
Hi.

I'm trying to figure out how make my character put 'club ring' on Label which I would put before entering spawn. Same with soft boots.

Anyone could help me?

Regards!

ososzayat
12-02-2015, 04:50 PM
you can simply Add Script in walker and write: (XXXX = ring or boot id)
Self.Equip(XXXX, "feet")
Self.Equip(XXXX, "ring")

on lua using labels it should be like:
elseif (labelName == "SoftBoots") then
delayWalker(1500)
Self.Equip(XXXX, "feet")

elseif (labelName == "Ring") then
delayWalker(1500)
Self.Equip(XXXX, 'ring')