Put it in handlekeypresses maybe? I dunno.
Posts: 343
Threads: 46
Joined: Nov 2021
Reputation:
0
find Form_KeyUp (I think) on the client and look at how it's done there.
Misunderstood
Unregistered
please...theres always a way to take a screen of your game nomatter how much you try.
But you could hook the keyboard.
Posts: 2,605
Threads: 412
Joined: Nov 2021
Reputation:
0
I can make a tutorial for some gfx security. Nothing else to do atm.
Misunderstood
Unregistered
That would do nothing but give people a false sense of security.
Unless you are talking about encrypting the gfx files. If so, just point them to the tut for working with ver's bmutil program.
I find, copy, paste, and edit. Ooo Lala.
Posts: 343
Threads: 46
Joined: Nov 2021
Reputation:
0
I think I misread this. You want to use the logo as a kind of watermark when taking a screenshot?
Misunderstood
Unregistered
You can learn how to use a low level keyboard hook here:
http://www.codeguru.com/vb/gen/vb_syste ... php/c4829/
Or search google or planet source code if don't like that.
It won't work in all situations(you can use programs to make screenshots) however it will work most of the time.
With the screen or without?
I want in the lower right corner for there to be a logo of the game... so it will be on all screenshots taken. I dont see why that code isnt working.
Let me try this myself. If it works Ill post teh code.
Right above that code I have this....
If KeyCode = vbKeyF5 Then
frmMirage.picChat.Visible = IIf(frmMirage.picChat.Visible = True, False, True)
End If
And that works fine. That code makes it so the Chat can be hidden and brought back using F5.
The only thing I can think of ... is vbKeyPrint the right code for Print Screen? Cause I dont see why else it wouldnt work.
Misunderstood
Unregistered
Don't tell me I'm wrong if you are too stupid to understand. When you tell somebody they are wrong, you better be right.
What I posted was a way for you to handle when keys are pressed. Even outside of the program. With that you can detect the keypress and display the logo for a second or so. Its similar to the form_keypress event, except that it has a wider scope. Now if that is more than what you need, you can say that, but don't ignorantly claim it is wrong or that I didn't read.
It would work just like all delays, for example the frame or animation delay.
Or you could have a built in save feature that automatically draws the logo on the file that is saved.
Why do you want to do this anyway? It seems like it would be more of a nuisance.