View Single Post
  #4  
Unread 11-12-2011, 04:54 PM
MrJackdaw's Avatar
MrJackdaw MrJackdaw is offline
The Undying
Interface Author - Click to view interfaces
 
Join Date: Feb 2009
Location: Lancaster, England
Posts: 249
Quote:
local type, data = shortcut:GetType(), shortcut:GetData()
Is the important part here and the data you need - this is the hex code for the skill and the type of skill. These are also what you use when you set a skill.

Do you use a bar plugin at all? If you do you should be able to extract the codes you need from its save data.

Alternatively

Quote:
shortcut= quickslot:GetShortcut()
type, data = shortcut:GetType(), shortcut:GetData()
Will get you the data you need from one quickslot that you build. Obviously, save etc as you wish!
__________________
************************************************** ************************************************** **
"Our ideals may never be realised, But they indicate what we are trying to do." Dick Tahta

Last edited by MrJackdaw : 11-12-2011 at 06:11 PM.
Reply With Quote