Search found 8 matches

by warlord
Sat May 19, 2012 6:44 am
Forum: Userfunctions, waypoint scripts, etc.
Topic: butterlfly for low HP character
Replies: 27
Views: 10880

Re: butterlfly for low HP character

Uf finally found that problem
I had left in profile

Code: Select all

<hotkey name="ATTACK" key="VK_1" />
it worked with that in past, but not working now since some bot version

Thank you very much for clues, so I was able to find that
by warlord
Sat May 19, 2012 5:10 am
Forum: Userfunctions, waypoint scripts, etc.
Topic: butterlfly for low HP character
Replies: 27
Views: 10880

Re: butterlfly for low HP character

4.0.11.2525 slim english client
by warlord
Thu May 17, 2012 11:48 am
Forum: Userfunctions, waypoint scripts, etc.
Topic: butterlfly for low HP character
Replies: 27
Views: 10880

Re: butterlfly for low HP character

i have patched client and new downloaded bot

as I said it stop working long time ago (like half year or more, looks like from november) after some bot update, so I was forced to use old version and update just address
by warlord
Thu May 17, 2012 10:38 am
Forum: Userfunctions, waypoint scripts, etc.
Topic: butterlfly for low HP character
Replies: 27
Views: 10880

Re: butterlfly for low HP character

y everything else work fine as was before, killing butterfies, looting but not targeting npc i even tried to delete all bot files and run svn update to download all new and same problem hmm maybe I noticed some issue - when bot is about to kill mob - sometimes it target mob "internaly", it...
by warlord
Thu May 17, 2012 9:58 am
Forum: Userfunctions, waypoint scripts, etc.
Topic: butterlfly for low HP character
Replies: 27
Views: 10880

Re: butterlfly for low HP character

Lisa, I have been trying to use the scripts but without success. If I target the npc (green circle) it will either pick up or turn in the quest but otherwise it will just run back and forth. Do I need a userfunction of somesort? thank you. My guess is it is because of different language client and ...
by warlord
Mon Jul 18, 2011 7:19 am
Forum: Runes of Magic
Topic: Monitoring ingame events.
Replies: 78
Views: 22260

Re: Monitoring ingame events.

script stuck on first casted skill with repeatly pressing RB command macro key To figure out what it's trying to do, open the macro interface, find the "RB Command", open it and see what command it was trying to execute. i let it run longer and it went this way: cast first skill then targ...
by warlord
Mon Jul 18, 2011 4:36 am
Forum: Runes of Magic
Topic: Monitoring ingame events.
Replies: 78
Views: 22260

Re: Monitoring ingame events.

it was my bad, I had = "bossguy"and not =="bossguy" try this local target = player:getTarget(); if target and target.Name == "bossguy" then printf("targeting mad mallen\n") repeat local time, moretocome, msg = EventMonitorCheck("Crush","1"...
by warlord
Sun Jul 17, 2011 9:07 pm
Forum: Runes of Magic
Topic: Monitoring ingame events.
Replies: 78
Views: 22260

Re: Monitoring ingame events.

change bossguy to name of the boss and see if this fixes your issue. <onSkillCast> local target = player:getTarget(); if target and target.Name = "bossguy" then printf("targeting mad mallen\n") repeat local time, moretocome, msg = EventMonitorCheck("Crush","1"...