Shaiya bot

For any other game that doesn't have its own section.
Post Reply
Message
Author
User avatar
Administrator
Site Admin
Posts: 5307
Joined: Sat Jan 05, 2008 4:21 pm

Re: Shaiya bot

#81 Post by Administrator » Thu Feb 21, 2008 6:06 am

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.

annaanna
Posts: 4
Joined: Thu Feb 21, 2008 1:02 am

Re: Shaiya bot

#82 Post by annaanna » Thu Feb 21, 2008 8:13 am

Any1 have the new hp/mp/sp adresses?

User avatar
Administrator
Site Admin
Posts: 5307
Joined: Sat Jan 05, 2008 4:21 pm

Re: Shaiya bot

#83 Post by Administrator » Thu Feb 21, 2008 9:15 am

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

I have just uploaded the fixed script in my original post.

annaanna
Posts: 4
Joined: Thu Feb 21, 2008 1:02 am

Re: Shaiya bot

#84 Post by annaanna » Thu Feb 21, 2008 10:02 am

Sweeeet!!!!

Working now :P

Btw: is there anyway to make a sub that like buff (after certain amount of time) that works "beside the "hunt/pickup loop" ?

// anna

User avatar
Administrator
Site Admin
Posts: 5307
Joined: Sat Jan 05, 2008 4:21 pm

Re: Shaiya bot

#85 Post by Administrator » Thu Feb 21, 2008 1:15 pm

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 variable back off).

annaanna
Posts: 4
Joined: Thu Feb 21, 2008 1:02 am

Re: Shaiya bot

#86 Post by annaanna » Thu Feb 21, 2008 2:02 pm

i tried that but hmm im not that good with coding, i tried look at their homepage but dident figure out the "timer" thing ...

i just want a timer to cast (press a key every 10 min or so) for the buff spell

User avatar
Administrator
Site Admin
Posts: 5307
Joined: Sat Jan 05, 2008 4:21 pm

Re: Shaiya bot

#87 Post by Administrator » Thu Feb 21, 2008 2:16 pm

Code: Select all

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... this includes the call to your fight functions

    if( need_buff ) then cast_buff(); end; -- we call our timer
  end
end

hpr12951
Posts: 29
Joined: Sat Feb 09, 2008 11:16 am

Re: Shaiya bot

#88 Post by hpr12951 » Thu Feb 21, 2008 4:04 pm

I can't open the new script.(It says " unexpected symbol near '/' ")

If I used old script, the skill works in column 9, once the skill works, it go straight to attack.
After the monster die, my warrior just sit, then no more attacking(but still pressing column 9)

Any idea?

User avatar
Administrator
Site Admin
Posts: 5307
Joined: Sat Jan 05, 2008 4:21 pm

Re: Shaiya bot

#89 Post by Administrator » Thu Feb 21, 2008 4:30 pm

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

Mjezujuorn
Posts: 10
Joined: Wed Feb 06, 2008 7:17 am

Re: Shaiya bot

#90 Post by Mjezujuorn » Thu Feb 21, 2008 5:52 pm

The link to the new game.exe doesn't work...

hpr12951
Posts: 29
Joined: Sat Feb 09, 2008 11:16 am

Re: Shaiya bot

#91 Post by hpr12951 » Thu Feb 21, 2008 6:16 pm

If I used old script, it appears that skill 9 works. (col.9 and attack and pick)

However, after attacking~ sits forever. Why is that happened? Could make it back to normal?

some206
Posts: 7
Joined: Sun Jan 27, 2008 3:36 pm

Re: Shaiya bot

#92 Post by some206 » Thu Feb 21, 2008 6:17 pm

my bot wont load


Thu Feb 21 15:14:00 2008 : MicroMacro v0.96
Thu Feb 21 15:14:00 2008 : Processor Type: 2X 586, OS: Windows XP Service Pack 2
Thu Feb 21 15:14:00 2008 : Lua initialized successfully.
Thu Feb 21 15:14:00 2008 : Lua libs opened successfully.
Thu Feb 21 15:14:00 2008 : Lua glues exported.
Thu Feb 21 15:14:00 2008 : Configurations run.
Thu Feb 21 15:14:09 2008 : Executing script "shaiya.lua".
==================================================

Thu Feb 21 15:14:09 2008 : C:\Documents and Settings\Jacob\Desktop\micromacro\scripts\shaiya.lua:201: unexpected symbol near '/'
Thu Feb 21 15:14:09 2008 : Execution of shaiya.lua complete.
Thu Feb 21 15:14:09 2008 : Execution error: Syntax error
Thu Feb 21 15:14:09 2008 : Collecting garbage...
Thu Feb 21 15:14:09 2008 : 23KB freed.



Thu Feb 21 15:14:22 2008 : Executing script "shaiya".
==================================================

Thu Feb 21 15:14:22 2008 : cannot open C:\Documents and Settings\Jacob\Desktop\micromacro\scripts\shaiya: No such file or directory
Thu Feb 21 15:14:22 2008 : Execution of shaiya complete.
Thu Feb 21 15:14:22 2008 : Execution error: Error reading file
Thu Feb 21 15:14:22 2008 : Collecting garbage...
Thu Feb 21 15:14:22 2008 : 0KB freed.

hpr12951
Posts: 29
Joined: Sat Feb 09, 2008 11:16 am

Re: Shaiya bot

#93 Post by hpr12951 » Thu Feb 21, 2008 6:27 pm

U have to open the script, and find a place with " // "(no quote) and replace // with --

User avatar
Administrator
Site Admin
Posts: 5307
Joined: Sat Jan 05, 2008 4:21 pm

Re: Shaiya bot

#94 Post by Administrator » Thu Feb 21, 2008 8:19 pm

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. Screw around with it and see if you can figure it out. I'll check it out later if you have problems.

Mjezujuorn
Posts: 10
Joined: Wed Feb 06, 2008 7:17 am

Re: Shaiya bot

#95 Post by Mjezujuorn » Fri Feb 22, 2008 2:54 pm

Hey guys do you know where i can download the original game.exe?

User avatar
Administrator
Site Admin
Posts: 5307
Joined: Sat Jan 05, 2008 4:21 pm

Re: Shaiya bot

#96 Post by Administrator » Fri Feb 22, 2008 3:01 pm

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.

Mjezujuorn
Posts: 10
Joined: Wed Feb 06, 2008 7:17 am

Re: Shaiya bot

#97 Post by Mjezujuorn » Fri Feb 22, 2008 4:56 pm

So I have problems: when I've installed the anti-GG game.exe i cannot play the game.
It returns to me a error 0 and disconnect me from the server and I lost my internet connection.

I don't know why but this problem is only for shaiya: others application works fine.

Can you help me?

User avatar
Administrator
Site Admin
Posts: 5307
Joined: Sat Jan 05, 2008 4:21 pm

Re: Shaiya bot

#98 Post by Administrator » Fri Feb 22, 2008 5:56 pm

I'll have to take a look at this later; I have a business meeting to attend to shortly.

Could you please post some information about your system? Information such as your operating system, your processor(s), the exact error message, etc.

Also, make sure you launch Shaiya's patcher and let it patch Shaiya up to date, then reinstall the no GG patch. See if that helps.

Mjezujuorn
Posts: 10
Joined: Wed Feb 06, 2008 7:17 am

Re: Shaiya bot

#99 Post by Mjezujuorn » Fri Feb 22, 2008 7:33 pm

My os is win xp pro sp2 with an e6750 processor.
The error is the famous error 0 that you see in the official forum of shaiya but sometime i recive an error 997 with the disconnection.

Tried with updated game.exe: i let shaiya make updates but nothing appens.

User avatar
Administrator
Site Admin
Posts: 5307
Joined: Sat Jan 05, 2008 4:21 pm

Re: Shaiya bot

#100 Post by Administrator » Fri Feb 22, 2008 10:12 pm

Can you point me to more information on this error on the shaiya forum?

It sounds like it's an error with Shaiya, not MicroMacro, so I cannot be of much help.

Post Reply

Who is online

Users browsing this forum: No registered users and 2 guests