Jump to content

TECH

Active Members
  • Posts

    20
  • Joined

  • Last visited

About TECH

  • Birthday 05/25/1995

TECH's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Or just use your finger since its not that hard to do.I do that and im fine. I was sure that there was a way to select a button to automatically press alt down. Like how tab brings the map up.
  2. Erm.. What.. is a jump list.
  3. So, what you are saying is, keep things to myself unless they can cut down on the things you have to script, like shortcuts, or super-duper helpful stuff like 'real' tuts?
  4. hehehe You're beginning to dislike me, aren't you?
  5. Actually for a game i played called "Sprinter", it raised the speed of the buttons by a really noticable difference.
  6. Where should this be??
  7. These are some hints for getting better and faster scripts. Feel free to post as many as you want. I will edit and change as I go along 1. To get a faster script involving "send", Dont just go like: While 1 Send("{left}") Send("{right}") WEnd Go like this: While 1 Send("{left}") Send("{right}") Send("{left}") Send("{right}") Send("{left}") Send("{right}") Send("{left}") Send("{right}") Send("{left}") Send("{right}") WEnd Because than AutoIt wont have to think of 'Does it say stop or go'. It will keep pressing the keys for a bit then it will think If this post is in the wrong section I'm sorry. (How do you delete posts if you can)?
  8. haha thnx... now just to figure out how to change the song or get what song from a playlist hmmm.... are their any really good tuts that you know of or have done??
  9. wow sarcasm nicei use WMP V 11
  10. I need some help. Im trying to create a tooltip that will show what music I am listening to. I.e. if Im listening to Boom Boom Pow by B.E.P. I want the music to show in a tootip in the left corner. I already got the top corner part but I need to create a ??variable?? to show what song Im listening to. Any help will be greatly appreciated. Thnx
  11. u talking to me or Canasian???if me than thnx if not than uhh...
  12. what will it do too lazy to get the game now
  13. Hey, These are some scripts I've come up with. Really simple and I will add more later if you actually want me to. If you go to do something like... run( and you look at the little box after you put the "( " then you can learn what those mean and do and what to do. also looking in the helpfile will help. Func exitthescript() Exit EndFunc ;==>exitthescript HotKeySet("{Q}", "exitthescript") Run("mspaint.exe") ;run whatever your mspaint or whatever program you have that is like paint. ;(find the .exe.) ;(My paint exe. is "mspaint.exe") WinWaitActive("untitled - Paint") MouseClickDrag("left", 500, 500, 500, 300, 0) MouseClickDrag("left", 500, 300, 300, 300, 0) MouseClickDrag("left", 300, 300, 300, 500, 0) MouseClickDrag("left", 300, 500, 500, 500, 0) MouseClickDrag("left", 300, 300, 400, 200, 0) MouseClickDrag("left", 400, 200, 500, 300, 0) MouseClickDrag("left", 400, 500, 400, 470, 0) MouseClickDrag("left", 400, 470, 410, 470, 0) MouseClickDrag("left", 410, 470, 390, 470, 0) MouseClickDrag("left", 390, 470, 390, 500, 0) MouseClickDrag("left", 410, 470, 410, 500, 0) this will draw a house func exitthescript() Exit EndFunc HotKeySet( "{Q}", "exitthescript" ) while 1 $posx = random( 0, 1023 ) $posy = random( 0, 767 ) mousemove( $posx, $posy ) Sleep( 1000 ) WEnd this will randomly move your mouse func exitthescript() Exit EndFunc HotKeySet( "{Q}", "exitthescript" ) $var = MsgBox( 4, "button game", "push a button") If $var = 6 then MsgBox(4, "you pushed...", "You pushed yes. Good for you. Now click another one") If $var = 6 then Beep( 400 , 350 ) sleep( 200 ) Beep( 400 , 350 ) sleep( 200 ) Beep( 400 , 350 ) sleep( 200 ) Beep( 400 , 350 ) sleep( 5 ) Beep( 150 , 350 ) sleep( 5 ) Beep( 200 , 350 ) sleep( 5 ) Beep( 250 , 350 ) sleep( 5 ) Beep( 300 , 350 ) sleep( 5 ) Beep( 350 , 350 ) sleep( 5 ) Beep( 400 , 350 ) Beep( 100 , 350 ) Beep( 400 , 350 ) Beep( 100 , 350 ) Sleep ( 500 ) Beep( 400 , 350 ) Sleep( 50 ) Beep( 400 , 350 ) this will play beeps. you can make a song with it im just posting these to kind of help but i dont think these will help much
×
×
  • Create New...