Search found 4474 matches

by Administrator
Sat Feb 02, 2008 5:40 pm
Forum: MicroMacro general & support
Topic: LIB.Lua Error Message
Replies: 15
Views: 7115

Re: LIB.Lua Error Message

Yes, for now. I hope it runs...acceptably.

I'm working on setting up a separate server, going through some legal garbage, and trying to setup a Source Forge page, so there's a lot of stuff to come.
by Administrator
Sat Feb 02, 2008 4:48 pm
Forum: MicroMacro general & support
Topic: LIB.Lua Error Message
Replies: 15
Views: 7115

Re: LIB.Lua Error Message

openDC documentation: http://solarimpact.servegame.com/micromacro/manual/process.html#openDC Basically, you need to open a handle to device context to the window in order to read the image from it. This is used to graphically determine if you are still fighting a monster, for example. btw, findProce...
by Administrator
Sat Feb 02, 2008 4:17 pm
Forum: MicroMacro general & support
Topic: LIB.Lua Error Message
Replies: 15
Views: 7115

Re: LIB.Lua Error Message

Nobody is working on WoKF at this time, so the script is still kind of outdated. You need to open the script in notepad and update this section: win = findWindow("Kungfu Client Ver:1.0.29b"); hdc = openDC(win); proc = openProcess( findProcess("Kungfu Client Ver:1.0.29b") ); I bel...
by Administrator
Fri Feb 01, 2008 10:25 pm
Forum: MicroMacro general & support
Topic: LIB.Lua Error Message
Replies: 15
Views: 7115

Re: LIB.Lua Error Message

You need to be most specific. Post your log.txt, tell me which script you are trying to run, etc. Either you are running an incompatible script (openDC() was changed, and there isn't backwards compatibility). Try getting an updated version of the script.
by Administrator
Wed Jan 30, 2008 12:20 pm
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145188

Re: Shaiya bot

Yes, it works just fine for me using 0.96 and this script: ------------------------------------------------- -- Variable declaration -- do not edit ------------------------------------------------- CLASS_WARRIOR = 0; CLASS_MAGE = 1; HP = 10000; HPmax = HP; MP = 10000; MPmax = MP; SP = 10000; SPmax =...
by Administrator
Tue Jan 29, 2008 7:55 pm
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145188

Re: Shaiya bot

Hmm, this is a really strange problem. It worked perfectly fine for me under the same OS and all. I did make some changes to find* functions to use EnumWindows instead (and also to allow for wildcards). I have just uploaded the latest update. Try the new copy and see if it works, but don't be too ho...
by Administrator
Tue Jan 29, 2008 12:46 pm
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145188

Re: Shaiya bot

Are you logged in with administrator priviliges? If not, you must run micromacro.exe with admin privileges.

Also, try changing this line:

Code: Select all

  proc = openProcess( findProcessByExe("Game.exe") );
To:

Code: Select all

  proc = openProcess( findProcess("Shaiya") );
by Administrator
Mon Jan 28, 2008 9:22 pm
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145188

Re: Shaiya bot

Hmm, something seems messed up. The last time I tried updating the script, I might have attached the wrong copy or something. I have uploaded the fixed copy. Please redownload it, you can find it in my first post in this topic.
by Administrator
Mon Jan 28, 2008 4:58 pm
Forum: MicroMacro general & support
Topic: LIB.Lua Error Message
Replies: 15
Views: 7115

Re: LIB.Lua Error Message

I've already send you a PM concerning this on MPC. For others that might be having the same problem, it looks as though the window title has been changed for WoKF. That is, it previously might have been something like "Kungfu Client Ver:1.0.29b", and may have had an update causing the vers...
by Administrator
Mon Jan 28, 2008 4:56 pm
Forum: Memory editing software
Topic: [Tutorial] Finding pointers & offsets (ArtMoney)
Replies: 10
Views: 13715

Re: [Tutorial] Finding pointers & offsets

These look mostly correct for Shaiya. In fact, Ploxasaurus has posted related pointers and offsets on MPC and the CE forums in the same memory block.
by Administrator
Mon Jan 28, 2008 4:52 pm
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145188

Re: Shaiya bot

The only problem now is that those are the old HP/MP/SP addresses. I would appreciate if somebody would find them, then lookup the pointers for me. I have posted a tutorial on how to find the pointers in the ArtMoney thread. i got them by follow the tut u posted HP 0210A880+296 MP 0210A880+308 SP 0...
by Administrator
Sun Jan 27, 2008 2:56 pm
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145188

Re: Shaiya bot

The only problem now is that those are the old HP/MP/SP addresses. I would appreciate if somebody would find them, then lookup the pointers for me. I have posted a tutorial on how to find the pointers in the ArtMoney thread.
by Administrator
Sun Jan 27, 2008 1:10 am
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145188

Re: Shaiya bot

You can find the log in the MicroMacro folder. It will be named log.txt. I have a feeling it's because I didn't update the HP/MP addresses. Hopefully, somebody will search for them and let me know.
by Administrator
Sat Jan 26, 2008 4:31 pm
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145188

Re: Shaiya bot

Post your log.txt. And yes, you WILL need to patch game.exe, otherwise it will not work.
by Administrator
Sat Jan 26, 2008 1:08 pm
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145188

Re: Shaiya bot

Ok, here's the big break those of you that still play Shaiya have been waiting for. This was originally posted by Jewbacca/Ploxasaurus. http://www.sendspace.com/file/l2eaa2 Unrar it, and copy game.exe into C:\AeriaGames\Shaiya (by default, or wherever you installed Shaiya to), and let it overwrite. ...
by Administrator
Thu Jan 24, 2008 4:59 pm
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145188

Re: Shaiya bot

Yes, your modifications look correct. The problem now is that you do not have a bypass for GameGuard. GameGuard is what is preventing certain calls from taking place. One of those being openDC(). The result of openDC() is passed to getPixel(); since it is nil, the input is invalid, and you get an er...
by Administrator
Thu Jan 24, 2008 3:35 pm
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145188

Re: Shaiya bot

class = CLASS_DEFENDER; That's wrong. There are only two choices: CLASS_WARRIOR, or CLASS_MAGE. You are of warrior type, therefor use CLASS_WARRIOR. You need to set HP_usepotion to the HP you want to use a health potion at, and HP_sit to the HP you want to sit at (only effects when you're out of ba...
by Administrator
Thu Jan 24, 2008 12:08 pm
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145188

Re: Shaiya bot

shaiya.lua is the script. You configure the variables to fit your needs, then save it in the micromacro/scripts folder. You can also just right-click shaiya.lua -> Open With -> Browse, and find micromacro.exe (this works if shaiya.lua is outside MicroMacro's script folder -- but you won't be able to...
by Administrator
Thu Jan 24, 2008 12:05 pm
Forum: MicroMacro scripts
Topic: Introducing Holic Online
Replies: 27
Views: 10574

Re: Introducing Holic Online

Holic is not Shaiya. I'm not sure why you posted a Shaiya question here. Anyways, change whatever you want.
by Administrator
Wed Jan 23, 2008 4:17 am
Forum: MicroMacro general & support
Topic: error on fiesta again :S
Replies: 19
Views: 6496

Re: error on fiesta again :S

Do you have a log of the warnings it throws? I don't really have too much of an idea on why this would happen, but it seems like the process handle must be getting closed for some reason.