Search found 213 matches

by zer0
Mon Mar 24, 2008 4:55 am
Forum: MicroMacro general & support
Topic: v0.96 - Application not recieving input
Replies: 11
Views: 3206

Re: v0.96 - Application not recieving input

Sorry, I'm going to have to re-open this issue. My script code seems to be fine, the application is not receiving input sometimes. Network congestion isn't the problem since manually using the keyboard, the game responds without an issue. Closing MicroMacro and re-launching it seems to correct the i...
by zer0
Fri Mar 21, 2008 10:51 pm
Forum: MicroMacro general & support
Topic: v0.96 - Application not recieving input
Replies: 11
Views: 3206

Re: v0.96 - Application not recieving input

*deleted*
reason: script code error.
by zer0
Sat Mar 15, 2008 5:52 am
Forum: MicroMacro general & support
Topic: v0.96 - Application not recieving input
Replies: 11
Views: 3206

Re: v0.96 - Application not recieving input

hang on, I think I'm jumping the gun again. lol. It's because I have a P2P app running in the background congesting network traffic, which most likely causes it.
Sorry for worrying u with my errors. >.<
by zer0
Sat Mar 15, 2008 12:19 am
Forum: MicroMacro general & support
Topic: v0.96 - Application not recieving input
Replies: 11
Views: 3206

v0.96 - Application not recieving input

I downloaded and used the latest release, v0.96(?), anyway as you know my script is huge, and is ideal for stress testing MicroMacro. :D Anyway, when I press F5, the script is executing, but the game (Shaiya) is not receiving any input, I've had to re-start MicroMacro a few times to get it working a...
by zer0
Thu Feb 28, 2008 3:44 am
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145252

Re: Shaiya bot

zerosignal: Have you made any other changes to the script? Maybe, something that could cause the handles proc and hdc to not be global? If you use the "official" script (the one posted by me) do you get the same error? I suppose you could write a function that would check if the handle wa...
by zer0
Sun Feb 24, 2008 2:07 am
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145252

Re: Shaiya bot

For some reason, every now and then I get the following in the log: Sun Feb 24 17:36:37 2008 : GC closed device context handle 0x2135DA0. Sun Feb 24 17:36:37 2008 : GC closed process handle 0x60. Sun Feb 24 17:36:37 2008 : WARNING: Failure reading memory from 0x60 at 0x2110ac8 in memoryReadIntPtr()....
by zer0
Fri Feb 22, 2008 11:44 pm
Forum: MicroMacro general & support
Topic: Functions - keyboardPress(), keyboardType()
Replies: 6
Views: 2566

Re: Functions - keyboardPress(), keyboardType()

Yep, tried lowering the delay, I'll try increasing the OS keyboard delay, it's probably the cause. edit: Win Vista -> Control Panel -> Keyboard Properties Repeat delay: Long Repeat rate: Slow http://i75.photobucket.com/albums/i308/L4NG3RZ/Micromacro_keyboard_settings.jpg keyboardSetDelay() - followi...
by zer0
Fri Feb 22, 2008 9:54 pm
Forum: MicroMacro general & support
Topic: Functions - keyboardPress(), keyboardType()
Replies: 6
Views: 2566

Functions - keyboardPress(), keyboardType()

With shaiya, any calls I make to keyboardPress() or keyboardType(), the key is registered as being press twice. I've tried with keyboardSetDelay() and rest(), but no luck, any suggestions? As to what I can do, or am doing wrong? note - I added key.VK_BACK (backspace) to virtual key map. function ret...
by zer0
Thu Feb 21, 2008 6:45 pm
Forum: MicroMacro general & support
Topic: seperating scripts into different files.
Replies: 9
Views: 3224

Re: seperating scripts into different files.

Thanks heaps, the script file was getting kinda large, and heavy to maintain. *Bounces off, to fix up his script*
by zer0
Wed Feb 20, 2008 8:25 pm
Forum: MicroMacro general & support
Topic: seperating scripts into different files.
Replies: 9
Views: 3224

seperating scripts into different files.

I've written up a shaiya bot, and I've found that the core of it shouldn't rarely needs changing, but the part that has user configurables, and the class custom functions do change. Is their any way to seperate the code into different files? I'd like to have the main bot script in one file, the clas...
by zer0
Sun Feb 17, 2008 3:24 am
Forum: MicroMacro general & support
Topic: Running a Timer within a Timer
Replies: 3
Views: 1580

Re: Running a Timer within a Timer

Thanks for the quick reply. Yeah you just said what conclusion I came too. I had several timers, and figured rather than adding all that overhead, I could just have 1 timer, and each skill have it's own time integer. I think the error that I was getting wasn't from the actual code itself, because I ...
by zer0
Sun Feb 17, 2008 12:11 am
Forum: MicroMacro general & support
Topic: Running a Timer within a Timer
Replies: 3
Views: 1580

Running a Timer within a Timer

I'm creating a script for shaiya, and I'm trying to implement being able to use buffs. I first tried using just a Timer using registerTimer but that is un-reliable, since the bot may be involved in something else like sitting, or some other key presses. So then what I did is created a Timer, within ...