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.

1

Sunday, October 18th 2015, 1:53am

macros for the "new" title system?

Do you guys have any simple macros to swap titles in the "new" title system (the one with daily red/yellow/green/blue quests for reputation etc.)?

I'm looking for an equivalent of the macros to switch "normal" titles (like "SetTitleRequest(530427)" but I don't mind if it's more complex). It takes ages to find back the best titles (even if you know which exactly titles you want to select).

I cannot use AncillaryTitleSelect, cause I don't use ZZInfobar. I've tried to dig into what this addon is doing, but I'm close to giving up (esp. that without having it running it's sometimes arcane what a specific code is doing... I cannot simply add and run any debug code, for example, if I don't have it running).
>>>> >>>> >>>>
>>>>
>>>> Please, bring back (bound if there is no other option) dias to AH! :thumbsup:
>>>> If you do this we will all love you forever. ;)
>>>>
>>>> >>>> >>>>

2

Tuesday, November 17th 2015, 10:03pm

OK, got it: the call is SetATF_Title(), the argument is the same title id as used by SetTitleRequest. You can call all four SetATF_Title without any waiting etc.

So, for example, I've changed my physical (story-teller) macro from simple

Source code

1
SetTitleRequest(530724)

to

Source code

1
2
3
4
5
6
7
8
SetTitleRequest(530724)

SetATF_Title(530347); -- 253 dex, 540 patt
SetATF_Title(530841);  -- 81 pdmg, 540 patt
-- in the system group there are nice pvp titles; but for pve the best I have is lvl3:
SetATF_Title(530043); -- 360 patt (lvl3)
-- in the last group there are nice +pt/+xp/drop titles; but for pve the best I have is:
SetATF_Title(530123); -- 152 all attr

ofc. what you would use depends on what titles you have. For example, for me another option for the first group would be

Source code

1
SetATF_Title(530219); -- 253 str, 540 patt

and for the second group any of

Source code

1
2
3
4
5
6
7
8
9
10
11
SetATF_Title(530841);  -- 81 pdmg, 540 patt
-- or
-- SetATF_Title(530821);  -- 152 all attr, 540 patt
-- or
-- SetATF_Title(530843);  -- 81 pdmg, 253 dex
-- or
-- SetATF_Title(530674);  -- 81 pdmg, 253 str
-- or
-- SetATF_Title(530931);  -- 162 crit, 253 dex
-- or
-- SetATF_Title(530971); -- 162 crit, 253 str


For magical I use now

Source code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
SetTitleRequest(530752)

SetATF_Title(530009);  -- 169 int, 360 matt (lvl3)

SetATF_Title(530951);  -- 4% fire power
-- or:
-- SetATF_Title(530951);  -- 540 matt, 162 mcrit
-- or:
-- SetATF_Title(530844);  -- 81 mdmg, 253 int
-- SetATF_Title(530673);  -- 81 mdmg, 253 int

-- in the system group there are nice pvp titles; but for pve the best I have is lvl2:
SetATF_Title(530046);  -- 240 matt

-- in the last group there are nice +pt/+xp/drop titles; but for pve the best I have is:
SetATF_Title(530123);  -- 152 all attr


Ofc, whether you would "feed" the new title system is a different story, but if it stays starved, chaging the AFT titles neither hurts nor helps (so I simply change automatically as in the macros above).

PS: Oh, yeah: I use macro helper addon. If you don't and you would like to do the above in a simple macro you need to add "/run " in front of every line without "--" and remove every "--" and the text behind it.
>>>> >>>> >>>>
>>>>
>>>> Please, bring back (bound if there is no other option) dias to AH! :thumbsup:
>>>> If you do this we will all love you forever. ;)
>>>>
>>>> >>>> >>>>

Similar threads