[request] dll editting

05/31/2013 19:39 jorxixix#16
removed
05/31/2013 20:40 Xhi~#17
I'm pretty sure theres something for that somewhere on this forum... [Only registered and activated users can see links. Click Here To Register...]
05/31/2013 20:47 jorxixix#18
removed
06/02/2013 01:08 Mutn#19
Please don't bother with newbs who don't even know how to do such a simple thing.. Let him figure it out himself, really. Already gave enough help anyway.
06/02/2013 05:40 jorxixix#20
request #lock
06/04/2013 00:58 12201#21
Aren't requests in this part of the forum against the rules? when the hell did that change.
06/04/2013 09:46 Nosirrom#22
Quote:
Originally Posted by 12201 View Post
Aren't requests in this part of the forum against the rules? when the hell did that change.
I am not around here often but it looks like this forum is not well moderated if reports are not invoked.
06/05/2013 03:22 step29#23
Quote:
Originally Posted by Nosirrom View Post
I am not around here often but it looks like this forum is not well moderated if reports are not invoked.
The mods here are just like Nexon GMs, they exist, but hidden, Like ninjas
06/05/2013 03:40 Nosirrom#24
"C:\Nexon\Mabinogi\client.exe" code:1622 ver:153 logip:208.85.109.35 logport:11000 chatip:208.85.109.37 chatport:8002 setting:"file://data/features.xml=Regular, USA"

Gathered from Process Explorer that is the new direct launch I think.
06/05/2013 07:01 Blade3575#25
Wait.. you had to use a third-party program to figure that out? ._.
06/05/2013 09:58 step29#26
Quote:
Originally Posted by Blade3575 View Post
Wait.. you had to use a third-party program to figure that out? ._.
I'm interested then. What would be the First-party way to get the parameters with just Microsoft tools?
06/05/2013 23:49 Quesar#27
Quote:
Originally Posted by step29 View Post
I'm interested then. What would be the First-party way to get the parameters with just Microsoft tools?
not entirely sure if this has anything to do with what you guys are talking about but [Only registered and activated users can see links. Click Here To Register...]
06/06/2013 05:03 step29#28
Quote:
Originally Posted by Quesar View Post
not entirely sure if this has anything to do with what you guys are talking about but [Only registered and activated users can see links. Click Here To Register...]

Well...you beat me there.
06/06/2013 06:38 tliu0c#29
correct way of doing it is
load the loader in ollydbg.
set break points on CreateProcessA and CreateProcessW.
click the start game button and watch your break point being hit.
then you can read all the parameters on the stack. one of them is the command line passed to the main executable.

works with any game~
06/06/2013 10:19 Blade3575#30
AutoIt:
Code:
$s = ""
For $i = 1 To $CmdLine[0]
	$s &=($CmdLine[$i]&@CRLF)
Next
FileWrite("Params.txt", $s)
Compile and rename to your exe. A lot easier. Obviously puts each arg passed on its own line, can easily be changed.