Search found 8 matches

by caramel
Tue Nov 02, 2010 3:21 am
Forum: Runes of Magic
Topic: [Addon] Commander - Automated trade
Replies: 1
Views: 1635

Re: [Addon] Commander - Automated trade

Algorithm and way to proceed very inspired on :
http://www.rompros.com/rom-guides/2137- ... emote.html
by caramel
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.
by caramel
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 ...
by caramel
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.

Code: Select all

<onLeaveCombat>
lootBobies();
sendMacro("FollowUnit("party1")");
</onLeaveCombat>
I have no sure about the follow tho^^
by caramel
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 ...
by caramel
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. :-)
by caramel
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 ...