Quote:
|
Originally Posted by orangegold here is your code...
... Code:
MsgBox(4096, "auto login bot", "Full version press f10 to start while wow login screen is up press f9 to close script", 10)
HotKeySet("{F10}", "start")
HotKeySet("{F9}", "exity")
func start() ; starts
MsgBox(0, "loging bot", "type username then pass")
$Q = InputBox("username:", "type your username below") ; $Q is a variable for an input box so later we can type send $q and it will send what you put in the box... see !!!
$m = InputBox("password", "type your password below") ; same here
mousemove(363, 340)
MouseClick("left")
MouseClick("left")
;types your user name
Send($Q) ;!!! < here is what i was talking about
sleep(500)
;moves down and click on pass enter section
Mousemove(361, 399)
MouseClick("left")
MouseClick("left")
send($m) ;!!! < and here
sleep(1500)
mousemove(373, 444)
MouseClick("left")
MouseClick("left")
sleep(15000)
mousemove(363, 577)
MouseClick("left")
MouseClick("left")
sleep(20000)
idle()
EndFunc
Func idle() ; idle, do nothing
while 1
Sleep(1000)
WEnd
EndFunc
Func exity() ; exit
Exit
EndFunc
;important this idle must be at the end otherwise your script will close when you hit ok
idle()
|
Yeah ive made the login bot, but on another way pretty nice, but now i added so you can listen to sounds while in-game by pressing F3-F11
Code:
Quote:
|
HotKeySet("{F3}","Music1")
HotKeySet("{F4}","Music2")
HotKeySet("{F5}","Music3")
HotKeySet("{F6}","Music4")
HotKeySet("{F7}","Music5")
HotKeySet("{F8}","Music6")
HotKeySet("{F9}","Music7")
HotKeySet("{F10}","Music8")
Func Music1()
HotKeySet("{F3}")
SoundsetWaveVolume(100)
SoundPlay("02_The Misfits - Dust to Dust.wav")
HotKeySet("{F3}", "Music1")
ToolTip('The Misfits - Dust to Dust',0,0)
Sleep(3000)
ToolTip("Playing",0,0)
EndFUnc
Func Music2()
HotKeySet("{F4}")
SoundsetWaveVolume(100)
SoundPlay("01_pod - pod - P_O_D - Here comes the boom.wav")
HotKeySet("{F4}", "Music2")
ToolTip('P.O.D - Here comes the boom',0,0)
Sleep(3000)
ToolTip("Playing",0,0)
EndFUnc
|
But they have to be .wav files so they get really big, do you know another way having them as mp3-files? Please awnser so fast as possiable!
//Lindoz12
