| View previous topic :: View next topic |
| Author |
Message |
spunky
Joined: 06 Mar 2008 Posts: 8
|
Posted: Thu Mar 06, 2008 1:08 pm Post subject: [Help] Im new |
|
|
can any1 please make me a script/tell how to do..
auto press button F9 then Enter.. and it's always repeating will be good..
thx.. |
|
| Back to top |
|
 |
DranDane
Joined: 26 Jun 2007 Posts: 54
|
Posted: Thu Mar 06, 2008 1:42 pm Post subject: |
|
|
| And what is your price ? |
|
| Back to top |
|
 |
Oberon
Joined: 18 Feb 2008 Posts: 458
|
Posted: Thu Mar 06, 2008 2:10 pm Post subject: |
|
|
| Loop and Send are the commands you need to lookup. |
|
| Back to top |
|
 |
spunky
Joined: 06 Mar 2008 Posts: 8
|
Posted: Thu Mar 06, 2008 4:31 pm Post subject: |
|
|
| Oberon wrote: | | Loop and Send are the commands you need to lookup. |
any example pls? |
|
| Back to top |
|
 |
BoBoĻ Guest
|
Posted: Thu Mar 06, 2008 5:57 pm Post subject: |
|
|
| Code: | SoundSetWaveVolume, 100
Loop, 1000
Soundbeep
Send, #r Done |
|
|
| Back to top |
|
 |
Razlin
Joined: 05 Nov 2007 Posts: 370 Location: canada
|
Posted: Thu Mar 06, 2008 7:54 pm Post subject: |
|
|
@Bobo
I think you forgot to exit script when done
| Code: |
SoundSetWaveVolume, 100
Loop, 1000
Soundbeep
Send, #r Done
Shutdown, 6
|
|
|
| Back to top |
|
 |
BoBoĻ Guest
|
Posted: Thu Mar 06, 2008 8:14 pm Post subject: |
|
|
Indeed!  |
|
| Back to top |
|
 |
tonne
Joined: 06 Jun 2006 Posts: 1159 Location: Denmark
|
Posted: Thu Mar 06, 2008 8:25 pm Post subject: |
|
|
Can this really be the swimming instructor speaking?
| BoBoĻ wrote: | | Quote: | | Let's help each other out. | What will someone help to survive - to tell'm how to swim or to teach him/her how to do it on his/her own  |
_________________ there's a dog barking close within the range of my ear
sounds like he wants to escape the chain
he would probably bite me to death if he could
but the chain lets me spit in his face
- Kashmir |
|
| Back to top |
|
 |
Moki
Joined: 23 Feb 2008 Posts: 96 Location: North Carolina
|
Posted: Thu Mar 06, 2008 8:38 pm Post subject: |
|
|
lol you guys are mean as snakes lol .......
the code to hit f9 hit Enter and repeat is:
| Code: |
Loop, ; add a number after the comma to tell it how many
{ ; otherwise its infinite
send {F9}
send {enter}
} |
_________________ http://www.mofiki.com |
|
| Back to top |
|
 |
SKAN
Joined: 26 Dec 2005 Posts: 5880
|
Posted: Thu Mar 06, 2008 9:00 pm Post subject: |
|
|
| Moki wrote: | | lol you guys are mean as snakes lol |
I see that as fun , but they do have a point.
It is dangerous to ask anyone to write code for you.
Either you should know the person or atleast be able to read/understand the code provided.
 |
|
| Back to top |
|
 |
RattleSnakeBoBo Guest
|
Posted: Thu Mar 06, 2008 9:03 pm Post subject: |
|
|
ssssssssh *rattle* ssssssssh *rattle* ssssssssssssh  |
|
| Back to top |
|
 |
Moki
Joined: 23 Feb 2008 Posts: 96 Location: North Carolina
|
Posted: Thu Mar 06, 2008 9:14 pm Post subject: |
|
|
| Quote: | I see that as fun , but they do have a point.
It is dangerous to ask anyone to write code for you.
Either you should know the person or atleast be able to read/understand the code provided.
|
Very true .... and to be honest if he can't tell by the small examples that you placed above messing with him he needs a new hobbie  _________________ http://www.mofiki.com |
|
| Back to top |
|
 |
spunky
Joined: 06 Mar 2008 Posts: 8
|
Posted: Fri Mar 07, 2008 3:45 am Post subject: |
|
|
| Moki wrote: | lol you guys are mean as snakes lol .......
the code to hit f9 hit Enter and repeat is:
| Code: |
Loop, ; add a number after the comma to tell it how many
{ ; otherwise its infinite
send {F9}
send {enter}
} |
|
i only try your code.. (the other code suspicious)
erm..but it cant work on my game's window..
it only play on normal window..
can i use it on my game? auto press on my game.. (all the step are using keyboard) |
|
| Back to top |
|
 |
spunky
Joined: 06 Mar 2008 Posts: 8
|
Posted: Fri Mar 07, 2008 3:46 am Post subject: |
|
|
| Razlin wrote: | @Bobo
I think you forgot to exit script when done
| Code: |
SoundSetWaveVolume, 100
Loop, 1000
Soundbeep
Send, #r Done
Shutdown, 6
|
|
i can read guys.. >.> |
|
| Back to top |
|
 |
Moki
Joined: 23 Feb 2008 Posts: 96 Location: North Carolina
|
Posted: Fri Mar 07, 2008 2:27 pm Post subject: |
|
|
look up send modes and try the sendplay command and just play with a few different combinations you'll get it  _________________ http://www.mofiki.com |
|
| Back to top |
|
 |
|