[REQUEST] Source

05/09/2013 19:08 Mikail2244#1
What is requested?
I think some of you guys have an simple source for me, it would be very usefull for me. I want a Visual Basic source that finds Nksp.exe from the process list and i need a code where i need to put the addresses and offsets in, i dont have a code like that maybe you guys do? pls post down here!

Question
Another question here, Do i need to make a attackspeed hack with an timer or just an checkbox?


Code:
If checkbox1.checked = true then
writeinteger("Nksp",&Hcodehere,valuehere)
<--- wont work becuz i need to put my offsets somewhere but idk the code.
05/09/2013 19:28 -STORM-#2
[Only registered and activated users can see links. Click Here To Register...]
I have just found that about 2 seconds after typing into google "vb.net get process by name". ;)
Code:
Dim Processes() As System.Diagnostics.Process System.Diagnostics.Process.GetProcessesByName("Nksp") // maybe it's "Nksp.exe" instead, but i think VB doesn't requrie that
That function will return an array of processes (objects that contain PID etc.).
I'm not really familiar with VB but you probably can get the amount of the processes by Proccesses.count and the ID of the n'th process by Processes(n).Id

Then you need to open and read/write to that process's memory.
Therefore you can use DllCall (Kernel32.dll):
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
Perhaps these functions are already implemented in the standard library of VB.net.
05/09/2013 20:07 Mikail2244#3
Quote:
Originally Posted by -STORM- View Post
[Only registered and activated users can see links. Click Here To Register...]
I have just found that about 2 seconds after typing into google "vb.net get process by name". ;)
Code:
Dim Processes() As System.Diagnostics.Process System.Diagnostics.Process.GetProcessesByName("Nksp") // maybe it's "Nksp.exe" instead, but i think VB doesn't requrie that
That function will return an array of processes (objects that contain PID etc.).
I'm not really familiar with VB but you probably can get the amount of the processes by Proccesses.count and the ID of the n'th process by Processes(n).Id

Then you need to open and read/write to that process's memory.
Therefore you can use DllCall (Kernel32.dll):
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
Perhaps these functions are already implemented in the standard library of VB.net.
Ty Ure the best :D