Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Guild Wars > GW Bots
You last visited: Today at 14:37

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

Advertisement



Frage Bezüglich meines Bots

Discussion on Frage Bezüglich meines Bots within the GW Bots forum part of the Guild Wars category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Dec 2007
Posts: 301
Received Thanks: 53
Frage Bezüglich meines Bots

Alsooo,
Ja ich hab schon wieder ne frage
und zwar:

Mein Bot läuft jetzt mit MoveTo und ControlSend/Click und jetzt drückt er manchmal die umschalt taste und das stört schon beim chatten und so, wen man dan aufeinmal ganz groß schreibt und dan mal wieder klein.... Meine frage ist kann man des irgendwie abschalten oder so ??

So dan hab ich nochmal ne frage und zwar wie kann ich es machen, das mein bot nach xx Runden Farmen, Verkaufen geht ???

Uuund nochmal eine

Ich wollte mir für meinen Bot einen netten Gui basteln via Koda Form Designer.
dan hab ich mir den Gui schön in einen code auspucken lassen, hab den verschiedenen Knöpfen funktionen zugeteilt... aber wen ich jetzt auf einen Knopf drücke geschiet *trommelwirbel* NIX und ich wunder mich schon die ganze zeit warum da nix passirt

pls Helft mir

mfg
Hokler

PS: Hir der Code vom Kompletten Gui:
PHP Code:
#include <GUIConstants.au3>

#Region ### START Koda GUI section ### Form=c:\users\tobias\desktop\au3 scripts\1) meine bots\2) factions bots\assa boss bot\assa.boss.bot v.2a\anleitung+bild\hintergrund bild für gui\form1.kxf
$Form1_1 GUICreate("Assa Boss Bot by Hokler v.2a"477334193125)
$Button1 GUICtrlCreateButton("Bot Starten"88137490)
GUICtrlSetFont(-198000"Comic Sans MS")
$Button2 GUICtrlCreateButton("GW Fenster anpassen"896137490)
GUICtrlSetFont(-198000"Comic Sans MS")
$Button3 GUICtrlCreateButton("Bot Pausiren"8184137490)
GUICtrlSetFont(-198000"Comic Sans MS")
$Button4 GUICtrlCreateButton("Bot Stoppen"8272137490)
GUICtrlSetFont(-198000"Comic Sans MS")
$Label1 GUICtrlCreateLabel("Startet den Bot"15289020)
GUICtrlSetFont(-188000"Comic Sans MS")
$Label2 GUICtrlCreateLabel("Passt das GW Fenster auf die Richtigen Größe an"1529626920)
GUICtrlSetFont(-188000"Comic Sans MS")
$Label3 GUICtrlCreateLabel("Hält den Bot an und macht eine pause (der charakter darf"15219231920)
GUICtrlSetFont(-188000"Comic Sans MS")
$Label4 GUICtrlCreateLabel("nicht bewegt werden !!!!)"15220813620)
GUICtrlSetFont(-188000"Comic Sans MS")
$Label5 GUICtrlCreateLabel("Beendet den Bot"1602729220)
GUICtrlSetFont(-188000"Comic Sans MS")
$Label6 GUICtrlCreateLabel("Copyright(c) by Hokler"36831210817)
$Label7 GUICtrlCreateLabel("Skillung:"152405020)
GUICtrlSetFont(-188000"Comic Sans MS")
$OgNDkMnNSfVlCLD8Q0C4ggEyDA GUICtrlCreateInput("OgNDkMnNSfVlCLD8Q0C4ggEyDA"2084020124)
GUICtrlSetFont(-188000"Comic Sans MS")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
    $nMsg 
GUIGetMsg()
    Switch 
$nMsg
        
Case $GUI_EVENT_CLOSE
            
Exit

    EndSwitch
WEnd

$Button1 
Call("bot_start")
$Button2 Call("gw_anpassen")
$Button3 Call("Pause")
$Button4 Call("Ende"
Hokler is offline  
Old 01/06/2009, 23:34   #2
 
NBA's Avatar
 
elite*gold: 0
Join Date: Apr 2008
Posts: 1,874
Received Thanks: 213
entweder
Code:
If $nNMg = $button1 then
Dein Code
Endif
oder
Code:
case $button1 
dein code
NBA is offline  
Old 01/06/2009, 23:34   #3
 
elite*gold: 0
Join Date: Jan 2008
Posts: 1,098
Received Thanks: 198
Quote:
Originally Posted by Hokler View Post
Alsooo,
Ja ich hab schon wieder ne frage
und zwar:

Mein Bot läuft jetzt mit MoveTo und ControlSend/Click und jetzt drückt er manchmal die umschalt taste und das stört schon beim chatten und so, wen man dan aufeinmal ganz groß schreibt und dan mal wieder klein.... Meine frage ist kann man des irgendwie abschalten oder so ??

So dan hab ich nochmal ne frage und zwar wie kann ich es machen, das mein bot nach xx Runden Farmen, Verkaufen geht ???

Uuund nochmal eine

Ich wollte mir für meinen Bot einen netten Gui basteln via Koda Form Designer.
dan hab ich mir den Gui schön in einen code auspucken lassen, hab den verschiedenen Knöpfen funktionen zugeteilt... aber wen ich jetzt auf einen Knopf drücke geschiet *trommelwirbel* NIX und ich wunder mich schon die ganze zeit warum da nix passirt

pls Helft mir

mfg
Hokler

PS: Hir der Code vom Kompletten Gui:
PHP Code:
#include <GUIConstants.au3>

#Region ### START Koda GUI section ### Form=c:\users\tobias\desktop\au3 scripts\1) meine bots\2) factions bots\assa boss bot\assa.boss.bot v.2a\anleitung+bild\hintergrund bild für gui\form1.kxf
$Form1_1 GUICreate("Assa Boss Bot by Hokler v.2a"477334193125)
$Button1 GUICtrlCreateButton("Bot Starten"88137490)
GUICtrlSetFont(-198000"Comic Sans MS")
$Button2 GUICtrlCreateButton("GW Fenster anpassen"896137490)
GUICtrlSetFont(-198000"Comic Sans MS")
$Button3 GUICtrlCreateButton("Bot Pausiren"8184137490)
GUICtrlSetFont(-198000"Comic Sans MS")
$Button4 GUICtrlCreateButton("Bot Stoppen"8272137490)
GUICtrlSetFont(-198000"Comic Sans MS")
$Label1 GUICtrlCreateLabel("Startet den Bot"15289020)
GUICtrlSetFont(-188000"Comic Sans MS")
$Label2 GUICtrlCreateLabel("Passt das GW Fenster auf die Richtigen Größe an"1529626920)
GUICtrlSetFont(-188000"Comic Sans MS")
$Label3 GUICtrlCreateLabel("Hält den Bot an und macht eine pause (der charakter darf"15219231920)
GUICtrlSetFont(-188000"Comic Sans MS")
$Label4 GUICtrlCreateLabel("nicht bewegt werden !!!!)"15220813620)
GUICtrlSetFont(-188000"Comic Sans MS")
$Label5 GUICtrlCreateLabel("Beendet den Bot"1602729220)
GUICtrlSetFont(-188000"Comic Sans MS")
$Label6 GUICtrlCreateLabel("Copyright(c) by Hokler"36831210817)
$Label7 GUICtrlCreateLabel("Skillung:"152405020)
GUICtrlSetFont(-188000"Comic Sans MS")
$OgNDkMnNSfVlCLD8Q0C4ggEyDA GUICtrlCreateInput("OgNDkMnNSfVlCLD8Q0C4ggEyDA"2084020124)
GUICtrlSetFont(-188000"Comic Sans MS")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
    $nMsg 
GUIGetMsg()
    Switch 
$nMsg
        
Case $GUI_EVENT_CLOSE
            
Exit

    EndSwitch
WEnd

$Button1 
Call("bot_start")
$Button2 Call("gw_anpassen")
$Button3 Call("Pause")
$Button4 Call("Ende"
mach das so mit den buttons
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button 1
bot_start()
EndSwitch
WEnd

Bot nach xx runden verkaufen gehen lassen
For $i = 1 to xx runden step 1
i4mSoH34Vy is offline  
Old 01/06/2009, 23:54   #4
 
elite*gold: 0
Join Date: Dec 2007
Posts: 301
Received Thanks: 53
Erstmal Danke an euch zwei =D

aber irgendwie funktioniren meine Knöpfe immer noch nicht

und
@j199207: For $i = 1 to xx runden step 1 : des kappir ich irgendwie nicht o.O
Hokler is offline  
Old 01/07/2009, 00:03   #5
 
elite*gold: 0
Join Date: Nov 2008
Posts: 576
Received Thanks: 191
du solltest dir allgemein erstmal schleifen anschauen, und verstehen wozu man sie benötigt.
__wadim is offline  
Old 01/07/2009, 00:05   #6
 
elite*gold: 0
Join Date: Jan 2008
Posts: 1,098
Received Thanks: 198
Quote:
Originally Posted by Hokler View Post
Erstmal Danke an euch zwei =D

aber irgendwie funktioniren meine Knöpfe immer noch nicht

und
@j199207: For $i = 1 to xx runden step 1 : des kappir ich irgendwie nicht o.O
Du musst auch erst jeden Button belegen. Achso und Pause im Gui kannst dir schenken, da sie nicht aufgerufen werden kann wenn du das Farmen aufgerufen hast.
i4mSoH34Vy is offline  
Old 01/07/2009, 15:34   #7
 
| Moep |'s Avatar
 
elite*gold: 0
Join Date: Apr 2008
Posts: 1,079
Received Thanks: 438
Have a look at the Autoit Helpfile:

GUICtrlCreateButton:

Code:
#include <GUIConstants.au3>

GUICreate("My GUI Button")  ; will create a dialog box that when displayed is centered
Opt("GUICoordMode",2)
[COLOR="Red"]$OK = [/COLOR]GUICtrlCreateButton ("OK",  10, 30, 50)
[COLOR="Red"]$Cancel = [/COLOR]GUICtrlCreateButton ( "Cancel",  0, -1)

GUISetState ()       ; will display an  dialog box with 2 button

; Run the GUI until the dialog is closed
While 1
    $msg = GUIGetMsg()
    
    If $msg = $GUI_EVENT_CLOSE Then ExitLoop
[COLOR="Red"]If $msg = $OK Then
	MsgBox(0,"","Du hast auf Ok geklickt")
ElseIf $msg = $Cancel Then
	MsgBox(0,"","Du hast auf Cancel geklickt")
	ExitLoop
	EndIf[/COLOR]
Wend
Dass rote hab ich eingesetzt.
Ersetz dann die msgbox einfach mit deiner func...
| Moep | is offline  
Reply


Similar Threads Similar Threads
Frage bezüglich der DSi XL
04/29/2010 - Consoles - 2 Replies
Hallo E*PvPer, mein Kumpel hat sich eine DSi XL geholt und er fragte mich, ob es möglich sei, den M3 DS Real Chip von NDS Lite zu nehmen, damit er runtergeladene Spiele spielen kann. Falls nicht, wie heißen die Chips, die ich mir holen müsste. Kann die Seriennummer gesperrt werden?
Frage bezüglich WoW
03/02/2010 - World of Warcraft - 2 Replies
.
Frage bezüglich NW2..-.-
01/01/2010 - Metin2 Private Server - 19 Replies
Hey eigd geht das an downi und imer aber die pnen ja nie back ich wüsste gerne wieso ihr meinen acc bannt obwohl ich map1 stehe und meine tfc switche Oo i-was läuft da doch schief... könntet euch ja mal die 40 sek nehmen und das hier lesen mfg dome-.-
hi hab ne frage bezüglich npc
11/11/2009 - Metin2 PServer Guides & Strategies - 4 Replies
Kann man wenn man ein npc gemacht hat es so einstellen das es so wie die gemi händlerin immer da is also auch nach dem reboot.
suche denker und problemlöser für das optimieren meines aion Bots
08/04/2009 - Aion - 2 Replies
wie die überschrift schon sagt ich suche jemanden der mit mir optimiert und gute lösungen findet für das 24 stunden farming in aion. den bot programmiere ich, also musst du kein profi in sachen informatik sein. du solltest skype besitzen oder es dir besorgen, denn per chat alleine ist der informations austausch nur beschränkt. somit solltest du auch ein headset besitzen mit microphone. deine aufgaben,wie sie auch meine sind, werden unter anderem sein: -suchen guter farmspots...



All times are GMT +2. The time now is 14:37.


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.