Search found 6991 matches

by lisa
Mon Dec 28, 2015 10:08 pm
Forum: Runes of Magic
Topic: Arcadia RoM implemented Antihack system - prevent to run 3rd party software (like micromacro, romeo).
Replies: 75
Views: 57363

Re: Arcadia RoM implemented Antihack system - prevent to run 3rd party software (like micromacro, romeo).

lovemelongtime wrote:Will rombot ever be able to be used again on arcadia?
I already posted what to change to make rombot work on arcadia......
by lisa
Sat Dec 19, 2015 2:12 am
Forum: MicroMacro general & support
Topic: mm2 timestamp usage
Replies: 4
Views: 10613

Re: mm2 timestamp usage

Found it
http://www.solarstrike.net/phpBB3/viewt ... eue#p58747

and yeah that will pretty much do what I want ;)
by lisa
Fri Dec 18, 2015 3:35 am
Forum: MicroMacro general & support
Topic: virtual mouse usage
Replies: 12
Views: 12444

Re: virtual mouse usage

Seems to be the game doing it, by clicking a different thing it has reacted differently. I moved a UI thing to the middle so it would be clicking a user interface window instead of an object in game and it no longer had the mouse in middle of screen.
So yeah seems like a game issue.
by lisa
Fri Dec 18, 2015 3:20 am
Forum: MicroMacro general & support
Topic: virtual mouse usage
Replies: 12
Views: 12444

Re: virtual mouse usage

I can't explain it, I did some prints which atleast pointed out I was doing the key held every cycle for 1 second, so I fixed that but still moving the mouse, what really gets me though is according to the prints the mouse is still where it should be after the virtual press. So it is like it does th...
by lisa
Fri Dec 18, 2015 2:37 am
Forum: MicroMacro general & support
Topic: mm2 timestamp usage
Replies: 4
Views: 10613

Re: mm2 timestamp usage

testing with this atm, seems to be fine but this is very simple, just does a mouse click every 30 seconds.

Code: Select all

			if timer:isPast() then
				mouse.setVirtualPosition(win, clickw, clickh)
				mouse.virtualPress(win,  key.VK_LMOUSE,true)
				timer = Timestamp:now():addSeconds(waittime)
			end
by lisa
Thu Dec 17, 2015 7:28 pm
Forum: MicroMacro general & support
Topic: mm2 timestamp usage
Replies: 4
Views: 10613

mm2 timestamp usage

Ok So I have been browsing the wiki and checking out the timestamp class, would this now be the preferred way to track times? So in my current project I am still using the dt function macro.main(dt) gaptime = gaptime - dt walktime = walktime - dt if gaptime < 0 and walktime < 0 then Or is the timest...
by lisa
Thu Dec 17, 2015 7:10 pm
Forum: MicroMacro general & support
Topic: virtual mouse usage
Replies: 12
Views: 12444

Re: virtual mouse usage

Ok I have an interesting thing I have noticed with the virtual mouse. I will post all the code I am using at the moment but the thing I have noticed is that 1 virtual mouse press works fine but another seems to move the physical mouse which I can't explain. So one of them the mouse is actually moved...
by lisa
Tue Dec 15, 2015 7:35 am
Forum: Runes of Magic
Topic: Arcadia RoM implemented Antihack system - prevent to run 3rd party software (like micromacro, romeo).
Replies: 75
Views: 57363

Re: Arcadia RoM implemented Antihack system - prevent to run 3rd party software (like micromacro, romeo).

kassi wrote:and the Romeo there any solution? plss.
I don't have romeo, the developers will probably need to patch it for the server, I doubt you can change the settings for what class name to look for.
Did you try posting on the site romeo comes from?
by lisa
Sun Dec 13, 2015 8:45 am
Forum: Runes of Magic
Topic: string find stuff help
Replies: 6
Views: 2318

Re: string find stuff help

and what happens when you print the_error ?
print(the_error)
It more than likely prints it on MM because it is a string.

Code: Select all

local pos, endpos = string.find(the_error, "Stab",1) print(pos) print(endpos)
 
by lisa
Sat Dec 12, 2015 5:12 pm
Forum: Runes of Magic
Topic: string find stuff help
Replies: 6
Views: 2318

Re: string find stuff help

You have StabTense bowAttackAttackStabTense bowTense bow and you want to work out the order of Stab, Tense bow and Attack? The link you provided has the answer you need, string.find. Command> local pos, endpos = string.find("StabTense bowAttackAttackStabTense bowTense", "Stab",1)...
by lisa
Fri Dec 11, 2015 5:46 am
Forum: Memory editing software
Topic: CE and dll pointers
Replies: 4
Views: 16323

Re: CE and dll pointers

ahh yeah I didn't know that would be called a module =) I'll have to play with it more, currently getting nil local procid = process.findByWindow(window.find(targetWindowName, targetWindowClass)) -- procid works fine as it is used in other areas such as proc = process.open(procid) process.getModuleA...
by lisa
Fri Dec 11, 2015 1:11 am
Forum: Runes of Magic
Topic: Zone Event
Replies: 8
Views: 2779

Re: Zone Event

Yeah quite a few discussions on the event (Eoj) timer.
check this 1 out
viewtopic.php?f=27&t=6026&hilit=eoj+time
by lisa
Fri Dec 11, 2015 1:03 am
Forum: Userfunctions, waypoint scripts, etc.
Topic: Howling Mountains - Full Zone Quest Series
Replies: 17
Views: 6730

Re: Howling Mountains - Full Zone Quest Series

TheAssasinOfDarkness wrote:Hi
If u can help me to fix this problem
Your memory table might be missing some values, another posted this recently as well, easiest fix is to delete the file and do a update/revert on the folder.

the file is in the folder rom/cache/ and it is called itemtypestable.lua
by lisa
Thu Dec 10, 2015 11:38 pm
Forum: Memory editing software
Topic: CE and dll pointers
Replies: 4
Views: 16323

CE and dll pointers

Ok so pretty much most of my CE usage was in RoM and the pointer statics were always client.exe but I have been playing around with a game lately and every single pointer result is a .dll Ok so I have a pointer which has been reliable and works fine in CE and uses "OpenAL64.dll" + ##### So...
by lisa
Wed Dec 09, 2015 9:52 pm
Forum: Runes of Magic
Topic: HELP!
Replies: 16
Views: 4712

Re: HELP!

If you want to know why it isn't working then add prints like I suggested in the very first reply to this topic.
by lisa
Tue Dec 08, 2015 8:30 am
Forum: MicroMacro general & support
Topic: MM2 1.92.46 readptr
Replies: 7
Views: 10322

Re: MM2 1.92.46 readptr

Thanks I'll give it a test, unfortunately the pointers I had didn't hold up but yeah I'll give it a test anyway on another pointer.

--=== Added ===--
Tested micromacro.exe and it works fine =)
by lisa
Mon Dec 07, 2015 3:38 pm
Forum: MicroMacro general & support
Topic: MM2 1.92.46 readptr
Replies: 7
Views: 10322

Re: MM2 1.92.46 readptr

Sorry Admin, I don't have windows 10 so I couldn't say.
by lisa
Mon Dec 07, 2015 3:37 pm
Forum: MicroMacro general & support
Topic: virtual mouse usage
Replies: 12
Views: 12444

Re: virtual mouse usage

Sorry for the late reply, but yes that is the recommended method. You may want to use the client rect (getClientRect instead of just getRect) so that it will not be affected by differences in Windows title bars (such as from theme settings). Yup that works fine wx, wy, ww, wh = window.getClientRect...
by lisa
Mon Dec 07, 2015 4:14 am
Forum: MicroMacro general & support
Topic: MM2 1.92.46 readptr
Replies: 7
Views: 10322

MM2 1.92.46 readptr

Ok I don't know if I did something wrong but it really seems like when you have more than 1 offset in the readPtr it stops working. local stam = process.readPtr(proc, "int", (0x1AAB0000 + 0x5C1B8), {0x68}) -- 0x68, 0x210,0x5C8, 0x0, 0x464 if stam then printf("0x%X\n",stam) else p...