Search found 4475 matches

by Administrator
Thu Feb 21, 2008 1:23 pm
Forum: MicroMacro general & support
Topic: seperating scripts into different files.
Replies: 9
Views: 3233

Re: seperating scripts into different files.

Correct. This is a standard feature of Lua. It has not been removed or limited from use in MicroMacro. The function is dofile(filename). If no argument is given, then it will read from standard input (typically, you do not want this -- that means it reads whatever you type in as a command). You shou...
by Administrator
Thu Feb 21, 2008 1:15 pm
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145955

Re: Shaiya bot

You mean to have it cast buffs while fighting? You could just put the code in your fight function, I suppose. Use a timer to toggle a variable to true, check if it is true in your fighting loop, and if it is, then call your buff function (pretty much, just presses the key and then toggles the variab...
by Administrator
Thu Feb 21, 2008 9:15 am
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145955

Re: Shaiya bot

All addresses are now 02110AC8. The offsets remained the same (as expected).

I have just uploaded the fixed script in my original post.
by Administrator
Thu Feb 21, 2008 6:31 am
Forum: Game cheating & modding
Topic: Eudemons online
Replies: 1
Views: 2936

Re: Eudemons online

I remember Eudemons. I played that for awhile. Typically with a client/server based online game, the server keeps track of all variables, and the clients keep a copy for themselves (which is changed whenever the server sends updates). Now, there is also dead reckoning to take into consideration. Dea...
by Administrator
Thu Feb 21, 2008 6:06 am
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145955

Re: Shaiya bot

Jewbacca/Ploxasaurus has made an updated release. Everybody should bake and mail him cookies. Chocolate chip. Here's his updated game.exe patch.

According to Virus Total, it's clean.
by Administrator
Thu Feb 21, 2008 6:01 am
Forum: MicroMacro general & support
Topic: Has anyone has been banned for using this bot?
Replies: 9
Views: 3009

Re: Has anyone has been banned for using this bot?

Sure there is.

Code: Select all

keyboardPress( key.VK_ENTER ); -- start typing a chat message
keyboardType("I like mudkips."); -- whatever you want to say
keyboardPress(key.VK_ENTER ); -- send the chat message
by Administrator
Tue Feb 19, 2008 11:44 pm
Forum: MicroMacro scripts
Topic: Fiesta bot
Replies: 71
Views: 26597

Re: Fiesta bot

You're right. Those virtual keys won't work. You need to emulate a key hold for those.

Code: Select all

  keyboardHold( key.VK_SHIFT );
  yrest(50);
  keyboardPress( key.VK_1 );
  yrest(50);
  keyboardRelease( key.VK_SHIFT );
by Administrator
Tue Feb 19, 2008 11:41 pm
Forum: MicroMacro general & support
Topic: Has anyone has been banned for using this bot?
Replies: 9
Views: 3009

Re: Has anyone has been banned for using this bot?

Well, I certainly haven't. I log in every few days over the last 3 months and let the bot run for awhile just to make sure it's still working. Actually, I have yet to be banned from any game for using it.
by Administrator
Mon Feb 18, 2008 10:42 pm
Forum: MicroMacro general & support
Topic: [HELP]Fiestabot
Replies: 15
Views: 5929

Re: [HELP]Fiestabot

-- skill1 : buff 1 -- skill2 : buff 2 -- skill3 : buff 3 -- skill4 : buff 4 1 -> attack 2 -> pickup 3 -> heal 4 -> SP potion 5 -> buff 6 -> buff 7 -> buff 8 -> buff 9 -> scroll 0 -> scroll _ -> scroll = -> scroll It won't bash. I've answered this question one too many times. In fact, I've lost count.
by Administrator
Mon Feb 18, 2008 3:29 am
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145955

Re: Shaiya bot

For the most part; yes. That is what I mean. That's not to say that they can't work, just that I honestly can't be bothered to write a better bot for a game I don't play. Plus, I found (at least on my character), that many of the skills wern't worth using, and that the mana was better saved for buff...
by Administrator
Mon Feb 18, 2008 12:08 am
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145955

Re: Shaiya bot

Skills don't really work too well, no. You should change your HP_sit variable in the script to a higher number (say, 1/2 your HP).
by Administrator
Sun Feb 17, 2008 10:01 pm
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145955

Re: Shaiya bot

Ok. I've found the problem. The monster's HP bar was moved.
Change

Code: Select all

r,g,b = getPixel(hdc, 258, 36);
to

Code: Select all

r,g,b = getPixel(hdc, 254, 44);
by Administrator
Sun Feb 17, 2008 9:32 am
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145955

Re: Shaiya bot

This just keeps getting stranger and stranger... Lets start with this, though... Make a new script, put this in it: function main() win = findWindow("Shaiya"); hdc = openDC( win ); for i = 0,10 do r,g,b = getPixel(hdc, 256 + i, 256 + i); printf("R: %d, G: %d, B: %d\n", r, g, b); ...
by Administrator
Sun Feb 17, 2008 8:53 am
Forum: MicroMacro general & support
Topic: Running a Timer within a Timer
Replies: 3
Views: 1581

Re: Running a Timer within a Timer

It probably originated from a long C function call from a Lua meta-thread, yet remained after removing the calls due to a minor bug in starting/stopping scripts. It doesn't appear to want to clear out all of the extra meta-threads when stopping sometimes, and they will continue when you start or loa...
by Administrator
Sun Feb 17, 2008 2:54 am
Forum: MicroMacro general & support
Topic: Running a Timer within a Timer
Replies: 3
Views: 1581

Re: Running a Timer within a Timer

This can happen when using calls such as rest, yrest, or an assortment of other MicroMacro functions from within a timer. That's also abusing the timer system. Timers are designed for small things like toggling switches or updating variables. What you should do is have just one timer that sets a var...
by Administrator
Fri Feb 15, 2008 1:17 am
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145955

Re: Shaiya bot

Hmm, ok, this could help. I'll check out different resolutions.

It worked under 1280*1024 (1024*768 in game), and 1440*900 (also 1024*768 in game).
by Administrator
Thu Feb 14, 2008 10:23 pm
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145955

Re: Shaiya bot

Does it work at all under 1280*1024, or were you unable to check that?
by Administrator
Thu Feb 14, 2008 5:51 pm
Forum: MicroMacro general & support
Topic: fixed.
Replies: 7
Views: 2449

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.
by Administrator
Thu Feb 14, 2008 5:42 pm
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145955

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...
by Administrator
Thu Feb 14, 2008 8:08 am
Forum: Misc tools
Topic: PermEdit : A tool for granting system access to programs
Replies: 0
Views: 7830

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...