game.bin

05/20/2015 19:29 warrenclark_024#1
i want to terminate: \Sessions\1\BaseNamedObjects\FFClientTag
from VB.net or C#.

this is ScreenShot from game.bin of AuraKingdom, I have to terminate this highlighted to do MultiClient :D
[Only registered and activated users can see links. Click Here To Register...]

I have to use Process Explorer to View this : \Sessions\1\BaseNamedObjects\FFClientTag

(sorry my bad english)
05/20/2015 19:35 hazejp#2
In order to do this you'd need to call NtQuerySystemInformation(), iterate over the list and find the matching handle.
This is a quite difficult task (and thusly requires some time to write, especially for beginners).
That API is not officially documented by Microsoft though, therefore I'd recommend you to read some stuff about that on the internet (I've done something like that in the past but I can't really remember)
05/20/2015 21:50 warrenclark_024#3
Quote:
Originally Posted by hazejp View Post
In order to do this you'd need to call NtQuerySystemInformation(), iterate over the list and find the matching handle.
This is a quite difficult task (and thusly requires some time to write, especially for beginners).
That API is not officially documented by Microsoft though, therefore I'd recommend you to read some stuff about that on the internet (I've done something like that in the past but I can't really remember)
tnx a lot about this tips.