Vb 6.0 Macro Yapimi
ADIM 1:
Gerekli Bileşenler : http://rapidshare.com/files/122674112/AutoItX3.dll.html
Linkdeki dll'yi indirip Yerel Disk (C ' e atioruz..
Başlat > Caliştir > Cmd > regsvr32 C:/AutoItx3.dll ' yazip Enter'a basioruz ve karşiniza bu mesaj
cıkacak: DllRegisterServer / D:AutoItX3.dll başaryıla gercekleştirildi
Daha sonra , vb 6.0 caliştirip Gelen Pencereden Standart Exe ' yi secip ac dioruz.
Daha sonra Project sekmesinden References bolumune gelip AutoItx3 1.0 Type Library ' i işaretleyip
Ok butonuna basiniz..
Forma 1 Adet Timer 2 Adet Button Ekleyip Sağ tıkla ' Wiew Code ' diyip aşşağidaki Kodlari
yapiştirin.
CODE
PHP Code:
Dim Komut As New AutoItX3Lib.AutoItX3
PHP Code:
Private Sub From_Load()
Timer1.Interval = 100
Form1.BorderStyle = 4
End Sub
Private Sub Command1_Click()
Timer1.Enabled = True
End Sub
Private Sub Command2_Click()
Timer1.Enabled = False
End Sub
Private Sub Timer1_Timer()
Komut.Send ("Z") ' Z Yaratik Sec
Komut.Send ("3") ' 3 Skill Slot Siz Kac İsterseniz Onu yapin.
End Sub
alıntı
__________________