Register for your free account! | Forgot your password?

Go Back   elitepvpers > Coders Den > AutoIt
You last visited: Today at 18:26

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Autoit Seafight Mojo-Bot

Discussion on Autoit Seafight Mojo-Bot within the AutoIt forum part of the Coders Den category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Jun 2010
Posts: 40
Received Thanks: 30
Autoit Seafight Mojo-Bot

Hi, bin gerade am verzweifeln
versuche gerade einen simplen bot zu schreiben,
nur habe ein problem beim script

PHP Code:
#region ---Au3Recorder generated code Start ---
Opt("WinWaitDelay",100)
Opt("WinDetectHiddenText",1)
Opt("MouseCoordMode",0)

Press Esc to terminate scriptPause/Break to "pause"

Global $Paused
HotKeySet
("{PAUSE}""TogglePause")
HotKeySet("{ESC}""Terminate")
HotKeySet("j""MouseClick"

;;;; 
Body of program would go here ;;;;
_WinWaitActivate("Program Manager","")
MouseClick("left",284,887,1)
While 
1
_WinWaitActivate
("Online games – Seafight, the highlight of online pirate games - Mozilla Firefox","")
MouseClick("left",529,676,1)
WEnd
;;;;;;;;

Func TogglePause()
    
$Paused NOT $Paused
    
While $Paused
        sleep
(100)
        
ToolTip('Script is "Paused"',0,0)
    
WEnd
    ToolTip
("")
EndFunc

Func Terminate
()
    Exit 
0
EndFunc

Func Mouseclick
()
EndFunc


#region --- Internal functions Au3Recorder Start ---
Func _WinWaitActivate($title,$text,$timeout=0)
    
WinWait($title,$text,$timeout)
    If 
Not WinActive($title,$textThen WinActivate($title,$text)
    
WinWaitActive($title,$text,$timeout)
EndFunc
#endregion --- Internal functions Au3Recorder End ---

#endregion --- Au3Recorder generated code End --- 
was ich versuche, bei Hotkeyset mit dem "j" das er dann wenn man j auf der tastatur drückt das passiert

PHP Code:
Func Mouseclick("left",292,630,1)
EndFunc 
bräuchte hilfe
Traumverderber is offline  
Old 06/06/2010, 20:19   #2
 
Shadow992's Avatar
 
elite*gold: 77
Join Date: May 2008
Posts: 5,430
Received Thanks: 5,876
Quote:
Originally Posted by Traumverderber View Post
Hi, bin gerade am verzweifeln
versuche gerade einen simplen bot zu schreiben,
nur habe ein problem beim script

PHP Code:
#region ---Au3Recorder generated code Start ---
Opt("WinWaitDelay",100)
Opt("WinDetectHiddenText",1)
Opt("MouseCoordMode",0)

Press Esc to terminate scriptPause/Break to "pause"

Global $Paused
HotKeySet
("{PAUSE}""TogglePause")
HotKeySet("{ESC}""Terminate")
HotKeySet("j""MouseClick"

;;;; 
Body of program would go here ;;;;
_WinWaitActivate("Program Manager","")
MouseClick("left",284,887,1)
While 
1
_WinWaitActivate
("Online games – Seafight, the highlight of online pirate games - Mozilla Firefox","")
MouseClick("left",529,676,1)
WEnd
;;;;;;;;

Func TogglePause()
    
$Paused NOT $Paused
    
While $Paused
        sleep
(100)
        
ToolTip('Script is "Paused"',0,0)
    
WEnd
    ToolTip
("")
EndFunc

Func Terminate
()
    Exit 
0
EndFunc

Func Mouseclick
()
EndFunc


#region --- Internal functions Au3Recorder Start ---
Func _WinWaitActivate($title,$text,$timeout=0)
    
WinWait($title,$text,$timeout)
    If 
Not WinActive($title,$textThen WinActivate($title,$text)
    
WinWaitActive($title,$text,$timeout)
EndFunc
#endregion --- Internal functions Au3Recorder End ---

#endregion --- Au3Recorder generated code End --- 
was ich versuche, bei Hotkeyset mit dem "j" das er dann wenn man j auf der tastatur drückt das passiert

PHP Code:
Func Mouseclick("left",292,630,1)
EndFunc 
bräuchte hilfe
Nenn es lieber in Mouse um :
PHP Code:

#region ---Au3Recorder generated code Start ---
Opt("WinWaitDelay",100)
Opt("WinDetectHiddenText",1)
Opt("MouseCoordMode",0)

Press Esc to terminate scriptPause/Break to "pause"

Global $Paused
HotKeySet
("{PAUSE}""TogglePause")
HotKeySet("{ESC}""Terminate")
HotKeySet("j""Mouse"

;;;; 
Body of program would go here ;;;;
_WinWaitActivate("Program Manager","")
MouseClick("left",284,887,1)
While 
1
_WinWaitActivate
("Online games – Seafight, the highlight of online pirate games - Mozilla Firefox","")
MouseClick("left",529,676,1)
WEnd
;;;;;;;;

Func TogglePause()
    
$Paused NOT $Paused
    
While $Paused
        sleep
(100)
        
ToolTip('Script is "Paused"',0,0)
    
WEnd
    ToolTip
("")
EndFunc

Func Terminate
()
    Exit 
0
EndFunc

Func Mouse
()
Mouseclick("left",292,630,1)
EndFunc


#region --- Internal functions Au3Recorder Start ---
Func _WinWaitActivate($title,$text,$timeout=0)
    
WinWait($title,$text,$timeout)
    If 
Not WinActive($title,$textThen WinActivate($title,$text)
    
WinWaitActive($title,$text,$timeout)
EndFunc
#endregion --- Internal functions Au3Recorder End ---

#endregion --- Au3Recorder generated code End --- 
Shadow992 is offline  
Old 06/06/2010, 21:26   #3
 
elite*gold: 0
Join Date: Jun 2010
Posts: 40
Received Thanks: 30
Vielen Dank!!
Hat geklappt!!! *freu*
Traumverderber is offline  
Old 06/07/2010, 12:47   #4
 
AMrK's Avatar
 
elite*gold: 0
Join Date: Nov 2007
Posts: 32
Received Thanks: 30
Damit dir sowas nicht in Zukunft öfter passiert:
Du kannst per Hotkey keine Funktionen aufrufen die es bereits in Autoit gibt (MouseClick ist z.b. eine vordefinierte AutoIt-Funktion^^)...
Um sowas zu verhindern, solltest du einfach deine eigenen Funktionen immer mit einem _ vor dem Funktionsnamen versehen... dadurch bist du dir immer sicher, dass du nicht ausversehen versuchst eine bereits vorhandene Funktion von AutoIt zu überschreiben^^
Bsp:
PHP Code:
HotKeySet("j""_MouseClick")
Func _MouseClick()
Mouseclick("left",292,630,1)
EndFunc 
AMrK is offline  
Old 01/28/2011, 14:48   #5
 
elite*gold: 0
Join Date: Jan 2011
Posts: 6
Received Thanks: 0
can anyone to tranlae in english pls?
al3csspy is offline  
Old 01/29/2011, 23:07   #6
 
elite*gold: 0
Join Date: Jan 2011
Posts: 4
Received Thanks: 0
help translating this in english

Quote:
Originally Posted by Shadow992 View Post
Nenn es lieber in Mouse um :
PHP Code:

#region ---Au3Recorder generated code Start ---
Opt("WinWaitDelay",100)
Opt("WinDetectHiddenText",1)
Opt("MouseCoordMode",0)

Press Esc to terminate scriptPause/Break to "pause"

Global $Paused
HotKeySet
("{PAUSE}""TogglePause")
HotKeySet("{ESC}""Terminate")
HotKeySet("j""Mouse"

;;;; 
Body of program would go here ;;;;
_WinWaitActivate("Program Manager","")
MouseClick("left",284,887,1)
While 
1
_WinWaitActivate
("Online games – Seafight, the highlight of online pirate games - Mozilla Firefox","")
MouseClick("left",529,676,1)
WEnd
;;;;;;;;

Func TogglePause()
    
$Paused NOT $Paused
    
While $Paused
        sleep
(100)
        
ToolTip('Script is "Paused"',0,0)
    
WEnd
    ToolTip
("")
EndFunc

Func Terminate
()
    Exit 
0
EndFunc

Func Mouse
()
Mouseclick("left",292,630,1)
EndFunc


#region --- Internal functions Au3Recorder Start ---
Func _WinWaitActivate($title,$text,$timeout=0)
    
WinWait($title,$text,$timeout)
    If 
Not WinActive($title,$textThen WinActivate($title,$text)
    
WinWaitActive($title,$text,$timeout)
EndFunc
#endregion --- Internal functions Au3Recorder End ---

#endregion --- Au3Recorder generated code End --- 
and how it works thank you
mika73 is offline  
Old 01/30/2011, 10:49   #7
 
elite*gold: 0
Join Date: May 2010
Posts: 192
Received Thanks: 27
brauchst nicht extra schreiben lad dir ghostmouse runter
be_Water is offline  
Old 07/23/2011, 19:09   #8
 
elite*gold: 0
Join Date: Jul 2011
Posts: 1
Received Thanks: 0
Sziasztok! Letudnátok nekem írni ide magyarul a bot beállításait és,hogy hogyan is működik?

Sziasztok! Letudnátok nekem írni ide magyarul a bot beállításait és,hogy hogyan is működik?Németül is megfelel,de teljesen a beállítások is kellenek .köszönöm.

Hallo! Könnten Sie mich hier in Ungarn in der Bot-Einstellungen und wie gut es funktioniert zu treffen Deutsch, aber Sie sollten auch komplette Einstellungen. Vielen Dank.
hajohajo is offline  
Old 07/23/2011, 19:19   #9
 
elite*gold: 0
Join Date: Mar 2011
Posts: 8,645
Received Thanks: 3,454
This is an old Thread and your Google translation is very bad.
Freddy​ is offline  
Old 07/24/2011, 18:17   #10

 
elite*gold: 270
The Black Market: 207/0/0
Join Date: Apr 2011
Posts: 6,648
Received Thanks: 742
kann mir jemand den downlink link schciken per PN?


thx =D
[C]oLLapse is offline  
Old 07/28/2011, 17:12   #11
 
elite*gold: 0
Join Date: Jul 2011
Posts: 41
Received Thanks: 3
wie kann mann den bot aktivieren und wie funk.er
sagatowitsch is offline  
Old 07/31/2011, 13:37   #12
 
elite*gold: 0
Join Date: Jul 2011
Posts: 21
Received Thanks: 0
geht der noch ?
TS!Freak is offline  
Old 07/31/2011, 14:34   #13
 
elite*gold: 20
Join Date: Feb 2007
Posts: 3,080
Received Thanks: 4,294
wie wäre es mit probieren?
kknb is offline  
Reply


Similar Threads Similar Threads
[BIETE] Mojo´s Repack - 3.3.3a
06/02/2012 - WoW Private Server - 16 Replies
Hi Community Ich habe hier mal ein kleines 3.3.3a repack für euch! Anleitung findet ihr weiter unten! Ich hab es noch nicht 100%ig getestet aber soviel habe ich schon mal:
(Bug) HUGE from mojo
10/16/2008 - WoW Exploits, Hacks, Tools & Macros - 1 Replies
Mojo appears to be slightly bugged right now, and when you kiss him while mounted you get incredibly large (like, huge) for a brief moment. Will update an image in a minute http://img410.imageshack.us/my.php?image=mojovr9.j pg http://img511.imageshack.us/my.php?image=mojo2tc3. jpg Also, it is my mojo, i got it a while ago on this 49 shaman during that /kiss bug.
HEY MOJO!! Read this
10/04/2008 - Planetside - 2 Replies
Yo mojo remeber the ventrilo info I give you and MWx Inviald, Well tell me a good time and day you can can log on. I gotta speak to you about sumthing. It's sortof a challenge and i need help. So repy back or Just message me ORRR...i can give you my e-mail and IM, i'll send you a private message right now with my e-mail. Ok later dude
Mojo trick (handy in WSG)
01/30/2008 - WoW Exploits, Hacks, Tools & Macros - 7 Replies
http://xs223.xs.to/xs223/08040/froggy819.jpg When you have the flag in WSG, summon your frog and spam this macro: Code: /target mojo /kiss /targetlasttarget Just remember you can't cast any spells while you are a frog, but you are much more undetectable!
It's time for Mojo Baby ;)
11/20/2007 - WoW Exploits, Hacks, Tools & Macros - 1 Replies
Es ist nicht wirklich ein exploit aber ... Mit hilfe des pets Mojo ... was in Zul Aman drop ... kann man so einige blicke auf sich ziehen was ist zu tun ... 1. zuerst holt ihr euch das pet 2. Pet spawnen ... 3. dann mountet ihr auf ein x beliebiges mount 4. dannach "Mojo" ins Target nehmen und /kiss



All times are GMT +2. The time now is 18:26.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.