Signup Now
Results 1 to 5 of 5
  1. #1
    Free User
    Join Date
    Jan 2015
    Posts
    7
    Reputation
    10
    Rep Power
    0

    Request: Moving Equipments action

    Hi, I have been looking a action that MOVES some items from my backpack to my main set.

    I'm working on the PIRATE OUTFIT QUEST and I need it to pass through the door where it asks to have the pirate set on you.

    I need a action that replace main set for pirate set then pirate set to the main set again.

    Please help.
    Yours Sharax,

    Hail to all Novian Players.

  2. #2

  3. #3
    Free User
    Join Date
    Jan 2015
    Posts
    7
    Reputation
    10
    Rep Power
    0
    Thanks

    Do you know the other names?
    rhand
    lhand
    helmet
    armor
    boots/feet
    shield?

    Please
    Yours Sharax,

    Hail to all Novian Players.

  4. #4
    Free User Diaxy's Avatar
    Join Date
    Jul 2014
    Posts
    1,091
    Reputation
    94
    Rep Power
    22
    local slotNames = {
    ["amulet"] = function() return {name = 'neck', obj = $neck} end,
    ["neck"] = function() return {name = 'neck', obj = $neck} end,
    ["weapon"] = function() return {name = 'rhand', obj = $rhand} end,
    ["rhand"] = function() return {name = 'rhand', obj = $rhand} end,
    ["shield"] = function() return {name = 'lhand', obj = $lhand} end,
    ["lhand"] = function() return {name = 'lhand', obj = $lhand} end,
    ["ring"] = function() return {name = 'finger', obj = $finger} end,
    ["finger"] = function() return {name = 'finger', obj = $finger} end,
    ["armor"] = function() return {name = 'chest', obj = $chest} end,
    ["chest"] = function() return {name = 'chest', obj = $chest} end,
    ["boots"] = function() return {name = 'feet', obj = $feet} end,
    ["feet"] = function() return {name = 'feet', obj = $feet} end,
    ["ammo"] = function() return {name = 'belt', obj = $belt} end,
    ["belt"] = function() return {name = 'belt', obj = $belt} end,
    ["helmet"] = function() return {name = 'head', obj = $head} end,
    ["head"] = function() return {name = 'head', obj = $head} end,
    ["legs"] = function() return {name = 'legs', obj = $legs} end,
    }

  5. #5
    Free User
    Join Date
    Jan 2015
    Posts
    7
    Reputation
    10
    Rep Power
    0
    Thanks Diaxy,
    problem solved.

    Please give Diaxy some reputation if this thread helps you as well.
    Yours Sharax,

    Hail to all Novian Players.

 

 

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •