Search found 4499 matches
- Thu Feb 14, 2008 10:23 pm
- Forum: Everything else
- Topic: Shaiya bot
- Replies: 432
- Views: 224763
Re: Shaiya bot
Does it work at all under 1280*1024, or were you unable to check that?
- Thu Feb 14, 2008 5:51 pm
- Forum: MicroMacro general & support
- Topic: fixed.
- Replies: 7
- Views: 3257
Re: fixed.
I like that suggestion: it's cheap and hackish!
The only problem with reading memory is that addresses tend to change, resulting in me having to reinstall games and look for them all over again every couple of weeks. I have no problem scripting it if others can help find addresses.
The only problem with reading memory is that addresses tend to change, resulting in me having to reinstall games and look for them all over again every couple of weeks. I have no problem scripting it if others can help find addresses.
- Thu Feb 14, 2008 5:42 pm
- Forum: Everything else
- Topic: Shaiya bot
- Replies: 432
- Views: 224763
Re: Shaiya bot
When you are standing right next to the monster. For whatever reason, you can't see the monster's HP when you are far away. You're not a mage, are you? Also change "win" in the second getPixel to "hdc" instead. elseif( ww == 1280 and wh == 1024 ) then r,g,b = getPixel(hdc, 345, 3...
- Thu Feb 14, 2008 8:08 am
- Forum: Misc tools
- Topic: PermEdit : A tool for granting system access to programs
- Replies: 0
- Views: 12735
PermEdit : A tool for granting system access to programs
You can find it here This program grants system access to any running process. Usually it's used for packet editors like WPE Pro and T-Search because sometimes they are unable to target a certain game or it does not appear in the list. It can be used for other programs though. Basically, if you have...
- Thu Feb 14, 2008 3:59 am
- Forum: Everything else
- Topic: Shaiya bot
- Replies: 432
- Views: 224763
Re: Shaiya bot
Ok, I took my first inspection. Everything seems to run perfectly here under 1024*768 windowed mode, 32 bit color. Maybe something was screwy last time...but lets try this again. If you go back to the have_target() function, you'll see this line: --printf("R: %d, G: %d, B: %d\n", r, g, b);...
- Thu Feb 14, 2008 3:19 am
- Forum: Everything else
- Topic: Shaiya bot
- Replies: 432
- Views: 224763
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...
- Mon Feb 11, 2008 5:27 am
- Forum: MicroMacro general & support
- Topic: Minor Bug in lib/keymap.lua
- Replies: 1
- Views: 1630
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.
- Sun Feb 10, 2008 12:37 am
- Forum: Everything else
- Topic: Shaiya bot
- Replies: 432
- Views: 224763
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...
- Sat Feb 09, 2008 5:18 pm
- Forum: Everything else
- Topic: Shaiya bot
- Replies: 432
- Views: 224763
Re: Shaiya bot
Reset your interface, and make sure you are running in 32bit color.
- Thu Feb 07, 2008 5:10 am
- Forum: Everything else
- Topic: Shaiya bot
- Replies: 432
- Views: 224763
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...
- Wed Feb 06, 2008 5:28 pm
- Forum: MicroMacro general & support
- Topic: fixed.
- Replies: 7
- Views: 3257
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...
- Wed Feb 06, 2008 3:01 pm
- Forum: MicroMacro general & support
- Topic: fixed.
- Replies: 7
- Views: 3257
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 ...
- Wed Feb 06, 2008 12:04 pm
- Forum: MicroMacro scripts
- Topic: Fiesta bot
- Replies: 71
- Views: 36174
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...
- Wed Feb 06, 2008 12:01 pm
- Forum: Everything else
- Topic: Shaiya bot
- Replies: 432
- Views: 224763
Re: Shaiya bot
Verify that GameGuard isn't running, and post your log.txt.
- Tue Feb 05, 2008 2:43 pm
- Forum: MicroMacro scripts
- Topic: Fiesta bot
- Replies: 71
- Views: 36174
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().
- Mon Feb 04, 2008 11:33 pm
- Forum: MicroMacro scripts
- Topic: Fiesta bot
- Replies: 71
- Views: 36174
Re: Fiesta bot
This can't be done easily, no. It would take a lot more code. Maybe you could try this though:
And in function main(), add this:
Code: Select all
function regen_scroll()
keyboardPress(key.VK_5); -- lets pretend 5 is the hotkey
end
Code: Select all
registerTimer("regen_scroll", 14000, regen_scroll);
- Mon Feb 04, 2008 3:10 pm
- Forum: MicroMacro scripts
- Topic: World of Kungfu Bot (Updated)
- Replies: 71
- Views: 80065
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...
- Mon Feb 04, 2008 2:57 pm
- Forum: MicroMacro scripts
- Topic: Fiesta bot
- Replies: 71
- Views: 36174
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...
- Sun Feb 03, 2008 11:17 pm
- Forum: Everything else
- Topic: Shaiya bot
- Replies: 432
- Views: 224763
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).
- Sun Feb 03, 2008 11:14 pm
- Forum: MicroMacro scripts
- Topic: World of Kungfu Bot (Updated)
- Replies: 71
- Views: 80065
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...