Search found 334 matches

by 3cmSailorfuku
Thu Feb 21, 2008 9:38 am
Forum: MicroMacro general & support
Topic: seperating scripts into different files.
Replies: 9
Views: 3224

Re: 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 cla...
by 3cmSailorfuku
Wed Feb 20, 2008 9:07 am
Forum: MicroMacro general & support
Topic: Has anyone has been banned for using this bot?
Replies: 9
Views: 3003

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

If you're afraid, use a random seed :P
by 3cmSailorfuku
Fri Feb 15, 2008 6:54 am
Forum: MicroMacro general & support
Topic: fixed.
Replies: 7
Views: 2447

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. It's possible to...
by 3cmSailorfuku
Thu Feb 14, 2008 10:36 am
Forum: MicroMacro general & support
Topic: fixed.
Replies: 7
Views: 2447

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 at...
by 3cmSailorfuku
Sun Feb 10, 2008 1:40 pm
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 145173

Re: Shaiya bot

Guest wrote:how do i edit the lua file?
You open it with notepad or LUAEdit if you want to have more functions and parsing. Don't use Wordpad or Word though.
by 3cmSailorfuku
Mon Feb 04, 2008 9:30 am
Forum: MicroMacro scripts
Topic: World of Kungfu Bot (Updated)
Replies: 71
Views: 49278

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 m...
by 3cmSailorfuku
Sun Feb 03, 2008 7:41 pm
Forum: MicroMacro scripts
Topic: World of Kungfu Bot (Updated)
Replies: 71
Views: 49278

Re: World of Kungfu Bot (Updated)

Actually I'm not even sure how would be the best to go about this. There are several ways it can be done. It might be easiest to just inject some DLLs into the target process, and have MicroMacro send a message requesting that the DLL call the functions from within the program. It's actually kind o...
by 3cmSailorfuku
Sun Feb 03, 2008 6:07 pm
Forum: MicroMacro scripts
Topic: World of Kungfu Bot (Updated)
Replies: 71
Views: 49278

Re: World of Kungfu Bot (Updated)

Yeah. That's where the plugin system will help. All you would need to do is download the associated .dll files, put them in the plugin folder, and everything will work. I really would need some example code to work from, so if you're up to the challenge, go ahead and try doing exactly this (make su...
by 3cmSailorfuku
Sun Feb 03, 2008 9:47 am
Forum: MicroMacro general & support
Topic: LIB.Lua Error Message
Replies: 15
Views: 7113

Re: LIB.Lua Error Message

Nice. it felt the same as when i access my home FTP. imo at work now. can't do the actual test but i noticed that when i ran other lua scripts they dun have this error. vb fourms are really popular nowdays and can handle serious loads. you should go for that. this one is php right. i am a never tou...
by 3cmSailorfuku
Sun Feb 03, 2008 9:26 am
Forum: MicroMacro scripts
Topic: World of Kungfu Bot (Updated)
Replies: 71
Views: 49278

Re: World of Kungfu Bot (Updated)

Not necessarily. Doing it that way would be a lot of work, yes. What I had proposed was to just fake it, and let the client figure it out. That is, rather than figure out where the correct place to click is, set the addresses to where you want to go, and induce the movement. But yeah, it's a boring...
by 3cmSailorfuku
Sat Feb 02, 2008 7:46 pm
Forum: MicroMacro scripts
Topic: World of Kungfu Bot (Updated)
Replies: 71
Views: 49278

Re: World of Kungfu Bot (Updated)

Of course. However, the way I see it is that we can setup waypoints. Whenever there are no enemies in the area, it would move to the next waypoint, check again, and continue moving along the chain of waypoints. To determine if you are at the waypoint, you would, of course, need to use the distance ...
by 3cmSailorfuku
Tue Jan 22, 2008 8:36 am
Forum: MicroMacro general & support
Topic: error on fiesta again :S
Replies: 19
Views: 6495

Re: error on fiesta again :S

I was attacked when i was standing still actually. One more thing is, after i run the script for like 2-3 hrs, the script cant seem to find the hp\sp address and reported in the log. After which it reports as i was being killed, but im still standing there. I tried "F5" again it reported ...
by 3cmSailorfuku
Tue Jan 22, 2008 8:32 am
Forum: MicroMacro general & support
Topic: Calling functions?
Replies: 2
Views: 2673

Re: Calling functions?

Yes, actually. Version 0.97 should bring the plugin system to play. I also would like to allow for DLL injection into the target process(es). The plugins will simply be a DLL with certain functions which are called when installed/removed. The basic flow of it is that you would write a plugin which ...
by 3cmSailorfuku
Mon Jan 21, 2008 6:31 pm
Forum: MicroMacro general & support
Topic: Calling functions?
Replies: 2
Views: 2673

Calling functions?

Found your website today and I really like the idea of your project, because I was once also writing scripts for Requia which used LUA aswell but was way more advanced, but didn't let you use memory poking because the admin was selfish ;) Anyway, I wondered if there is a possibility in the future to...