Jump to content

EveryBody Pees


Recommended Posts

I just found this on my harddrive forgot i made it for a friend awhile back, its the book everybody pees, i thought it was educational so i thought id post it :D

Edit: Oops forgot the pics

http://thatsgreat2345.googlepages.com/pics.zip

Global $i = 1
#include <GUIConstants.au3>
$GUIpee = GUICreate("Everyone Pees", 493, 577, 237, 69)
$pic = GUICtrlCreatePic(@ScriptDir & "\pics\" & $i & ".jpg",8,8,473,513)
GUICtrlSetState($pic,$GUI_DISABLE)
$prev = GUICtrlCreateButton("Previous Page", 152, 536, 81, 25, 0)
$next = GUICtrlCreateButton("Next Page", 248, 536, 81, 25, 0)
$first = GUICtrlCreateButton("First Page", 56, 536, 81, 25, 0)
$last = GUICtrlCreateButton("Last Page", 344, 536, 81, 25, 0)
GUISetState(@SW_SHOW)

    While 1
        $msg = GUIGetMsg()
        Select
            Case $msg = $prev
                    $i = $i - 1
                    If $i <= 1 Then
                        $i = 19
                    EndIf
                    Createpic($i)
            Case $msg = $next
                    $i = $i + 1
                    If $i >= 20 Then
                        $i = 1
                        EndIf
                    Createpic($i)
            Case $msg = $first
                $i = 1
                Createpic($i)
            Case $msg = $last
                $i = 19
                Createpic($i)
            Case $msg = $GUI_EVENT_CLOSE
                Exit
        EndSelect
    WEnd
Func Createpic($i)
GUICtrlDelete($pic)
$pic = GUICtrlCreatePic(@ScriptDir & "\pics\" & $i & ".jpg",8,8,473,513)
GUICtrlSetState($pic,$GUI_DISABLE)
EndFunc
Edited by thatsgreat2345
Link to comment
Share on other sites

Did your friend finally realize it isnt shameful to pee.. and that everyone does it? :D

AutoIt Scripts:Aimbot: Proof of Concept - PixelSearching Aimbot with several search/autoshoot/lock-on techniques.Sliding Toolbar - Add a nice Sliding Toolbar to your next script. Click the link to see an animation of it in action!FontInfo UDF - Get list of system fonts, or search to see if a particular font is installed.Get Extended Property UDF - Retrieve a files extended properties (e.g., video/image dimensions, file version, bitrate of song/video, etc)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...