Make your fake apps look more legit!
Lets say you app is coin generator for some game for example, so firstly they will need their username/ID or w/e.
![[Image: OlTlmxh.png]](http://i.imgur.com/OlTlmxh.png)
Add a timer and set it as disabled - we will use it later.
![[Image: rnoXlB3.png]](http://i.imgur.com/rnoXlB3.png)
Now we will use simple trick to make it look like our generator checks if the account is real just by add 2 picture boxes:
first image will be "loading" image and the second image will be "successfully loaded".
Like this:
![[Image: JHtZjJS.png]](http://i.imgur.com/JHtZjJS.png)
Now we will move them to the same spot because the "success" image will need to replace the "loading" image, and make they both "unvisible"!
![[Image: 2Jj9nxM.png]](http://i.imgur.com/2Jj9nxM.png)
Now we will double click our textbox to get into the code and add this code: (in my case picturebox2="loading" image)
![[Image: xx4uI06.png?1]](http://i.imgur.com/xx4uI06.png?1)
now double click the timer to get into it's code and add this code:
Excactly like in the image:
![[Image: Rq7kc3g.png]](http://i.imgur.com/Rq7kc3g.png)
This code will make the "loading" image unvisible after X seconds and will make the "success" image visible right away.
So what we did here?
When the user will input his username it will look like the app is checking if the username exist, this trick can be used for more twists just use ur mind.
loading animation: http://www47.zippyshare.com/v/81658201/file.html
Successful Image: http://www47.zippyshare.com/v/87020872/file.html
Lets say you app is coin generator for some game for example, so firstly they will need their username/ID or w/e.
![[Image: OlTlmxh.png]](http://i.imgur.com/OlTlmxh.png)
Add a timer and set it as disabled - we will use it later.
![[Image: rnoXlB3.png]](http://i.imgur.com/rnoXlB3.png)
Now we will use simple trick to make it look like our generator checks if the account is real just by add 2 picture boxes:
first image will be "loading" image and the second image will be "successfully loaded".
Like this:
![[Image: JHtZjJS.png]](http://i.imgur.com/JHtZjJS.png)
Now we will move them to the same spot because the "success" image will need to replace the "loading" image, and make they both "unvisible"!
![[Image: 2Jj9nxM.png]](http://i.imgur.com/2Jj9nxM.png)
Now we will double click our textbox to get into the code and add this code: (in my case picturebox2="loading" image)
Code:
picturebox2.visible=true
timer1.start()
![[Image: xx4uI06.png?1]](http://i.imgur.com/xx4uI06.png?1)
now double click the timer to get into it's code and add this code:
Code:
picturebox2.visible=false
picturebox1.visible=true
timer1.stop()
![[Image: Rq7kc3g.png]](http://i.imgur.com/Rq7kc3g.png)
This code will make the "loading" image unvisible after X seconds and will make the "success" image visible right away.
So what we did here?
When the user will input his username it will look like the app is checking if the username exist, this trick can be used for more twists just use ur mind.
loading animation: http://www47.zippyshare.com/v/81658201/file.html
Successful Image: http://www47.zippyshare.com/v/87020872/file.html
No comments:
Post a Comment