Algorithm and way to proceed very inspired on :
http://www.rompros.com/rom-guides/2137- ... emote.html
Search found 8 matches
- Tue Nov 02, 2010 3:21 am
- Forum: Runes of Magic
- Topic: [Addon] Commander - Automated trade
- Replies: 1
- Views: 1635
- Thu Oct 28, 2010 10:37 am
- Forum: Runes of Magic
- Topic: HI 1st time here: after 28th if any fix just for the Golden
- Replies: 9
- Views: 3272
Re: HI 1st time here: after 28th if any fix just for the Gol
got same error to uptade.
- Tue Oct 05, 2010 12:24 pm
- Forum: Runes of Magic
- Topic: on event ?
- Replies: 2
- Views: 1325
Re: on event ?
ok thanks for the answer.
- Tue Oct 05, 2010 2:47 am
- Forum: Runes of Magic
- Topic: on event ?
- Replies: 2
- Views: 1325
on event ?
How can I get a bot listening to an event ?
for example a bot waiting the Event:TRADE REQUEST
it's to use to trade between 2 bots:
-- select the player 1 in party
-- ask for a trade
sendMacro("RequestTrade("party1")"); yrest(500);
-- put item in trade
sendMacro("PickupBagItem(GetBagItemInfo ...
for example a bot waiting the Event:TRADE REQUEST
it's to use to trade between 2 bots:
-- select the player 1 in party
-- ask for a trade
sendMacro("RequestTrade("party1")"); yrest(500);
-- put item in trade
sendMacro("PickupBagItem(GetBagItemInfo ...
- Thu Sep 30, 2010 12:24 am
- Forum: Runes of Magic
- Topic: Finding and looting dead bodies
- Replies: 56
- Views: 20568
Re: Finding and looting dead bodies
That's a great idea for looting on follow in a party.
I have no sure about the follow tho^^
Code: Select all
<onLeaveCombat>
lootBobies();
sendMacro("FollowUnit("party1")");
</onLeaveCombat>
- Sun Sep 26, 2010 5:38 am
- Forum: Runes of Magic
- Topic: Logout > Login (same char) + daily counter
- Replies: 4
- Views: 2920
Re: Logout > Login (same char) + daily counter
repeat DailyCount, DailyPerDay= RoMScript("Daily_count()") until DailyCount ~= nil and DailyPerDay ~= nil
DailysRemaining = DailyPerDay - DailyCount
cprintf(cli.green, "Dailies remaining : %d\n", DailysRemaining);
cprintf(cli.red, "\n***Loging out!***\n");
sendMacro("Logout ...
DailysRemaining = DailyPerDay - DailyCount
cprintf(cli.green, "Dailies remaining : %d\n", DailysRemaining);
cprintf(cli.red, "\n***Loging out!***\n");
sendMacro("Logout ...
- Sun Sep 26, 2010 5:04 am
- Forum: Runes of Magic
- Topic: Logout > Login (same char) + daily counter
- Replies: 4
- Views: 2920
Re: Logout > Login (same char) + daily counter
Thanks rock for the fast and detailed answer.
I'll give you a feedback asap.
I'll give you a feedback asap.
- Sat Sep 25, 2010 5:54 am
- Forum: Runes of Magic
- Topic: Logout > Login (same char) + daily counter
- Replies: 4
- Views: 2920
Logout > Login (same char) + daily counter
Hi guys,
I am searching a way to log out to the character selection and reconnect on the same one.
Something like that with the relog working :)
cprintf(cli.red, "\n***Loging out!***\n");
sendMacro("Logout();");
yrest(30000);
cprintf(cli.red, "\n***Reloging!***\n");
-- RELOG!
-- Cplayer:new ...
I am searching a way to log out to the character selection and reconnect on the same one.
Something like that with the relog working :)
cprintf(cli.red, "\n***Loging out!***\n");
sendMacro("Logout();");
yrest(30000);
cprintf(cli.red, "\n***Reloging!***\n");
-- RELOG!
-- Cplayer:new ...