Disable F11 Button

07/22/2011 22:09 BaussHacker#16
Quote:
Originally Posted by dreamer13 View Post
can someone help me with this?
Pseudo:
Code:
private void KeyClick(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.F11)//or whatever the name is.
Process.GetProcessByName("conquer")[0].Kill();
}
07/22/2011 22:33 _DreadNought_#17
Quote:
Originally Posted by BaussHacker View Post
Make an autopatcher, so you can always update it with modifications fast.
Fuck yo shit <3
07/23/2011 00:26 BaussHacker#18
Quote:
Originally Posted by _DreadNought_ View Post
Fuck yo shit <3
:D
07/23/2011 00:52 Korvacs#19
Quote:
Originally Posted by _DreadNought_ View Post
1. Make it a dll, Just adds the extra flavor.
2. Add checks to packets that only the injector can do(Such as checksums encrypted)
3. Encryption, Heavy heavy encryptions!
4. Bind the exe and dll
5. Or skip step 4 and hide it.
6. Have packets send THRU the conquer connection(hooks) to make sure its running.
7. Repeat step 1-6 x2 then step 7 three times.

If they can break that, That theres no point trying to keep them away :rolleyes:
I would love to see you try implementing all of this and have the game still be playable at the end of it, encryption isnt exactly expensive if its decent, but all of that adds up lol.
07/23/2011 19:06 dreamer13#20
Quote:
Originally Posted by BaussHacker View Post
Pseudo:
Code:
private void KeyClick(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.F11)//or whatever the name is.
Process.GetProcessByName("conquer")[0].Kill();
}
where do i put this?