You are not logged in.

Applications: [GameMaster: OPEN] | [Volunteer Testers: OPEN]


This forum will be permanently shut down on Friday 13.07.2018
Please copy or save all important information from old forum before they will be deactivated
We have moved to new board. https://forum.runesofmagic.gameforge.com/Come join us.

  • "CharlieBananas" started this thread

Posts: 779

Location: USA

Occupation: Student

  • Send private message

1

Wednesday, February 15th 2012, 7:32am

[request] Select Menu for new Magic Wardrobe

With the release of the Magic Wardrobe today, I am wondering if someone more gifted than I would be able to make a drop down menu much like TitleSelect ( http://www.curse.com/addons/rom/titleselect ) does for titles except for the 1-10 slots of your magic wardrobe for easier access.

Much thanks in advance if you can make it a reality. ;)

2

Wednesday, February 15th 2012, 9:46pm

On a similar note, if anyone could even figure out what the functions are for this interface, and post them up that would be great. Specifically, the function call for choosing a preset, or the function call for opening the wardrobe interface.

3

Wednesday, February 15th 2012, 10:17pm

@thebadtouch09: Not sure if this is what you need, but I posted a macro from the EU for opening the interface earlier.
Here is the link: http://forum.us.runesofmagic.com/showthr…ll=1#post510395

4

Thursday, February 16th 2012, 1:06am

@thebadtouch09:
Selecting a preset, where index is 1 to 10:

Source code

1
CoolSuit_SetPageID( [I]index[/I] )

The buttons can also be dragged into the action bars.

@CharlieBananas:
I'm glad to see my work is still found useful. :cool: I'll look into your request. It shouldn't be a problem. I haven't played in over a year, though, so it may take a few days to shake off the rust.
Add-on author (retired, but continuing maintenance)

mrmisterwaa

Professional

Posts: 670

Location: Kuwait

  • Send private message

5

Thursday, February 16th 2012, 2:05am

Quoted from "Jaamosan;510467"

@thebadtouch09:
Selecting a preset, where index is 1 to 10:

Source code

1
CoolSuit_SetPageID( [I]index[/I] )

The buttons can also be dragged into the action bars.

@CharlieBananas:
I'm glad to see my work is still found useful. :cool: I'll look into your request. It shouldn't be a problem. I haven't played in over a year, though, so it may take a few days to shake off the rust.


Thank you for that,

I just modified the title-swap macro to this:

Source code

1
2
/run mytitles = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10} 
/run mytitleindex = mytitleindex or 0 mytitleindex = (mytitleindex + 1)  CoolSuit_SetPageID(mytitles[mytitleindex % #mytitles + 1])


Swaps between 1 -> 10 of your costume selection.

6

Thursday, February 16th 2012, 10:08pm

Tada!

QuickAttire, version 1.0.
Add-on author (retired, but continuing maintenance)

  • "CharlieBananas" started this thread

Posts: 779

Location: USA

Occupation: Student

  • Send private message

7

Friday, February 17th 2012, 9:55am

Thank you!!!!