ingame macro

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
kuripot
Posts: 493
Joined: Mon Nov 07, 2011 9:14 pm

ingame macro

#1 Post by kuripot »

anyone can help me how to use this in ingame macro

player:target_Object();
sendMacro("ChoiceOption(1);");
yrest(1000)
sendMacro("ChoiceOption(1);");
yrest(1000)
User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: ingame macro

#2 Post by lisa »

Code: Select all

player:target_Object();
If you are just trying to target nearest enemy then

Code: Select all

/script TargetNearestEnemy()
or you could try

Code: Select all

TargetNearestFriend()
-------

Code: Select all

sendMacro("ChoiceOption(1);");
=

Code: Select all

/script ChoiceOption(1);
--------

Code: Select all

yrest(1000)
=
Impossible, they removed all pauses and rests from in game functions a long time ago. Might be able to set up some sort of loop for a period of time, maybe.

--------

To be honest I think you will struggle to do what you want in a Macro.
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
kuripot
Posts: 493
Joined: Mon Nov 07, 2011 9:14 pm

Re: ingame macro

#3 Post by kuripot »

i want to target given object like
target_Object("Tina");
target_Object(115808);
not sure in ID...
by the way i forgot to tell i want to target hidden object or NPC like Tina that give grand hammer by hidden in private server
User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: ingame macro

#4 Post by lisa »

yeah I seriously doubt you can do that with a macro, should work fine using bot though because bot targets objects via memory.
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
Post Reply