Requests - AutoIt only

05/01/2014 00:24 markus2#151
danke sehr. er ist aber leider nicht in der Lage nur im rappelz fenster tab 1 zu drücken. stelle ich da nicht machbare anspruche oder liegt das an was anderem?
05/01/2014 00:50 ichwillkeinevieren#152
Quote:
Originally Posted by markus2 View Post
danke sehr. er ist aber leider nicht in der Lage nur im rappelz fenster tab 1 zu drücken. stelle ich da nicht machbare anspruche oder liegt das an was anderem?
PHP Code:
ControlSend("Fenstername""""""{TAB}")
ControlSend("Fenstername""""""{1}"
einfach mit controlsend ersetzen und fenstername anpassen
05/01/2014 00:51 markus2#153
vielen dank^^
05/24/2014 00:52 flumio#154
Ich bräuchte ein Skript, wo ich per MemoryRead eine Adresse anklicken kann.
Mein momentanes Projekt:
[Only registered and activated users can see links. Click Here To Register...]
Da ein paar das Problem haben, das z.b. "Spiel starten" nicht angeklickt wird ( momentan durch ImageSearch gelöst ) dachte ich mir, diesen Knopf per CE auslesen und dann durch eine Funktion anklicken lasse.
Das müsste dann rein Theoretisch für jeden User dann klappen ?
05/24/2014 10:29 alpines#155
So einfach wir das nicht, du könntest per Reverse Engineering die Adresse der Funktion finden und sie callen aber so einfach ist das nicht.
05/24/2014 12:29 flumio#156
Schade, ich hätte gedacht jemand hat so was und könnte es mit mir sharen.
05/24/2014 22:29 monkeyking89#157
curious as to wether anyone could make an autoit script for me that could level and pickup items for this game : chronicles of mir, it shouldnt be a difficult one at all i would be very appreciative
06/16/2014 17:10 xEnergizeR#158
hi könnte mir vllt kurz bitte jmd helfen? ich brauche ein script für ein spiel , dass jedes mal wenn ich z.b. "F4" drück automatisch darauf die "ESC" taste gedrückt wird. Danke schonmal
06/16/2014 17:31 alpines#159
Code:
HotKeySet("{F4}", "_Go")

While Sleep(1000)
WEnd

Func _Go()
HotKeySet("{F4}")
Send("{F4}{ESC}")
HotKeySet("{F4}", "_Go")
EndFunc
06/16/2014 20:23 kellerkind123456#160
Mein Request wäre eine Convertierung eines AutoHotkey Scripts zu Autoit.
Es ist ein Combat Mode für Guild Wars 2, es beinhaltet MOUSLOOK, die freie Belegung der Maustasten, des Mausrads und ein Fadenkreuz.

Natürlich habe ich Google mit der Suche gequält, aber nix passendes für Autoit gefunden.

English:
My request is a conversion of an autohotkey script to autoit source code.
This script is a combat mode for Guild Wars 2 with mouselook, konfigurable mouse buttons and a crosshair.

Original Autohotkey Script:
Code:
#SingleInstance force
#NoEnv
#UseHook
#MaxThreadsBuffer On
#MaxHotkeysPerInterval 200
#KeyHistory 0
SendMode Input
SetKeyDelay, -1
SetBatchLines -1
SetWorkingDir %A_ScriptDir%

; Tray Menu
Menu, Tray, NoStandard
Menu, Tray, Add, Reload, ReloadScript
Menu, Tray, Add, Exit, Exit
onexit Exit

; Settings
IniRead, hkToggle, %A_ScriptDir%\GW2CmLite.ini, Keybinds, TOGGLE, LAlt
IniRead, hkLMB, %A_ScriptDir%\GW2CmLite.ini, Keybinds, LMB, 1
IniRead, hkRMB, %A_ScriptDir%\GW2CmLite.ini, Keybinds, RMB, 2
IniRead, hkMWU, %A_ScriptDir%\GW2CmLite.ini, Keybinds, MWU, ^
IniRead, hkMWD, %A_ScriptDir%\GW2CmLite.ini, Keybinds, MWD, ^
IniRead, y_cross_pos, %A_ScriptDir%\GW2CmLite.ini, Crosshair, YPOS, 0.40

; Initialization
bActive := false
iYPos   := (A_ScreenHeight*y_cross_pos) - 30
iXPos   := (A_ScreenWidth/2 - 4)

; Register Hotkeys
Hotkey, IfWinActive, ahk_class ArenaNet_Dx_Window_Class
  Hotkey,%hkToggle%,ToggleCombatMode
return

; Trap the following keys in Guild Wars 2
#IfWinActive, ahk_class ArenaNet_Dx_Window_Class
  $LButton::
    if (bActive == true){
      send, {%hkLMB%}
    } else {
      Click down left
      KeyWait, LButton
      Click up left
    }
  return

  $RButton::
    if (bActive == true) {
      send, {%hkRMB%}
    } else {
      Click down right
      KeyWait, RButton
      Click up right
    }
  return

  $WheelUp::
    if (bActive == true){
      send, {%hkMWU%}
    } else {
      send, {WheelUp}
    }
  return

  $WheelDown::
    if (bActive == true){
      send, {%hkMWD%}
    } else {
      send, {WheelDown}
    }
  return

#IfWinActive

ToggleCombatMode:
  if (bActive == false) {
    bActive := true
    BlockInput, MouseMove
    DllCall("SetCursorPos", int, (iXPos) , int, (iYPos))
    send {LButton up}
    send {RButton down}
    MouseMove 4, 0, 0, R
    sleep, 50
    BlockInput, MouseMoveOff
    SplashImage, crosshair.bmp,y%iYPos% b,,,Crosshair ;Crosshair Image
    WinSet, TransColor, Lime, Crosshair
    Sleep, 50
	SplashImage, Show,,,Crosshair
  } else {
    deactivate()
  }
return

ReloadScript:
  Reload
return

Exit:
  ExitApp
return

; Combat Mode Off
deactivate(){
  global bActive
  SplashImage, Off
  send, {RButton Up}
  bActive := false
  return
}
06/16/2014 21:09 alpines#161
Das ist kein AutoHotKey Script, das ist ein AutoIt Script.
06/16/2014 23:34 kellerkind123456#162
Quote:
Originally Posted by alpines View Post
Das ist kein AutoHotKey Script, das ist ein AutoIt Script.
Sorry, war mein Fehler. Habs korrigiert ...
07/14/2014 05:46 wodsucks#163
hi i am looking for a auto picker for this flash game war of dragons ([Only registered and activated users can see links. Click Here To Register...]) can u teach me how to make one thank you in advance
07/14/2014 19:24 ichwillkeinevieren#164
Quote:
Originally Posted by wodsucks View Post
hi i am looking for a auto picker for this flash game war of dragons ([Only registered and activated users can see links. Click Here To Register...]) can u teach me how to make one thank you in advance

Ger:
du musst schreiben was genau der bot machen soll z.b.
1sec tab halten dannach
(die taste)1 alle 2 sekunden drücken
Eng:
you have to write what the bot should do like
hold 1sec tab after that press every 2seconds (the number)1
07/15/2014 16:28 jochemali#165
Hi!, Im searching an script for this game: [Only registered and activated users can see links. Click Here To Register...]
Im playing in bluestacks, need "auto Full Tension Fishing" (auto FTF) im search in google and here but no find anything D:

Thanks for help!