Jump to content



Photo

MindReader


  • Please log in to reply
8 replies to this topic

#1 spyrorocks

spyrorocks

    Universalist

  • Active Members
  • PipPipPipPipPipPip
  • 728 posts

Posted 11 February 2007 - 09:30 AM

MindReader
v1.1

Attached File  mindreaderv1.1.au3   3.3K   474 downloads

OK, after a few hours of work, MindReader v1.0 is done. works perfectly.

There are instructions on how to use it when you start it. IT ACTUALLY WORKS.

Enjoy!


---Old Version(s)----
Original 1.0 - Attached File  mindreader.au3   4.8K   284 downloads

Edited by spyrorocks, 11 February 2007 - 10:05 PM.






#2 RazerM

RazerM

    cowinkeedenky - coincidence?

  • Active Members
  • PipPipPipPipPipPip
  • 1,246 posts

Posted 11 February 2007 - 11:32 AM

I know how it works but I won't tell. :whistle: Good implementation of this popular "trick".
My Programs:AInstall - Create a standalone installer for your programUnit Converter - Converts Length, Area, Volume, Weight, Temperature and Pressure to different unitsBinary Clock - Hours, minutes and seconds have 10 columns each to display timeAutoIt Editor - Code Editor with Syntax Highlighting.Laserix Editor & Player - Create, Edit and Play Laserix LevelsLyric Syncer - Create and use Synchronised Lyrics.Connect 4 - 2 Player Connect 4 Game (Local or Online!, Formatted Chat!!)MD5, SHA-1, SHA-256, Tiger and Whirlpool Hash Finder - Dictionary and Brute Force FindCool Text Client - Create Rendered ImageMy UDF's:GUI Enhance - Enhance your GUIs visually.IDEA File Encryption - Encrypt and decrypt files easily! File Rename - Rename files easilyRC4 Text Encryption - Encrypt text using the RC4 AlgorithmPrime Number - Check if a number is primeString Remove - remove lots of strings at onceProgress Bar - made easySound UDF - Play, Pause, Resume, Seek and Stop.

#3 tmo

tmo

    Seeker

  • Active Members
  • 28 posts

Posted 11 February 2007 - 11:43 AM

spoiler:

Spoiler

Edited by tmo, 11 February 2007 - 11:50 AM.


#4 spyrorocks

spyrorocks

    Universalist

  • Active Members
  • PipPipPipPipPipPip
  • 728 posts

Posted 11 February 2007 - 05:07 PM

I know how it works but I won't tell. :whistle: Good implementation of this popular "trick".

thanks :)

Yeah, its pretty hard to catch on to while your playing it.

#5 WeMartiansAreFriendly

WeMartiansAreFriendly

    Where's the kaboom?

  • Active Members
  • PipPipPipPipPipPip
  • 1,245 posts

Posted 11 February 2007 - 06:33 PM

it got me, nice job
Posted ImageDon't bother, It's inside your monitor!------GUISetOnEvent should behave more like HotKeySet()

#6 Achilles

Achilles

    Achilles == Ichigo

  • Active Members
  • PipPipPipPipPipPip
  • 2,897 posts

Posted 11 February 2007 - 08:05 PM

MindReader
v1.0

Attached File  mindreader.au3   4.8K   284 downloads

OK, after a few hours of work, MindReader v1.0 is done. works perfectly.

There are instructions on how to use it when you start it. IT ACTUALLY WORKS.

Enjoy!

That's pretty sweet!

#7 Valuater

Valuater

    www.PayFreeWireless.com

  • MVPs
  • 11,078 posts

Posted 11 February 2007 - 08:30 PM

Cute!!!

Played with it a little

AutoIt         
;Mindreader by spyrorocks #include <GUIConstants.au3> Global $wait = 10, $Guessme Global $color = StringSplit("0XFFFFFF,0x00FF00,0xFF0000,0x0000FF,0xF0F000,0xCCCCCC,0x99FF00,0xFF9900,0x0FF0F0,0xFF66CC,0xCC33CC,0x669900", ",") $Form1 = GUICreate("MindReader - By Spyrorocks", 529, 411, 209, 149) $Group1 = GUICtrlCreateGroup("Numbers/Colors", 168, 80, 353, 321) GUICtrlCreateGroup("", -99, -99, 1, 1) $Group2 = GUICtrlCreateGroup("Your Color", 8, 80, 153, 153) GUICtrlCreateGroup("", -99, -99, 1, 1) $dispcolor = GUICtrlCreateLabel("", 35, 110, 100, 100) $doit = GUICtrlCreateButton("Read My Mind!", 32, 248, 107, 41, 0) $newcolors = GUICtrlCreateButton("Refresh Colors", 32, 290, 107, 26, 0) $Edit1 = GUICtrlCreateEdit("", 8, 0, 513, 81, BitOR($ES_AUTOVSCROLL, $ES_READONLY, $ES_WANTRETURN, $WS_VSCROLL)) GUICtrlSetData(-1, StringFormat("MindReader Instructions\r\n\r\n1. Pick a 2 digit number (Such as 47)\r\n\r\n2. Add both of the digits togeather (Example: If you had 47, add 4 + 7 to get 11)\r\n\r\n3. Subtract what you got for adding the digits togeather from your origanal number.\r\n\r\nFocus on the color behind your new number, and click " & Chr(34) & "Read My Mind!" & Chr(34) & "")) GUISetState(@SW_SHOW) CreateTables() While 1     $nMsg = GUIGetMsg()     Switch $nMsg         Case $GUI_EVENT_CLOSE             Exit         Case $newcolors             deletetables()             CreateTables()         Case $doit             ShowIt()     EndSwitch WEnd Func CreateTables()     b_disable()     $xpos = 470     $ypos = 0     $count = 0     $slide = 22     $thecolor = $color[(Random(1, 11, 1))]     For $i = 0 To 99         Assign("num_" & $i, GUICtrlCreateLabel($i, $xpos - $slide, Execute("(368) - (" & ($i - $ypos) & " * 17)"), 26, 17, $SS_CENTER), 2)         If StringInStr(String($i / 9), ".") Then             GUICtrlSetBkColor(-1, $color[(Random(1, 11, 1))])         Else             GUICtrlSetBkColor(-1, $thecolor)         EndIf         Sleep($wait)         $count += 1         If $count = 16 Then             $xpos -= 35             $ypos += 16             If $i >= 95 Then $ypos -= 12             $count = 0         EndIf     Next     $Guessme = $thecolor     GUICtrlSetState($doit, $GUI_ENABLE)     GUICtrlSetState($newcolors, $GUI_ENABLE) EndFunc   ;==>CreateTables Func deletetables()     b_disable()     GUICtrlDelete($dispcolor)     For $i = 0 To 100         GUICtrlDelete(Eval("num_" & $i))         Sleep($wait)     Next EndFunc   ;==>deletetables Func ShowIt()     b_disable()     GUICtrlDelete($dispcolor)     Global $dispcolor = GUICtrlCreateLabel("", 35, 110, 100, 100)     ;Little bit of show     For $i = 94 To 114         GUICtrlSetBkColor(-1, $color[(Random(1, 11, 1))])         Sleep($i * 2)     Next     GUICtrlSetBkColor(-1, $GUI_BKCOLOR_DEFAULT)     For $i = 0 To 5         Sleep(100)         GUICtrlSetBkColor(-1, $GUI_BKCOLOR_DEFAULT)         Sleep(100)         GUICtrlSetBkColor(-1, $Guessme)     Next     GUICtrlSetState($newcolors, $GUI_ENABLE)     GUICtrlSetState($doit, $GUI_DISABLE) EndFunc   ;==>ShowIt Func onautoitexit()     deletetables()     Exit EndFunc   ;==>onautoitexit Func b_disable()     GUICtrlSetState($doit, $GUI_DISABLE)     GUICtrlSetState($newcolors, $GUI_DISABLE) EndFunc   ;==>b_disable


8)

Posted Image

Clic The Pic!!!


#8 spyrorocks

spyrorocks

    Universalist

  • Active Members
  • PipPipPipPipPipPip
  • 728 posts

Posted 11 February 2007 - 10:02 PM

Sweet thanks :whistle:

Updated fist post. a few fixes, plus Val's edit.

#9 slayerz

slayerz

    Prodigy

  • Active Members
  • PipPipPip
  • 160 posts

Posted 11 March 2007 - 08:24 AM

Wow! Nice trick spyrorocks... :whistle:
AUTOIT I'm lovin' it!




0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users