How to transport to a city?

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
Cindy
Posts: 237
Joined: Fri Sep 28, 2012 4:23 pm

How to transport to a city?

#1 Post by Cindy »

I am sorry, I searched high and low, and can't find a code example on how to use the transport to Logar, Reifort or Heffner (as opposed to Recall which takes you to wherever you set your recall point).

Please and thank you in advance.
User avatar
Ego95
Posts: 564
Joined: Tue Feb 28, 2012 12:38 pm
Contact:

Re: How to transport to a city?

#2 Post by Ego95 »

This is what you could use for recall for example:

Code: Select all

sendMacro("UseSkill(1,2);");
It opens the first page of your skill book (press k) and then uses the second skill (recall).

It depends on which crafting things you have learned if you want to teleport to logar, heffner, ...

For me

Code: Select all

sendMacro("UseSkill(1,8);");
does a transport to logar

Code: Select all

sendMacro("UseSkill(1,9);");
does a transport to reifort

Code: Select all

sendMacro("UseSkill(1,10);");
does a transport to heffner
Last edited by Ego95 on Mon Nov 05, 2012 6:23 pm, edited 1 time in total.
User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: How to transport to a city?

#3 Post by lisa »

well firstly, MOVED, don't post questions in the "Userfunctions, waypoint scripts, etc." section


Secondly, forum search got this.

http://www.solarstrike.net/phpBB3/viewt ... amp#p32713
Remember no matter you do in life to always have a little fun while you are at it ;)

wiki here http://www.solarstrike.net/wiki/index.php?title=Manual
User avatar
Ego95
Posts: 564
Joined: Tue Feb 28, 2012 12:38 pm
Contact:

Re: How to transport to a city?

#4 Post by Ego95 »

lisa wrote:Secondly, forum search got this.

http://www.solarstrike.net/phpBB3/viewt ... amp#p32713
Okay, lisas link is a better solution :D

Code: Select all

RoMScript('CastSpellByName("Transport:Heffner Camp")')
User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: How to transport to a city?

#5 Post by lisa »

yeah the position in skill book of the skills move around, so trying to use the numbers won't work for every character, cast the spell by name and you don't have to worry about where the skill is in skill book =)
Remember no matter you do in life to always have a little fun while you are at it ;)

wiki here http://www.solarstrike.net/wiki/index.php?title=Manual
Cindy
Posts: 237
Joined: Fri Sep 28, 2012 4:23 pm

Re: How to transport to a city?

#6 Post by Cindy »

Ah thanks, I was about to post that I found an example in the pumpkin script. Thanks! :)
Post Reply