Search found 4474 matches

by Administrator
Thu Feb 14, 2008 3:19 am
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145197

Re: Shaiya bot

Sorry, I've been busy the last few days. hpr12951: I'll need more information. It's strange that you are having this problem, though. I'll try looking into this problem. It appears both you and some206 have it. Maybe they moved the location of the box slightly, causing it to read the wrong informati...
by Administrator
Mon Feb 11, 2008 5:27 am
Forum: MicroMacro general & support
Topic: Minor Bug in lib/keymap.lua
Replies: 1
Views: 1336

Re: Minor Bug in lib/keymap.lua

Good call. You are correct; I did mean key.VK_MINUS = key.VK_DASH. Thanks. This is no big problem though, so I won't bother uploading an update right away.
by Administrator
Sun Feb 10, 2008 12:37 am
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145197

Re: Shaiya bot

No. Window mode should be fine. Under the options somewhere you'll see a way to reset/initialize the interface. This will move all the sub-windows in the game back to their default position. If you have moved the bar that shows your target's HP, this will cause exactly the problem that you have, and...
by Administrator
Sat Feb 09, 2008 5:18 pm
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145197

Re: Shaiya bot

Reset your interface, and make sure you are running in 32bit color.
by Administrator
Thu Feb 07, 2008 5:10 am
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145197

Re: Shaiya bot

Well, I spent about 10 minutes trying to figure this out, and wrote up a good, lengthy post. That post is now garbage, as I've located the error. Go to function have_target(). You'll see something like this in it: if( ww == 1024 and wh == 768 ) then r,g,b = getPixel(hdc, 258, 36); elseif( ww == 1280...
by Administrator
Wed Feb 06, 2008 5:28 pm
Forum: MicroMacro general & support
Topic: fixed.
Replies: 7
Views: 2447

Re: fixed.

It presses 1 to target and attack. Then checks if you actually have a target, and if so, it leads you to the correct fight function. Since you are a melee, you need to be looking at function fight_warrior(). Now, the problem comes with the fact that you have no way of knowing if you are actually att...
by Administrator
Wed Feb 06, 2008 3:01 pm
Forum: MicroMacro general & support
Topic: fixed.
Replies: 7
Views: 2447

Re: fixed.

I assume you are talking about Shaiya. If this is the case, the reason for the skills not working is pretty much because I didn't like the game too much. The PVP was fun for about a day, but other than that, it's a boring game. If you just examine the script, you can probably figure out how to make ...
by Administrator
Wed Feb 06, 2008 12:04 pm
Forum: MicroMacro scripts
Topic: Fiesta bot
Replies: 71
Views: 26535

Re: Fiesta bot

That function doesn't work by timing things out, but rather, by random chance. The reason for this is to make it appear less bot-like. GMs and other staff typically look for repeated, pre-determined behavior. If you wanted to time it, you would need to write some functions to toggle switches, instal...
by Administrator
Wed Feb 06, 2008 12:01 pm
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145197

Re: Shaiya bot

Verify that GameGuard isn't running, and post your log.txt.
by Administrator
Tue Feb 05, 2008 2:43 pm
Forum: MicroMacro scripts
Topic: Fiesta bot
Replies: 71
Views: 26535

Re: Fiesta bot

Go to the knight_fight() function, and edit this section: if( HP < HP_potion) then hp_potion(); end if( HP < HP_stone) then hp_stone(); end if( SP < SP_potion) then sp_potion(); end if( SP < SP_stone) then sp_stone(); end Make sure that the final condition is calling sp_stone().
by Administrator
Mon Feb 04, 2008 11:33 pm
Forum: MicroMacro scripts
Topic: Fiesta bot
Replies: 71
Views: 26535

Re: Fiesta bot

This can't be done easily, no. It would take a lot more code. Maybe you could try this though:

Code: Select all

function regen_scroll()
  keyboardPress(key.VK_5); -- lets pretend 5 is the hotkey
end
And in function main(), add this:

Code: Select all

  registerTimer("regen_scroll", 14000, regen_scroll);
by Administrator
Mon Feb 04, 2008 3:10 pm
Forum: MicroMacro scripts
Topic: World of Kungfu Bot (Updated)
Replies: 71
Views: 49305

Re: World of Kungfu Bot (Updated)

Yeah, I wrote a couple cheats for America's Army that relied on hooking. The one that I thought was funniest was when i had 56 kills, 7 deaths on bridge crossing, with an M24. Occasionally I had to let them kill me to prevent it from being too obvious (such as when I knew they were sneaking up behin...
by Administrator
Mon Feb 04, 2008 2:57 pm
Forum: MicroMacro scripts
Topic: Fiesta bot
Replies: 71
Views: 26535

Re: Fiesta bot

Post your configuration (just the top section of the script where you made changes). Are stones instant reuse now? Before, it took a couple seconds before you could reuse them. If they are instant, that would explain this problem. It should be a simple fix though. Go to function hp_stone() in your s...
by Administrator
Sun Feb 03, 2008 11:17 pm
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145197

Re: Shaiya bot

Lol, wow. That's an old version you've got there. You can download 0.96 from the main site (http://solarimpact.servegame.com).
by Administrator
Sun Feb 03, 2008 11:14 pm
Forum: MicroMacro scripts
Topic: World of Kungfu Bot (Updated)
Replies: 71
Views: 49305

Re: World of Kungfu Bot (Updated)

Well, right, what I meant by not modifying the client is not decompiling, adding/removing code from it, and recompiling. A hook wouldn't actually modify the binary of the client; just manipulate it's memory space during runtime. If you want to go ahead and do some research on different methods we mi...
by Administrator
Sun Feb 03, 2008 7:00 pm
Forum: MicroMacro scripts
Topic: World of Kungfu Bot (Updated)
Replies: 71
Views: 49305

Re: World of Kungfu Bot (Updated)

Actually I'm not even sure how would be the best to go about this. There are several ways it can be done. It might be easiest to just inject some DLLs into the target process, and have MicroMacro send a message requesting that the DLL call the functions from within the program. It's actually kind of...
by Administrator
Sun Feb 03, 2008 2:38 pm
Forum: MicroMacro scripts
Topic: World of Kungfu Bot (Updated)
Replies: 71
Views: 49305

Re: World of Kungfu Bot (Updated)

Yeah. That's where the plugin system will help. All you would need to do is download the associated .dll files, put them in the plugin folder, and everything will work. I really would need some example code to work from, so if you're up to the challenge, go ahead and try doing exactly this (make sur...
by Administrator
Sun Feb 03, 2008 2:35 pm
Forum: MicroMacro general & support
Topic: LIB.Lua Error Message
Replies: 15
Views: 7115

Re: LIB.Lua Error Message

I'm looking at using Hostgator. I'm quite familiar with them as it is, and they have decent prices for what they offer, really. Maybe once my check comes in I'll buy up a year subscription.
by Administrator
Sun Feb 03, 2008 1:31 am
Forum: MicroMacro scripts
Topic: Fiesta bot
Replies: 71
Views: 26535

Re: Fiesta bot

Check and make sure it's actually using them. The bot window might say that it is being used like 2 or 3 times, but it actually will only be used once.
by Administrator
Sat Feb 02, 2008 7:58 pm
Forum: MicroMacro scripts
Topic: World of Kungfu Bot (Updated)
Replies: 71
Views: 49305

Re: World of Kungfu Bot (Updated)

Not necessarily. Doing it that way would be a lot of work, yes. What I had proposed was to just fake it, and let the client figure it out. That is, rather than figure out where the correct place to click is, set the addresses to where you want to go, and induce the movement. But yeah, it's a boring ...