Search found 4475 matches

by Administrator
Fri May 30, 2008 5:07 pm
Forum: MicroMacro scripts
Topic: World of Kungfu Bot (Updated)
Replies: 71
Views: 49427

Re: World of Kungfu Bot (Updated)

Second notice: use code tags when posting code. You will need to start by finding the address(es) related to the armor value. I do not even have the game, so you will need to do it. A simpler method might be to just have it log off after 1 hour or so. Put this somewhere above function main() functio...
by Administrator
Thu May 29, 2008 12:57 pm
Forum: MicroMacro scripts
Topic: New patch of Shaiya, can anyone upgrade no gameguard patch?
Replies: 20
Views: 9695

Re: New patch of Shaiya, can anyone upgrade no gameguard patch?

Kill4m3njar0: Run the updater and let Shaiya fully patch to the newest version. Now place the cracked game.exe into the Shaiya directory and overwrite. zerosignal: Go for it. My shaiya.lua script is public domain, and you can do whatever you want with it. player0000: I'll look into it. I have been s...
by Administrator
Thu May 29, 2008 4:26 am
Forum: MicroMacro scripts
Topic: New patch of Shaiya, can anyone upgrade no gameguard patch?
Replies: 20
Views: 9695

Re: New patch of Shaiya, can anyone upgrade no gameguard patch?

The addresses have, in fact, been changed. I have uploaded a new copy of shaiya.lua into the shaiya thread, so you can download it there. If you have already made changes to your script, you do not need to redownload it, and can just use these changes instead: key_switchtarget = key.VK_TILDE; -- add...
by Administrator
Thu May 29, 2008 3:04 am
Forum: MicroMacro scripts
Topic: New patch of Shaiya, can anyone upgrade no gameguard patch?
Replies: 20
Views: 9695

Re: New patch of Shaiya, can anyone upgrade no gameguard patch?

Thanks. Your appreciation is ...well, appreciated. Just make sure you teach them idiots at Aeria that security by obscurity is not security. You simply do this just by using the patch, hence circumventing that garbage they refer to as "security."
by Administrator
Thu May 29, 2008 3:00 am
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145460

Re: Shaiya bot

At the beginning of your attack() function, you could do something like this: local beginTime = os.time(); Now, in the loop of your attack() function (while(..) do ... end), you could do this: local currentTime = os.time(); if( os.difftime(currentTime, beginTime) > 30 ) -- 30 seconds has elapsed... ...
by Administrator
Wed May 28, 2008 10:18 pm
Forum: MicroMacro scripts
Topic: New patch of Shaiya, can anyone upgrade no gameguard patch?
Replies: 20
Views: 9695

Re: New patch of Shaiya, can anyone upgrade no gameguard patch?

Can you upload game.exe as an attachment here? I might be able to see if it's possible.
by Administrator
Wed May 28, 2008 10:17 pm
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145460

Re: Shaiya bot

Can you say that again? Do you mean he/she will continue to sit and stand until their MP/SP is full? Or do you mean they sit, stand, and then fighting right away? Please be as precise as possible.
by Administrator
Thu May 22, 2008 7:15 pm
Forum: MicroMacro scripts
Topic: World of Kungfu Bot (Updated)
Replies: 71
Views: 49427

Re: World of Kungfu Bot (Updated)

The unsmoothness to walking is because the bot spams the hotkeys, hence interrupting the animation sequence. It should be client sided only, so no harm is really done. You could gather the coordinates of your character and use this to turn your character back if he/she strays too far, but it's more ...
by Administrator
Thu May 22, 2008 3:26 pm
Forum: MicroMacro general & support
Topic: Change focus?
Replies: 4
Views: 2903

Re: Change focus?

Great idea. I've added this and uploaded it to the main page (built with LuaCoco -- since it appears stable enough). The function is showWindow(window, command) Where window is obtained with findWindow(), and command is one of the following: sw.show -- activate (show and set focus to) the window sw....
by Administrator
Wed May 21, 2008 8:13 am
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145460

Re: Shaiya bot

Have a problem starting the bot get this error in micro macro \Desktop\micromacro\scripts\shaiya.lua:29: attempt to call global 'secondsToTimer' <a nil value> any ideas? Download a newer version. secondsToTimer() has been added to the lib in the official release of 0.97. Is it even possible to get ...
by Administrator
Tue May 20, 2008 8:08 am
Forum: MicroMacro scripts
Topic: World of Kungfu Bot (Updated)
Replies: 71
Views: 49427

Re: World of Kungfu Bot (Updated)

On line 25 (as stated in the error), you have this:
SP_ptr = "020F2910";
After removing the quotes, you have 020F2910, which is *NOT* a valid number. Remember to precede it with 0x so that Lua sees it as hexidecimal.
by Administrator
Tue May 20, 2008 7:02 am
Forum: MicroMacro scripts
Topic: World of Kungfu Bot (Updated)
Replies: 71
Views: 49427

Re: World of Kungfu Bot (Updated)

8. Always use code tags. Whether it be 1 line or 100,000. If you're posting code, precede it by [ code ] and end it with [ /code ] . Example: [ code ] printf("Hello World"); [ /code ] Next time, please read and follow the rules. I've already made the change for you this time. You've got i...
by Administrator
Mon May 19, 2008 4:06 pm
Forum: MicroMacro scripts
Topic: Simple Phoenix Dynasty Bot
Replies: 4
Views: 2501

Re: Simple Phoenix Dynasty Bot

I'm not sure, but if I try to use memoryReadIntPtr more than once in a function with variables, it won't give me the right value's of the adresses. More likely it will return the same value as the first adress does. Can you provide a small segment of code that produces this result? If so, I can loo...
by Administrator
Mon May 19, 2008 1:17 pm
Forum: MicroMacro scripts
Topic: Simple Phoenix Dynasty Bot
Replies: 4
Views: 2501

Re: Simple Phoenix Dynasty Bot

Can't believe nobody has replied to this yet. I couldn't really test it for you, seeing as Pheonix Destiny ran very poorly for me (1 FPS). Your code is very clean and well written though, so good job! If I might, I'd like to offer a few suggestions. Change "FW Client - Beta - Final : 7211.425.0...
by Administrator
Mon May 19, 2008 12:59 pm
Forum: MicroMacro general & support
Topic: Lua beginner
Replies: 1
Views: 1130

Re: Lua beginner

Actually, this reminds me of when I was writing a command-line driven FTP-ish server/client using MicroMacro... Yes, I was somewhat successful: the server ran fine, accepted multiple users, and transferring files between client/server worked great, even with binary files. Then I realized that there ...
by Administrator
Thu May 15, 2008 9:59 pm
Forum: MicroMacro general & support
Topic: Timers?
Replies: 9
Views: 4017

Re: Timers?

Every time you move the mouse, reset the timer and a tracking variable. You could use the old timer stuff, but automatic timers are much easier to work with (most of the work is taken care of for you, automatically). To set or reset a timer, just call registerTimer(). We will make a function to chan...
by Administrator
Thu May 15, 2008 9:28 pm
Forum: MicroMacro general & support
Topic: Global Mu Online
Replies: 2
Views: 1424

Re: Global Mu Online

You're better off making use of memoryRead* [See: manual ] functions as opposed to reading the color from the screen. It's much easier to implement, and is less likely to be effected by configuration changes (different resolutions, video cards, or video settings could potentially make color reading ...
by Administrator
Tue May 13, 2008 9:27 pm
Forum: MicroMacro general & support
Topic: Button for Ctrl and a lil help on this script
Replies: 2
Views: 1276

Re: Button for Ctrl and a lil help on this script

The control key(s) are key.VK_CONTROL (unspecified, typically left control), key.VK_LCONTROL (left), and key.VK_RCONTROL.