Like title states, anyone knows how to now its changed to 3 classes?
Botje
Change class, howto in new system with 3 classes?
Re: Change class, howto in new system with 3 classes?
perhaps someone with more knwoledge then me on lua could take a look at how this addon does switch?
thanx in advance mates.
Botje
thanx in advance mates.
Botje
- Attachments
-
- ClassExchangeHelper.rar
- (5.76 KiB) Downloaded 98 times
Re: Change class, howto in new system with 3 classes?
I think in the end all you need is the in game function "ExchangeClass".
* Make sure you don't have any addons, that auto switch class, enabled.
* Target the npc.
* Select option to change class.
* Issue command
* Make sure you don't have any addons, that auto switch class, enabled.
* Target the npc.
* Select option to change class.
* Issue command
Code: Select all
RoMScript("ExchangeClass("..class1..","..class2..")")- where 'class1' and 'class2' are the first and second class you want to set.
- Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
- I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
- How to: copy and paste in micromacro
________________________
Quote:- “They say hard work never hurt anybody, but I figure, why take the chance.”
- Ronald Reagan
Re: Change class, howto in new system with 3 classes?
like,
RoMScript("ExchangeClass("..1..","..3..")")
?
botje
RoMScript("ExchangeClass("..1..","..3..")")
?
botje
Re: Change class, howto in new system with 3 classes?
The example I did was using varables but if you know you want to change to 1,3 then this will suffice
Although, what you wrote would also work.
Please note that the numbers used for the classes in game are different to the ones used by the bot. I'm not sure why. The bot starts at '1' for warrior and the game starts at 2 for warrior. So to change to warrior/rogue you could use
Code: Select all
RoMScript("ExchangeClass(1,3)")Please note that the numbers used for the classes in game are different to the ones used by the bot. I'm not sure why. The bot starts at '1' for warrior and the game starts at 2 for warrior. So to change to warrior/rogue you could use
Code: Select all
RoMScript("ExchangeClass("..CLASS_WARRIOR+1..","..CLASS_ROGUE+1..")")- Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
- I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
- How to: copy and paste in micromacro
________________________
Quote:- “They say hard work never hurt anybody, but I figure, why take the chance.”
- Ronald Reagan
Re: Change class, howto in new system with 3 classes?
thanx mate, and i proberly know why were using different numbers, ingame GM is class 1, which we dont use obvious 
Botje
Botje