Jump to content

0p3r4710n

Members
  • Posts

    7
  • Joined

  • Last visited

0p3r4710n's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. oh cool, thanks a lot w0uter =)
  2. Hey, Basically what I'm looking to do is create a single use program that goes to a pre-defined memory address in a running process and changes it's value to "0". I know this can be done in vb, but I'm in the process of learning vb so I don't feel all that comfortable with it yet. Any help is appreciated, thanks! - Tommy P.S. Havn't coded in AI3 in a long time so forgive me if I'm asking an obvious question.
  3. Very nice, I'm having far too much fun with this =p One thing I found that I'm not 100% about is that if you are going down and you click the "up" arrow (or viseversa), you die. Now I don't know if that is how it is in the real game but I don't think you die when clicking the down/up arrow when going the opposite way on the cell phone version. If you do, my bad =/ Anyway, this is quite fun, good work! =)
  4. hmm.. sounds fun =) ill give it a try.
  5. ='( Friend told me that shortly after I posted this... But I don't care, it's my first script and it doesn't really matter if it's useful or not I guess =/
  6. Well I started learning AutoIt last night and this was the second full script I wrote. I was fairly excited about this, that is, until I came to the forums and saw how complex everyone else's scripts are :"> I guess I'll post it anyway. This script will delete any files that are put into your recycle bin instantly. Basically it just empties your recycle bin automatically so that you don't have to. ; ---------------------------------------------------------------------------- ; AutoEmpty Recycle Bin Script, Tommy Moiseve 2005 ; ---------------------------------------------------------------------------- ; Start Script #NoTrayIcon Global $Paused HotKeySet("{PAUSE}", "TogglePause") HotKeySet("{ESC}", "Terminate") HotKeySet("{HOME}", "Inf") $run=MsgBox(36, "Run", "Run AutoEmpty?") If $run=7 Then Exit 0 EndIf If $run=6 Then $i = 9 While $i < 10 FileRecycleEmpty() Sleep(1) $i = $i - 1 WEnd EndIf Func TogglePause() $Paused = NOT $Paused While $Paused sleep(100) ToolTip('Script is "Paused"',0,0) WEnd ToolTip("") EndFunc Func Terminate() sleep(1) ToolTip('Script is "Paused"',0,0) MsgBox(4096,"","Thank you for using AutoEmpty v1.0!") Exit 0 EndFunc Func Inf() MsgBox(64, "Version" , "Version 1.0 of AutoEmpty. Written by Tommy Moiseve <tmoiseve@gmail.com>") EndFunc ; End Script Comments? Thanks! - Tommy M.
×
×
  • Create New...