Password before use [CPA/PPD]

rickydzine

Power Member
Joined
Jun 6, 2011
Messages
580
Reaction score
321
This is mostly for game hacks niche, Whether fake or real as long as you're the one that created the hack.

If not then you just simply allow the program to get to a point just 1 simple step before it activates.
Think about it like sex... If you're having sex and you're about to climax and the girl pushes you out and says you have to do one thing before I let you.. You're pretty much too deep in to turn back and so it should convert.

Provides a better twist than.. Download my program.. Oh the rar is protected by a password.. Typical.. /Delete.

If you're going to create it in visual basics the code I use is:

Code:
Public Class Form2

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        MsgBox("Incorrect password, Please check and try again!", MsgBoxStyle.Critical, "Incorrect password")
        TextBox1.Clear()
    End Sub


    Private Sub Button2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button2.Click
        Me.Close()
    End Sub


   
    Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress
        Label3.SendToBack()
    End Sub


    Private Sub LinkLabel1_LinkClicked(ByVal sender As System.Object, ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles LinkLabel1.LinkClicked
        Process.Start("WEBSITE WITH CONTENTLOCKER")
    End Sub


    Private Sub Label3_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Label3.Click
        Label3.SendToBack()
    End Sub


    Private Sub Form2_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load


    End Sub
End Class

2 Buttons, Link label and a text Box.

Make it look something similar to:
ipzbk4.jpg



Use this on your main progress bar to stop it at 95% and display the above window asking for a custom generated password with a link out to generate a password.

Code:
If ProgressBar1.Value = 95 Then            Timer1.Stop()
            Form2.Show()

So overview of how this works or what it does...

1. User watches video on Youtube, compelled to download.
2. User downloads user tries to activate hack.
3. All appears well to the eye as promised in the video however at 95% activation the program requests a password.
4. The program allows a user to visit a link to generate a custom password.
5. Visitor is sent to website with content locker.
6. Visitor has no choice but to attempt.
7. You get your money
8. They get ticked and just forget about it thinking they are the stupid one who can't make the program work.
9. Disable auto-approved youtube comments :D Fake some.


Hasn't worked wonders for me, But then again I'm terrible at getting traffic.
 
Last edited:
I was going to make a suggestion of sending it to a landing page rather than just straight to the link, but I see you've already said that.

Alternatively, you can have a landing page with your links linked to a BUTTON and not have the content locked, that way your users can actually see the graphical content of your website (if you made it look relatively decent). Just a thought, it'd most likely make your conversion a bit higher.
 
My landing page is a button ;) Using triggers.
 
How did you learn to edit all this together? I'm currently trying to learn how to do all this - any suggestions? Thanks
 
Back
Top