Hallo!
Heute gabs bei meinem OnGame Skin ein Update. Seit dem funktionier weder das hier
noch das hier
Cashgame Chip Reloader *Update: schnellere Version*
falls jemand schon ne lösung hat würde er sie uns mitteilen?
thx schon mal
Hallo!
Heute gabs bei meinem OnGame Skin ein Update. Seit dem funktionier weder das hier
noch das hier
Cashgame Chip Reloader *Update: schnellere Version*
falls jemand schon ne lösung hat würde er sie uns mitteilen?
thx schon mal
ich verwende es ja nicht. Aber ich denke, das liegt an den neuen Betsizes, die jetzt wesentlich besser einzustellen sind als vorher.
Weiss zwar nicht obs vorher ging bei mir gehts jedenfalls auch nicht ich habe aber simplebetpot erst seitdem es die buttons für 3/4 Potsize etc. gibt. Also bei mir gings noch nie. HILFE! ICH BRAUCH DAS!
;++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
; MANSION SIMPLE BETPOT (Version fuer englischen Clienten)
;
; Support im deutschen pokerstrategy.com Forum
;++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#NoEnv
#SingleInstance force
SendMode Input
SetWorkingDir %a_scriptDir%
SetBatchLines -1
;++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
; Hier die Hotkeys definieren!
;++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
~MButton::
betpot(1)
return
~RButton::
betpot(0.75)
return
~XButton1::
betpot(0.66)
return
~XButton2::
betpot(0.50)
return
~F4::
betpot(1)
return
~F5::
betpot(0.75)
return
~F6::
betpot(0.66)
return
~F7::
betpot(0.50)
return
;++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
; Ab hier nichts mehr verändern!
;++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
betpot(size = 1)
{
amount := fullamount(win) * size + callamount(win)
transform, amount, round, amount, 1
Wingetactivetitle, title
Ifinstring, title, Money
{
bet(win, amount)
}
}
bet(win, amount)
{
rep1 := ","
rep2 := "."
Wingetactivetitle, title
stringreplace, amount, amount, %rep2% , %rep1%
WinActivate
ControlClick, RichEdit20W2, %title%
ControlSetText, RichEdit20W2, , %title%
SendPlay % amount
Sleep 100
}
getpot(win)
{
rep1 := ","
rep2 := "."
Wingetactivetitle, title
ControlGetText, pot, AfxWnd70u12, %title%
StringTrimLeft, pot, pot, InStr(pot, "$")
stringreplace, pot, pot, %rep1% , %rep2%
return pot
}
getcost(win)
{
rep1 := ","
rep2 := "."
Wingetactivetitle, title
ControlGetText, cost, AfxWnd70u45, %title%
if (ErrorLevel)
{
cost := 0
return
}
StringTrimLeft, cost, cost, InStr(cost, "$")
stringreplace, cost, cost, %rep1% , %rep2%
return cost
}
fullamount(win)
{
Wingetactivetitle, title
pot := getpot(win)
tocall := callamount(win)
Setformat, float, 0.0
fullamount := pot + tocall
return fullamount
}
callamount(win)
{
cost := getcost(win)
Setformat, float, 0.0
Wingetactivetitle, title
DetectHiddenText, Off
IfWinNotExist %title%, Cost:
{
callamount:=0
return callamount
}
callamount:=cost
return callamount
}
Is zwar Super das du den Quelltext hier reingeschrieben hast aber es funktioniert leider nicht. Egal welche Taste ich drücke nix passiert.
Ps: ich probiers mit Spielgeld kanns daran liegen???
Das Rebuyen bei mansion hat sich geändert!
Man rebuyt nicht mehr auf ... sodern um ...
Für was braucht ihr nen BetPot Script? Man kann nun die Betsizes immer mit dem Mausrad einstellen und Postflop hat man auch noch die Buttons. <3 Ongame
Original von ManU78
Is zwar Super das du den Quelltext hier reingeschrieben hast aber es funktioniert leider nicht. Egal welche Taste ich drücke nix passiert.Ps: ich probiers mit Spielgeld kanns daran liegen???
bei mir läufts einwandfrei, hier nochmal ohne die numerierten zeilen - allerdings auf einem anderen ongame skin - nicht mansion:
;++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
; MANSION SIMPLE BETPOT (Version fuer englischen Clienten)
;
; Support im deutschen pokerstrategy.com Forum
;++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++#NoEnv
#SingleInstance forceSendMode Input
SetWorkingDir %a_scriptDir%
SetBatchLines -1;++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
; Hier die Hotkeys definieren!
;++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++~MButton::
betpot(1)
return~RButton::
betpot(0.77)
return~XButton1::
betpot(0.66)
return~XButton2::
betpot(0.50)
return~F4::
betpot(1)
return~F5::
betpot(0.75)
return~F6::
betpot(0.66)
return~F7::
betpot(0.50)
return;++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
; Ab hier nichts mehr verändern!
;++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++betpot(size = 1)
{
amount := fullamount(win) * size + callamount(win)
transform, amount, round, amount, 1
Wingetactivetitle, title
Ifinstring, title, Money
{
bet(win, amount)
}
}bet(win, amount)
{
rep1 := ","
rep2 := "."
Wingetactivetitle, title
stringreplace, amount, amount, %rep2% , %rep1%
WinActivate
ControlClick, RichEdit20W2, %title%
ControlSetText, RichEdit20W2, , %title%
SendPlay % amount
Sleep 100}
getpot(win)
{
rep1 := ","
rep2 := "."
Wingetactivetitle, title
ControlGetText, pot, AfxWnd70u12, %title%
StringTrimLeft, pot, pot, InStr(pot, "$")
stringreplace, pot, pot, %rep1% , %rep2%
return pot
}getcost(win)
{
rep1 := ","
rep2 := "."
Wingetactivetitle, title
ControlGetText, cost, AfxWnd70u45, %title%
if (ErrorLevel)
{
cost := 0
return
}
StringTrimLeft, cost, cost, InStr(cost, "$")
stringreplace, cost, cost, %rep1% , %rep2%
return cost
}fullamount(win)
{
Wingetactivetitle, title
pot := getpot(win)
tocall := callamount(win)
Setformat, float, 0.0
fullamount := pot + tocall
return fullamount
}callamount(win)
{
cost := getcost(win)
Setformat, float, 0.0
Wingetactivetitle, title
DetectHiddenText, Off
IfWinNotExist %title%, Cost:
{
callamount:=0
return callamount
}
callamount:=cost
return callamount
}
Dieses hier geht auch nicht mehr:
Table highlighten! Wer bringt AHK-Script zum laufen? [UPDATE: LÄUFT]
Liegt sicher am Update bei mansion.
--> F8(reloaden) -->rechtsklick auf autohotkey symbol --> skript pausieren --> skript reloaden.
so reload ich jetzt . nervige prozedur!
hoffenlich gibts bald n neues skript oder so.