Search found 334 matches

by 3cmSailorfuku
Mon Mar 17, 2008 12:14 pm
Forum: MicroMacro scripts
Topic: Fiesta bot
Replies: 71
Views: 27592

Re: Fiesta bot

I used an unknown value search (for all integer types). I then would toggle between sitting and standing, and filter for a changed value. This can be very time consuming, and will probably result in a lot of different addresses which could potentially be involved. It all depends on the game in ques...
by 3cmSailorfuku
Sun Mar 16, 2008 6:19 am
Forum: MicroMacro scripts
Topic: AirRivals AutoShooter
Replies: 2
Views: 2506

Re: AirRivals AutoShooter

elverion wrote:Nice job! Isn't this game also known as Space Cowboy Online? Or is this one of those instances where there's different versions for different countries under a different name?
SCO has been shut down and got bought by GameForge which named it Flysis/AirRivals.
by 3cmSailorfuku
Sat Mar 15, 2008 1:44 pm
Forum: MicroMacro scripts
Topic: AirRivals AutoShooter
Replies: 2
Views: 2506

AirRivals AutoShooter

Been bored and got tired of shooting by myself. Secondary_addr = 0x0CE0A810; Primary_addr = 0x094F0FF0; function main() attach( findWindow("AirRivals_R") ); proc = openProcess( findProcess("AirRivals_R") ); setPriority(PRIORITY_HIGH); while(true) do Secondary = memoryReadByte(pro...
by 3cmSailorfuku
Thu Mar 13, 2008 6:29 am
Forum: MicroMacro general & support
Topic: Has anyone has been banned for using this bot?
Replies: 9
Views: 3071

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

well i got banned hahahaha cuz my bot usually KSing soooo many time and people report u on fiesta forum, then a GM came to u and talk to u, if u not avaiable, then yea ur banned Only attack monsters when their hp is 100%. Or dont attack monsters when their hp is decreasing while a monster is target...
by 3cmSailorfuku
Wed Mar 12, 2008 4:47 pm
Forum: Game cheating & modding
Topic: Fiesta Hacking PLZ HELP
Replies: 5
Views: 2899

Re: Fiesta Hacking PLZ HELP

The reason you are getting disconnected is because of the way Fiesta encrypts things. Unless you know a thing or two about it's encryption, then that's not the route to take. One solution is to inject a DLL into the game that will hook Fiesta's send function (pre-encryption) and log it all. You can...
by 3cmSailorfuku
Sat Mar 08, 2008 6:07 am
Forum: MicroMacro general & support
Topic: [HELP] Help with reading memory
Replies: 2
Views: 1374

Re: [HELP] Help with reading memory

It's hard to say without the log. At first look, everything looks fine. The only thing I see that could be a problem is startMacro(). You're calling it with the second parameter, which I just added for the Perfect World bot version. If you aren't using the MicroMacro included with that, then that's...
by 3cmSailorfuku
Fri Mar 07, 2008 11:48 am
Forum: MicroMacro general & support
Topic: [HELP] Help with reading memory
Replies: 2
Views: 1374

[HELP] Help with reading memory

Suggestions & fixes please. It's my first script. That's why it looks stupid and got stolen snippets. IsMenuOpen_addr = 0x00108CC0; function main() attach( findWindow("DJMAX") ); proc = openProcess( findProcess("DJMAX") ); setPriority(PRIORITY_HIGH); while(true) do IsMenuOpen...
by 3cmSailorfuku
Thu Mar 06, 2008 7:19 am
Forum: MicroMacro scripts
Topic: Perfect World bot & multi-client
Replies: 53
Views: 24248

Re: Perfect World bot & multi-client

Unfortunatly I don't have Shaiya but this release looks very nice. * Attached input now allows sending to non-focused or minimized windows. Does it work yet? Amazing then, now I just wish I would play a game where I could apply micromacro to ;) Now be careful guys. Within 1 day, my friend has been b...
by 3cmSailorfuku
Thu Mar 06, 2008 7:13 am
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 158082

Re: Shaiya bot

nooberz wrote:@elverion
can your bot work with shaiya client minimize?
No, it requires focus on the target application.

Though you may want to take a look on the second release..
* Attached input now allows sending to non-focused or minimized windows.
hmm
by 3cmSailorfuku
Mon Mar 03, 2008 2:14 am
Forum: Memory editing software
Topic: [Tutorial] Finding pointers & offsets (ArtMoney)
Replies: 10
Views: 15338

Re: [Tutorial] Finding pointers & offsets

wow very helpful tutorial for a newb like me, btw im having a problem finding the delay of atk in shaiya, anyone who is pro in finding the memory address, im asking you kindly to help me T_T after searching for hrs i gave up, hoping somebody here can help me, or a simple hint where can i find it. t...
by 3cmSailorfuku
Sun Mar 02, 2008 5:22 am
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 158082

Re: Shaiya bot

elverion wrote: 3cmSailorfuku: You're always around and helpful. How would you like to become a mod?
No thanks, I'm just here observing how it developes :P
by 3cmSailorfuku
Sun Mar 02, 2008 4:15 am
Forum: Everything else
Topic: Shaiya bot
Replies: 432
Views: 158082

Re: Shaiya bot

You're not the only one. It appears that they removed the graphical display of the monsters HP because we were using it to bot. Do you also seem to have this missing? Because of this, the bot continuously thinks that it does not have a target, and works sub-optimally. I really wish I could recruit ...
by 3cmSailorfuku
Thu Feb 28, 2008 11:54 am
Forum: MicroMacro scripts
Topic: Fiesta bot
Replies: 71
Views: 27592

Re: Fiesta bot

No, XTrap is nothing more than a rootkit that limits what you can and cannot do on your computer. The makers (and distributors) will continuously tell you that it's safe, but we both know they are liars. There is absolutely nothing safe about installing destructive software on your computer that op...
by 3cmSailorfuku
Tue Feb 26, 2008 11:43 am
Forum: Off topic
Topic: C#.NET HTTP Headers
Replies: 2
Views: 2106

Re: C#.NET HTTP Headers

Silly me, forgot to delete the content of the stream x,x try { // get the response WebResponse webResponse = webRequest.GetResponse(); if (webResponse == null) { return null; } StreamReader sr = new StreamReader (webResponse.GetResponseStream()); return sr.ReadToEnd ().Trim (); } Appending that solv...
by 3cmSailorfuku
Tue Feb 26, 2008 10:44 am
Forum: Off topic
Topic: C#.NET HTTP Headers
Replies: 2
Views: 2106

C#.NET HTTP Headers

If anyone's familiar with C#; public class PostUtility { public static string HttpPost(string uri, string parameters) { WebRequest webRequest = WebRequest.Create(uri); webRequest.ContentType = "application/x-www-form-urlencoded"; webRequest.Headers.Add("Cookie: xxxxx"); webReques...
by 3cmSailorfuku
Mon Feb 25, 2008 4:46 pm
Forum: Game cheating & modding
Topic: Rapplez epic 4
Replies: 7
Views: 4259

Re: Rapplez epic 4

SaruenGang uses rootkit like techniques, and is polymorphic, so will probably be classified as a trojan by most anti-virus software. Just be very careful with wherever you get it from, and make sure you have the latest version, otherwise it will not work. Infact it is a rootkit. But getting infecte...
by 3cmSailorfuku
Mon Feb 25, 2008 4:44 pm
Forum: MicroMacro general & support
Topic: seperating scripts into different files.
Replies: 9
Views: 3270

Re: seperating scripts into different files.

Nice topic :D ! So if you can separate config file like i always do using AutoIt, Can that config file be edited under micromacro using a GUI controls to edit or its not yet supported? Actually im starting to shift from using AutoIt to MicroMacro :mrgreen: Make a gui for your config via VB, C++/C o...
by 3cmSailorfuku
Mon Feb 25, 2008 9:36 am
Forum: Game cheating & modding
Topic: Rapplez epic 4
Replies: 7
Views: 4259

Re: Rapplez epic 4

has any one cracked this yet?? and how hard is it to learn Lua?? Use the tool SaruenGang to bypass MicroMacro/CE thru GameGuard. You might also want to check the Monster ID's if its a valid target, there are serval monsters against simple macros so you would just became stuck if there isn't a timeo...
by 3cmSailorfuku
Sat Feb 23, 2008 7:39 am
Forum: MicroMacro scripts
Topic: Fiesta bot
Replies: 71
Views: 27592

Re: Fiesta bot

charmingiv wrote:Sorry but the bot cant read the memory address of the hp and sp, even after I install the new patch or change the name of the files!
Are you sure that xtrap is gone and that Fiesta doens't have new offsets?
by 3cmSailorfuku
Thu Feb 21, 2008 9:40 am
Forum: MicroMacro general & support
Topic: Has anyone has been banned for using this bot?
Replies: 9
Views: 3071

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

elverion wrote: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
Even well placed meme's are still worse.