Page 1 of 1

adding skills to action bar

Posted: Thu Jan 06, 2011 9:54 am
by lisa
Anyone know how to add skills to action bar/buttons?

If the bot can add a macro to 0 action button then surely we can get it to add specific skills to specific button spots =)

Edit:
I got this off wiki, it puts first skill from tab 2 as mouse pointer, just need to be able to click it onto the action bar now. Probably a better way though.

Code: Select all

/script DragSkillButton( 2, 1 );

Re: adding skills to action bar

Posted: Thu Jan 06, 2011 9:58 am
by rock5
lisa wrote:Anyone know how to add skills to action bar/buttons?

If the bot can add a macro to 0 action button then surely we can get it to add specific skills to specific button spots =)
Check out the functions in macro.lua.

Re: adding skills to action bar

Posted: Thu Jan 06, 2011 10:39 am
by lisa
Yeah I was starting to get a headache from reading it earlier lol

Best I can come up with so far is

Code: Select all

	setActionKeyToId(5, 491150);
Doesn't do the job though, I'm obviously missing something

Re: adding skills to action bar

Posted: Thu Jan 06, 2011 7:55 pm
by rock5
lisa wrote:Yeah I was starting to get a headache from reading it earlier lol

Best I can come up with so far is

Code: Select all

	setActionKeyToId(5, 491150);
Doesn't do the job though, I'm obviously missing something
I just tried that exact command. It set it to 'Flame'. I have to warn you, even though it has been set, the icon might not appear immediately. If you click on it it should appear but it should appear on it's own as the bot starts to use skills.

Re: adding skills to action bar

Posted: Thu Jan 06, 2011 9:12 pm
by lisa
That explains what I was missing lol
I spent ages on trying to get this to work and it was working the whole time, just wasn't showing icon lol
TY

Re: adding skills to action bar

Posted: Sat Feb 26, 2011 3:26 pm
by mike
How do I find the id of a skill?

Re: adding skills to action bar

Posted: Sat Feb 26, 2011 7:14 pm
by lisa
Easiest way I found was to go to this site
http://romdata.getbuffed.com/skill/list/4
and even though they don't say the id is ***** the links themselves have the skill id as part of the address. I just hover over the skill and the link shows in the status bar with the skill id.

Code: Select all

http://romdata.getbuffed.com/?s=491169
That is the link for plasma arrow and the skill id is 491169

Re: adding skills to action bar

Posted: Sun Feb 27, 2011 5:15 am
by mike
Thank you.