bechreibe dein problem im offiziellen support forum, da kann dir dann sicherlich geholfen werden
Quote:
auf folgender seite steht ne anleitung und da kannst auch probleme posten
[Only registered and activated users can see links. Click Here To Register...]
Hi, i'm trying to do simple bot for pressing with your code in Autoit but i have problem with one thing. When i'm running script it starts pressing on selected places but when i'm activating Aion client it stops pressing and when i'm deactivating client (like pressing on folder or menu start bar) it starts pressing again. Pressed buttons from quick bar by script are used (like macro for selecting NPC) but when it pressing on text from NPC nothing happens.Quote:
it is easy writing this with autoit using:
"mousemove", "mouseclick" and "mouseclickdrag" and if needed some "sleep"
cause its everytime the same he has to do.. putting it into a "While True" will never end this, until you say he has to
only thing you have to do getting in position where you can click the npc and you are able to craft and making a screenshot with the crafting window and the npc window opened .. now look in paint for the coordinates and write it using the commands i wrote ..PHP Code:Global $Paused
HotKeySet("{PAUSE}", "TogglePause")
HotKeySet("{ESC}", "myExit")
While True
;; <YOUR CODE HERE> ;;
WEnd
Func TogglePause()
$Paused = NOT $Paused
While $Paused
sleep(100)
ToolTip('Script is "Paused"',0,0)
WEnd
ToolTip("")
EndFunc
Func MyExit()
Exit
EndFunc
now you only need to now the ingredient, buy it and start botting