Search found 196 matches

by Exempt
Sun Oct 23, 2011 1:38 pm
Forum: Game cheating & modding
Topic: Building a packet struct then replaying it?
Replies: 5
Views: 2939

Re: Building a packet struct then replaying it?

Hm, I'll have to look up how to do the byte conversion I guess. Type casting wouldn't work for converting the byte to says floats and ints?. I have some good reasources for how the decrpyt and encrypt work tho and I believe the only unique thing about a file is it generate a random number 0-254 and ...
by Exempt
Sat Oct 22, 2011 7:54 pm
Forum: Game cheating & modding
Topic: Building a packet struct then replaying it?
Replies: 5
Views: 2939

Building a packet struct then replaying it?

Hm, well I know I'm going to be sending in packets I make back thru the encrypt function but I'm not sure how to do this best. I was just going to create a array that contains all the bytes for my movements then just replay them from the array, by just increamenting the array by the size of the pack...
by Exempt
Sat Oct 22, 2011 5:29 am
Forum: Game cheating & modding
Topic: Hook directx or packet decrypt function...?
Replies: 26
Views: 8868

Re: Hook directx or packet decrypt function...?

The proto type was the issue. I had to make it a __thiscall wit the void *pthis as the first argument. MSVS recognizes __thiscall so I was able to do it with MSVS.
by Exempt
Fri Oct 21, 2011 8:38 pm
Forum: Game cheating & modding
Topic: Hook directx or packet decrypt function...?
Replies: 26
Views: 8868

Re: Hook directx or packet decrypt function...?

EDIT: Well, after a ton of time wasted with code::blocks... I just realized something. msvs isn't all that hard to do. When i created my own project from scratch added just what i needed i've got it working!...downside is there is a crap load of packets constantly coming lol. Thanks a ton for the he...
by Exempt
Fri Oct 21, 2011 7:26 pm
Forum: Game cheating & modding
Topic: Hook directx or packet decrypt function...?
Replies: 26
Views: 8868

Re: Hook directx or packet decrypt function...?

EDIT: Ugh, Appearently code::blocks with the gcc compiler can mangle up the DLLMAIN causing it to not call to DLL_PROCESS_ATTACH or something of the sort... I have managed to crash the game now, lol. dam extern "C" BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved...
by Exempt
Fri Oct 21, 2011 4:09 pm
Forum: Game cheating & modding
Topic: Hook directx or packet decrypt function...?
Replies: 26
Views: 8868

Re: Hook directx or packet decrypt function...?

How can I be sure the code is compiling as a 32bit code? I've read that it may only work on 32bit source and apps.

Edit: Sorry i though i hit edit.
by Exempt
Thu Oct 20, 2011 3:37 pm
Forum: Game cheating & modding
Topic: Hook directx or packet decrypt function...?
Replies: 26
Views: 8868

Re: Hook directx or packet decrypt function...?

EDIT3: I figured out how to add this pthis back but it didn't chage typedef int (__stdcall* DecryptCall)(void* pthis, unsigned char* buffer, int length); I just put it back into the DetourDecrypt function like this int decryptres = decrypt(pthis, buffer, len); -.- EDIT2: I changed all the "log....
by Exempt
Wed Oct 19, 2011 10:46 pm
Forum: Game cheating & modding
Topic: Hook directx or packet decrypt function...?
Replies: 26
Views: 8868

Re: Hook directx or packet decrypt function...?

So, I should just build onto the DLL and not make a .exe to work with it at this point? I confused at how I'd log DetourDecrypt from the DLL itself. Unless maybe I just use the Write to file function from the other code snipplet i have. I'm pretty unfamilar with that tho. Is that what you mean tho? ...
by Exempt
Wed Oct 19, 2011 9:11 pm
Forum: Game cheating & modding
Topic: Hook directx or packet decrypt function...?
Replies: 26
Views: 8868

Re: Hook directx or packet decrypt function...?

Ugh, lol always something different. I'm basing alot of what I do on some example codes I have, from a app that does exactly what I'm trying to do already. Assuming I start from scratch. All i really need to do is Find the function in memory "0x41C230" Make a typedef for it. "typedef ...
by Exempt
Wed Oct 19, 2011 3:49 pm
Forum: Game cheating & modding
Topic: Hook directx or packet decrypt function...?
Replies: 26
Views: 8868

Re: Hook directx or packet decrypt function...?

When I try to make my type def out in Code::Blocks(trying to make this easier) it doesn't recognize __thiscall as anything. my dll header file. #ifndef __MAIN_H__ #define __MAIN_H__ #include <windows.h> /* To use this exported function of dll, include this header * in your project. */ #ifdef BUILD_D...
by Exempt
Tue Oct 18, 2011 10:39 pm
Forum: Game cheating & modding
Topic: Hook directx or packet decrypt function...?
Replies: 26
Views: 8868

Re: Hook directx or packet decrypt function...?

When using Azorbix's detours lib is there no real .lib file, If so what would be the proper way to implement this into my code? This does seem to be to code I need tho, the typedef I need to use it exactly what this handles. From what the documentation says about it.
by Exempt
Tue Oct 18, 2011 6:22 am
Forum: Game cheating & modding
Topic: Hook directx or packet decrypt function...?
Replies: 26
Views: 8868

Re: Hook directx or packet decrypt function...?

I may try and use that, I was hoping to figure thi one out tho.
by Exempt
Mon Oct 17, 2011 11:52 pm
Forum: Game cheating & modding
Topic: Hook directx or packet decrypt function...?
Replies: 26
Views: 8868

Re: Hook directx or packet decrypt function...?

I can inject a dll but not using this detour stuff for some reason. I just got detour 3.0 and made the new makefile for it. I'm gonna try it out tomarrow, I think I'm getting closer to what i need. It didn't work cause of compiler errors, I just got vs 2010 pro so it's kinda breaking my brain atm. I...
by Exempt
Mon Oct 17, 2011 7:42 pm
Forum: Game cheating & modding
Topic: Hook directx or packet decrypt function...?
Replies: 26
Views: 8868

Re: Hook directx or packet decrypt function...?

I'm unable to get one to inject right. I just messed up my pc too and had to reset ir back lol. Now i start again. I'm really not sure how to use the function even after i get the detour injected tho. Edit: If I do try and hook the packet decrypt function would this be how I'd use it?... Use win soc...
by Exempt
Mon Oct 17, 2011 1:50 pm
Forum: Game cheating & modding
Topic: Hook directx or packet decrypt function...?
Replies: 26
Views: 8868

Re: Hook directx or packet decrypt function...?

I will try some more but i've done that asweel many times. :( If you ever get any free time try and take a look at it, the game is small to dl and free to play. xenimus.com

Edit: Yeah, I'm not getting anythin consistant from this, ugh.
by Exempt
Mon Oct 17, 2011 1:28 pm
Forum: Game cheating & modding
Topic: Hook directx or packet decrypt function...?
Replies: 26
Views: 8868

Re: Hook directx or packet decrypt function...?

Sadly, this game does not have the normal targeting you'd find in a bigger 3d game. I'm pretty sure you've even tried to find some of the monster info last time I went here, and ere unable ot figure it out. I've to search for the target i'm click on the targets location and even the hp left on the t...
by Exempt
Mon Oct 17, 2011 11:47 am
Forum: Game cheating & modding
Topic: Hook directx or packet decrypt function...?
Replies: 26
Views: 8868

Hook directx or packet decrypt function...?

If you had the choice to hook directx or a packet dycrypt function inorder to find enemy information which would you do.. I'm still pretty noobish to hooking in general so I was thinking the packet one would be a bit easier but I'm not sure. Game is stillxenimus and I still cannot detect enemy. It's...
by Exempt
Sat Oct 01, 2011 4:54 pm
Forum: MicroMacro general & support
Topic: Trying to make a simple mining bot for a game called Wurm...
Replies: 7
Views: 6578

Re: Trying to make a simple mining bot for a game called Wur

Lame, I cannot figure out drectx hooking. I spent 2 weeks tinkering with a hooking tutorial and didn't get anywhere. Do you happen to know any basic hooking tutorials that use DLL injection?
by Exempt
Fri Sep 30, 2011 7:27 pm
Forum: MicroMacro general & support
Topic: Trying to make a simple mining bot for a game called Wurm...
Replies: 7
Views: 6578

Re: Trying to make a simple mining bot for a game called Wur

Well, that's not very helpful. It could still be anything. Would this happen to be a flash game? If not, can you try testing it on another window to rule that out? PS: You're Avatar scares me. :shock: But it is cute. I don't think it uses flash, the game was made with Java. http://www.wurmonline.co...
by Exempt
Mon Sep 26, 2011 2:05 pm
Forum: MicroMacro general & support
Topic: Trying to make a simple mining bot for a game called Wurm...
Replies: 7
Views: 6578

Re: Trying to make a simple mining bot for a game called Wur

log.txt just says this.... on Sep 26 14:00:45 2011 : Processor Type: 4X AMD or Intel x64 @3292MHz, OS: Windows 7 Service Pack 1 Mon Sep 26 14:00:45 2011 : User privilege level: Administrator Mon Sep 26 14:00:45 2011 : Lua glues exported Mon Sep 26 14:00:45 2011 : MicroMacro v1.01 beta 4 Mon Sep 26 1...