1500 lines of codes. You wouldn't understand and i don't write comment ^^
Set the autoenter delay at 3-4 seconds :)Quote:
How come my characters are invisable is there something wrong with my silkroad or the program?
Check down near your clock in the taskbar :) there is the condor icon,right click on it,and click close all autohotkey.Quote:
how do i stop the autokey while in game?
There is already one o.OQuote:
Can you make quick button for autokey in next version?
Have you chosen the client you want to put autokey?Quote:
Hello this looks great but i have a problem (yea sorry bout that :) ) i'm trying to use autoenter for this but the problem is that it says it is working but nothing happens, i'm using sroking, my res. is 1280x1024, i made an enter.cfg and selected it @ autokey pressed autokey it says it is working but nothing happens... (btw which file do i have to choose for launcher path? )
And why would you need that? O.oQuote:
Can you make quick button for autokey in next version?
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $refreshgui
$clients=WinList("[CLASS:CLIENT]")
_GUICtrlListView_DeleteAllItems($ListView1)
For $x=1 To $clients[0][0]
$pid=WinGetProcess($clients[$x][1])
$mem=memopen($pid)
$charname=memread($mem,$char_offset)
If $charname =0 Then
$charname ="Not logged in"
EndIf
$status=_srogetstate($clients[$x][1])
$clients[$x][0]=$charname
GUICtrlCreateListviewItem($charname &"|" &$status,$ListView1)
Next
Case $hidegui
$lmao=GUIctrlread(GUIctrlread($ListView1))
$split=StringSplit($lmao,"|")
For $x=1 To $clients[0][0]
$clients[$x][0]=$charname
If $split[1]= $clients[$x][0] Then
WinSetState($clients[$x][1],"",@SW_HIDE)
GUICtrlSetData(GUIctrlread($ListView1), $clients[$x][0] &"|"& _srogetstate($clients[$x][1]))
EndIf
Next
Case $showgui
$lmao=GUIctrlread(GUIctrlread($ListView1))
$split=StringSplit($lmao,"|")
For $x=1 To $clients[0][0]
$clients[$x][0]=$charname
If $split[1]= $clients[$x][0] Then
WinSetState($clients[$x][1],"",@SW_SHOWMINNOACTIVE)
GUICtrlSetData(GUIctrlread($ListView1), $clients[$x][0] &"|"& _srogetstate($clients[$x][1]))
EndIf
Next
Case $killgui
$lmao=GUIctrlread(GUIctrlread($ListView1))
$split=StringSplit($lmao,"|")
For $x=1 To $clients[0][0]
$clients[$x][0]=$charname
If $split[1]= $clients[$x][0] Then
If MsgBox(292, "Achtung!", "Willst du Silkroad wirklich beenden?") = 6 Then
ProcessClose($clients[$x][1])
EndIf
GUICtrlSetData(GUIctrlread($ListView1), $clients[$x][0] &"|"& _srogetstate($clients[$x][1]))
EndIf
Next
EndSwitch
WEnd
func _srogetstate($handle)
Local $status=WinGetState($handle)
Switch $status
Case 5
$status= "Hidden"
Case 21
$status= "Hidden"
Case 7
$status="Shown"
Case Else
$status="Shown"
EndSwitch
Return $status
EndFunc