Search found 47 matches

by kumpel100
Sun Jun 14, 2009 7:41 am
Forum: Runes of Magic
Topic: Navigation System
Replies: 1
Views: 1416

Re: Navigation System

Datei navigateTo.exe empfangen 2009.06.14 00:07:21 (UTC) Antivirus Version letzte aktualisierung Ergebnis a-squared 4.5.0.18 2009.06.13 - AhnLab-V3 5.0.0.2 2009.06.13 - AntiVir 7.9.0.187 2009.06.12 - Antiy-AVL 2.0.3.1 2009.06.12 - Authentium 5.1.2.4 2009.06.13 - Avast 4.8.1335.0 2009.06.13 - AVG 8....
by kumpel100
Thu Jun 11, 2009 1:18 pm
Forum: Runes of Magic
Topic: Need CodeLine for detection if my follower have aggro !
Replies: 2
Views: 1336

Re: Need CodeLine for detection if my follower have aggro !

this is a first step: if( self.Battling and target.HP <= 1 ) then cprintf(cli.red, "Priest hat Aggro ??\n"); keyboardHold(settings.hotkeys.MOVE_BACKWARD.key); yrest(2000); keyboardRelease(settings.hotkeys.MOVE_BACKWARD.key); yrest(100); keyboardPress(settings.hotkeys.TARGET.key); if(settin...
by kumpel100
Thu Jun 11, 2009 6:55 am
Forum: Runes of Magic
Topic: Need CodeLine for detection if my follower have aggro !
Replies: 2
Views: 1336

Need CodeLine for detection if my follower have aggro !

i need a code line to Detect if my following Priest had aggro from a Mob while my Main Bot account not assist my priest, something like this: if( self.Battling and self.TargetPtr ~= 0 ) then cprintf(cli.green, "Priest had Aggro ??\n"); end better seems that: if( self.Battling and target.HP...
by kumpel100
Wed Jun 10, 2009 6:02 pm
Forum: Runes of Magic
Topic: Detect cursor change?
Replies: 28
Views: 7848

Re: Detect cursor change?

Yes their is, but I have found it not to work so well, hence why I am using Autoit. If you can get a scan bot (scanning for the nodes) working in Lua, I would like to see the code. no way you have on every direction other colors thats why im using Cursor move with Cursor code detect. ImageSearch di...
by kumpel100
Tue Jun 09, 2009 4:19 pm
Forum: Runes of Magic
Topic: Detect cursor change?
Replies: 28
Views: 7848

Re: Detect cursor change?

what i say around 200 nodes a hour...
i know there are much better ways to make a Harvest/Xp bot but for my useage is ok.
by kumpel100
Tue Jun 09, 2009 3:40 pm
Forum: Runes of Magic
Topic: Detect cursor change?
Replies: 28
Views: 7848

Re: Detect cursor change?

Oh, so you already know where the node is going to be. Cause I already built a way to detect a node and then run up to it / harvest it. The trouble I was having was actual finding the node, while I was botting. That is pretty crazy to set up a path that goes to every node like that, I am looking fo...
by kumpel100
Tue Jun 09, 2009 3:15 pm
Forum: Runes of Magic
Topic: Detect cursor change?
Replies: 28
Views: 7848

Re: Detect cursor change?

It seems that anytime I get the Handle for the Cursor, then move the mouse anywhere, the Handle changes, so It would be clicking pretty much the entire screen everytime, unless is their a Range for the handles for Mobs / Nodes? i use a big route of of waypoints every waypoint is a resource spot on ...
by kumpel100
Tue Jun 09, 2009 1:51 pm
Forum: Runes of Magic
Topic: Detect cursor change?
Replies: 28
Views: 7848

Re: Detect cursor change?

there is a trick how to handle the cursor changes. 1) Cursocode of random area 2) Cursocode when Cursor change (must be resource or a Mob.) 3) click the found area, get a new CursorCode and check for this code every click on the "Resource" if there no process must be a mob... and yes i che...
by kumpel100
Tue Jun 09, 2009 12:43 pm
Forum: Runes of Magic
Topic: Account Suspended
Replies: 5
Views: 2516

Re: Account Suspended

change channels all 2-3 hrs...
by kumpel100
Tue Jun 09, 2009 12:36 pm
Forum: Runes of Magic
Topic: Detect cursor change?
Replies: 28
Views: 7848

Re: Detect cursor change?

try this: b:: start: gosub CursorCheck msgbox,,, CursorCode= %Cursor_h% ,2 goto start CursorCheck: { VarSetCapacity(ci, 20, 0) ci := Chr(20) ErrorLevel := DllCall("GetCursorInfo", "uint", &ci) ErrorLevel := mod(ErrorLevel + 1, 2) Cursor_h := *(&ci+8)+(*(&ci+9) << 8)+(...
by kumpel100
Sun Jun 07, 2009 2:02 pm
Forum: Runes of Magic
Topic: RoM bot
Replies: 2213
Views: 959847

Re: RoM bot

thats the answear on my question "GetKeyState()" thx. os.execute() should run in blocking mode. This means that when you open a program with os.execute(), the calling program (MicroMacro, in this case), pauses until the target program is closed and returns. While in this paused state, it s...
by kumpel100
Sun Jun 07, 2009 1:07 pm
Forum: Runes of Magic
Topic: RoM bot
Replies: 2213
Views: 959847

Re: RoM bot

is for my harvest.exe this is working very good: </waypoint> <waypoint x="-xxxx" z="-xxxx" > yrest(100); os.execute("\"C:/Harvest.exe\" arguments"); yrest(100); while(true) do local foundProc = findProcessByExe("Harvest.exe"); if( foundProc == 0 ) th...
by kumpel100
Sun Jun 07, 2009 4:05 am
Forum: Runes of Magic
Topic: RoM bot
Replies: 2213
Views: 959847

Re: RoM bot

can i go in "Pause" in Waypoints.xml if i reach the waypoint? something like: <waypoint x="-2183" z="-4206" > --go in pause here </waypoint> and unpause it via a simple keystrong send from an other macro. stopPE(); will pause it. You can then synthesize the start key (...
by kumpel100
Sat Jun 06, 2009 4:23 pm
Forum: Runes of Magic
Topic: RoM bot
Replies: 2213
Views: 959847

Re: RoM bot

can i go in "Pause" in Waypoints.xml if i reach the waypoint?
something like:

Code: Select all

<waypoint x="-2183" z="-4206" >
	--go in pause here
</waypoint>
and unpause it via a simple keystrong send from an other macro.
by kumpel100
Wed Jun 03, 2009 12:59 pm
Forum: Runes of Magic
Topic: RoM bot
Replies: 2213
Views: 959847

Re: RoM bot

ec5745y wrote:hi,
is there a way to increase the tabling-range?
try longer waypoints and you get close to 1sek TAB`s.
by kumpel100
Mon Jun 01, 2009 9:16 am
Forum: Runes of Magic
Topic: RoM bot
Replies: 2213
Views: 959847

Re: RoM bot

this works very good: </waypoint> <waypoint x="-xxxx" z="-xxxx" > yrest(100); os.execute("\"C:/Harvest.exe\" arguments"); yrest(100); while(true) do local foundProc = findProcessByExe("Harvest.exe"); if( foundProc == 0 ) then break; -- break out, we ...
by kumpel100
Sun May 31, 2009 12:53 pm
Forum: Runes of Magic
Topic: RoM bot
Replies: 2213
Views: 959847

Re: RoM bot

to make the Bot good working with my own harvest part i need a Pause/Unpause in the waypoint.xml what i found is: <waypoint x="1234" z="4321"> -- Code goes here os.execute("\"C:/Harvest.exe\" arguments"); yrest(5000); </waypoint> what i need: head to waypoint ...
by kumpel100
Thu May 28, 2009 4:29 pm
Forum: Runes of Magic
Topic: RoM bot
Replies: 2213
Views: 959847

Re: RoM bot

ok, its true i have close waypoints because of to dont get to much double,tribble aggro. i try with longer waypoints. Edit: ok this was my problem, an other question after succefull kill an enemy is it possible to turn left check for other close mobs then turn right bevor head to next waypoint? i no...
by kumpel100
Thu May 28, 2009 3:25 pm
Forum: Runes of Magic
Topic: RoM bot
Replies: 2213
Views: 959847

Re: RoM bot

ok, my problem is this: Tabbing to Target Moving to waypoint # Moving to waypoint # Moving to waypoint # Moving to waypoint # Tabbing to Target Tabbing to Target Moving to waypoint # Moving to waypoint # Moving to waypoint # Moving to waypoint # Moving to waypoint # Moving to waypoint # Moving to wa...
by kumpel100
Thu May 28, 2009 3:07 pm
Forum: Runes of Magic
Topic: RoM bot
Replies: 2213
Views: 959847

Re: RoM bot

i did the changes with yrest(100); now it works with TAB aswell, is 100 = 100ms?