Search found 4499 matches

by Administrator
Fri Feb 22, 2008 3:01 pm
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 224485

Re: Shaiya bot

The original game.exe patch, or the official game.exe?

The patch can be found here: http://www.sendspace.com/file/l2eaa2
The official game.exe can be downloaded by running the official patcher.
by Administrator
Thu Feb 21, 2008 8:19 pm
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 224485

Re: Shaiya bot

Yeah, either that or redownload the script. I fixed that and reuploaded it just awhile ago. I'll be attaching the game.exe to my original post in case that download link still doesn't work. However, after attacking~ sits forever. Why is that happened? Could make it back to normal? I'm not sure. Scre...
by Administrator
Thu Feb 21, 2008 4:30 pm
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 224485

Re: Shaiya bot

Oops. I have the tendency to misplace -- with //, as I'm too used to C/C++. Anyways, I uploaded the fixed fixed script. You can just open the script you downloaded and search for "//" (without quotes), and replace that with "--".
by Administrator
Thu Feb 21, 2008 2:16 pm
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 224485

Re: Shaiya bot

need_buff = false; function buff_timer() need_buff = true; end function cast_buff() need_buff = false; keyboardPress( key.VK_6 ); -- key 6 - only an example end function main() registerTimer("buff_timer", 10 * (1000*60), buff_timer); while( 1 ) do -- your typical main loop goes here... th...
by Administrator
Thu Feb 21, 2008 1:23 pm
Forum: MicroMacro general & support
Topic: seperating scripts into different files.
Replies: 9
Views: 4330

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: 224485

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: 224485

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: 3999

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: 224485

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: 3855

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: 36174

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: 3855

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: 8113

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: 224485

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: 224485

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: 224485

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: 224485

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: 2041

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: 2041

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: 224485

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