Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Mabinogi > Mabinogi Hacks, Bots, Cheats & Exploits
You last visited: Today at 19:18

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Simple [Questions] and [Requests]

Discussion on Simple [Questions] and [Requests] within the Mabinogi Hacks, Bots, Cheats & Exploits forum part of the Mabinogi category.

Closed Thread
 
Old 05/17/2011, 06:40   #106
 
Snoweł's Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 149
Received Thanks: 115
Quote:
Originally Posted by kotarou3 View Post
Dll injection is easier than you think. All you need is to get the handle of the target process and do this
Code:
CreateRemoteThread(handle, NULL, 0, (LPTHREAD_START_ROUTINE)LoadLibrary, "Yourdll.dll", 0, NULL);
That is only DLL injection, you still have to make a separate DLL which creates a Variable from an Address in the Process Memory and modifies it. I have posted some sample code that I made to do just that, it has been tested and works (you have to change "0x0000000" of course).

Code:
[COLOR="DeepSkyBlue"]#include <windows.h>[/COLOR]
[COLOR="Blue"][B]float[/B][/COLOR] * AddressName = ([COLOR="Blue"][B]float[/B][/COLOR]*) [COLOR="Blue"]0x0000000[/COLOR];

[COLOR="Blue"][B]void[/B][/COLOR] HackThread() { [COLOR="Green"]//The thread where most of our stuff goes on.[/COLOR]
[COLOR="Blue"]for[/COLOR]([B];;[/B]){
*AddressName = [COLOR="DeepSkyBlue"]4000000[/COLOR]; [COLOR="Green"]//Makes "AddressName" or 0x00000000 equal to 4000000.[/COLOR]
Sleep(77); [COLOR="Green"]//Adding a "Sleep" is a good idea and will prevent the program from crashing, even cheat engine has a freeze interval of 100 Milliseconds.[/COLOR]
}
}


BOOL APIENTRY DllMain(HINSTANCE hDll, DWORD callReason, LPVOID lpReserved) 
{
[COLOR="Blue"][B]if[/B][/COLOR](callReason == DLL_PROCESS_ATTACH) 
{
CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)HackThread, NULL, NULL, NULL); [COLOR="Green"]//Our DLL was just injected so let's create our new thread.[/COLOR]
}
[COLOR="Blue"][B]return[/B][/COLOR] 1;
}
EDIT: Shortened Code.

EDIT: Changed "#define AddressName 0x00000000" to "float * AddressName = (float*)0x0000000;" and removed unnecessary code.

Note: Be sure to initialize the memory addresses to their corresponding data types, i.e. make sure that the data at 0x0000000 is actually a float.
Snoweł is offline  
Old 05/17/2011, 12:08   #107
 
elite*gold: 0
Join Date: Mar 2010
Posts: 912
Received Thanks: 112
We were talking about how to inject a dll, not how to make a patcher :P
kotarou3 is offline  
Old 05/18/2011, 00:28   #108
 
Snoweł's Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 149
Received Thanks: 115
Quote:
Originally Posted by kotarou3 View Post
We were talking about how to inject a dll, not how to make a patcher :P
0h r3@11y?
Quote:
Originally Posted by slyforn View Post
I'd just like to know if there are any decent tutorials corresponding to how to make dll's for dll injection etc.
Snoweł is offline  
Old 05/18/2011, 09:34   #109
 
elite*gold: 0
Join Date: Mar 2010
Posts: 912
Received Thanks: 112
Quote:
Originally Posted by Snoweł View Post
0h r3@11y?
Yes really.
Making a dll injectable dll =/= making a memory editor/patcher
kotarou3 is offline  
Old 05/18/2011, 12:27   #110
 
elite*gold: 0
Join Date: Sep 2009
Posts: 1,528
Received Thanks: 613
Btw, what happened to:

Quote:
Originally Posted by Snoweł
Dark - Sora; the One Who Went GoSub Without Return.
- Fin -
There's something about Mabi, and people failing to quit successfully.
Nexon EU forums are full of people quitting, but continuing to post..
adam_j is offline  
Old 05/19/2011, 01:19   #111
 
Snoweł's Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 149
Received Thanks: 115
Quote:
Originally Posted by kotarou3 View Post
Yes really.
Making a dll injectable dll =/= making a memory editor/patcher
When I said 0h r3@11y I was referring to the first part of your reply; "We were talking about how to inject a dll", that is why I made "how to make dll's for dll injection etc" bold, because actually wanted to learn how to make DLLs which were meant for injection and not how to make an injector.

Quote:
Originally Posted by adam_j View Post
Btw, what happened to:
Quote:
Originally Posted by Snoweł
Dark - Sora; the One Who Went GoSub Without Return.
- Fin -
There's something about Mabi, and people failing to quit successfully.
Nexon EU forums are full of people quitting, but continuing to post..
Dark - Sora went GoSub without Return, Snoweł is running on a separate thread (with a "While (1 < 2)" loop).
Snoweł is offline  
Old 05/20/2011, 05:27   #112
 
elite*gold: 0
Join Date: May 2011
Posts: 3
Received Thanks: 0
i just found mabi and know nothing about it. but i came looking for some easy-ness for playing b/c i have work and summer semester then fall. not much time ya know? so where do i begin? i see a post about fiddling with xml? i looked through some pages of the main forum but i think i dont see any guides about fiddling with xml's of mabinogi. im overwhelmed and not sure how to do what so i can bot and get into it. i dont want to be a leech so not sure what i can provide? i do post a lot though as i am active in the night when i try to play some stuff. is this question too general?? please tell me,
beerpong is offline  
Old 05/25/2011, 12:01   #113
 
elite*gold: 0
Join Date: Sep 2009
Posts: 1,528
Received Thanks: 613
Quote:
Originally Posted by Snoweł View Post

Dark - Sora went GoSub without Return, Snoweł is running on a separate thread (with a "While (1 < 2)" loop).
So, you performed failquit.
adam_j is offline  
Old 05/26/2011, 03:57   #114
 
Snoweł's Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 149
Received Thanks: 115
Quote:
Originally Posted by adam_j View Post
So, you performed failquit.
Yes xD
Snoweł is offline  
Old 05/31/2011, 23:33   #115
 
TNinja's Avatar
 
elite*gold: 0
Join Date: May 2011
Posts: 28
Received Thanks: 1
Not exactly sure what I'm looking for.

So, I was looking for a way to mod font.
I don't really know how most stuff works.

Got Tiara's G11 pack, and Tiara's font is a bit too small. I remember having a larger font that was lagless.

How to work?
TNinja is offline  
Old 06/01/2011, 07:41   #116
 
elite*gold: 0
Join Date: Sep 2009
Posts: 1,528
Received Thanks: 613
You are probably looking for Bus Accident's font, which is the original mabi font, but smaller. (in terms of pixels, it's about the same size in game)

adam_j is offline  
Old 06/01/2011, 19:58   #117
 
TNinja's Avatar
 
elite*gold: 0
Join Date: May 2011
Posts: 28
Received Thanks: 1
Oh, nice. Love you for that one.

Oh, is there a way to have unlimited healing range without losing the Crash Shot skill?

Oh, playing Mabinogi EU by the way.
TNinja is offline  
Old 06/01/2011, 20:22   #118
 
elite*gold: 0
Join Date: May 2010
Posts: 409
Received Thanks: 78
Quote:
Originally Posted by TNinja View Post
Oh, nice. Love you for that one.

Oh, is there a way to have unlimited healing range without losing the Crash Shot skill?

Oh, playing Mabinogi EU by the way.
Uh, I never lost crash shot with long ranged heal.

And I just tested and I can do both.
SSDarkLink is offline  
Old 06/01/2011, 20:51   #119
 
TNinja's Avatar
 
elite*gold: 0
Join Date: May 2011
Posts: 28
Received Thanks: 1
Well, nevemind that anyway. I got a new skillinfo file form someone, and now everything works.
TNinja is offline  
Old 06/09/2011, 17:11   #120
 
Alwaho's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 929
Received Thanks: 290
Alright, quick question here. I have been working on perfect ghost lock for the longest time. I have gone through at least 30 jumps and yet, I never got it to work. I am working in standard and im looking for anything I can jump. Am I doing the edit wrong? Am I even in the right dll? Any help would be appreciated, if none can be offered. I understand. Thanks
Alwaho is offline  
Closed Thread


Similar Threads Similar Threads
Post your simple [Questions] and [Requests] here.
02/08/2011 - Mabinogi - 300 Replies
Post your simple and here. Instead of people making tons of threads for stupid questions, post them here, please. Usually these little questions are easily answered and do not require a whole thread to discuss (and these usually turn into flame wars and things). *This is a repost, the previous thread was crowded and unusable*
Post your simple [Questions] and [Requests] here.
07/19/2010 - Mabinogi - 436 Replies
Instead of people making tons of threads for stupid questions, post them here, please. Usually these little questions are easily answered and do not require a whole thread to discuss (and these usually turn into flame wars and things).
Simple questions, simple answers :)
11/09/2009 - Kal Online - 2 Replies
Hello guys :) I've been reading this forum for a while, and I found very nice information here but still, some threads in german can't provide me whole knowledge I'm looking for, that's why I'm asking some questions :) 1. kiki uce - is it working on windows xp/vista ? 2. I'm willing to check that on my own, but maybe somebody knows that already - will store hack (http://www.elitepvpers.com/forum/kal-online/300254 -tutorial-money-bug-store-hack.html) work on R3volution server ? There's GBL v2...
Need some fairly simple macro requests
10/11/2008 - Conquer Online 2 - 7 Replies
Hi again all. I was just about to finish up my full pack version of my archer lab macro when I realised. I already have made many macro's that you guys may find usefull and if I aint made them yet I could make them quickly. So, What macro's would you guys like to see added? So far thinking like fc/pervade macro (pot and meditation versions), lab lvl 1 macro, guard lvler, spell lvler, arrow reloader, intensify trainer, spirit healing trainer, xp skill trainer and possible trojan lab lvling...



All times are GMT +1. The time now is 19:19.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.