This method will be called after the hand has ended and the winners are paid. You can here e.g. see if your play was successful regarding your winnnings or
do any other thing that you like.
Namespace: Potbot.Gameplay.AisAssembly: PotBot (in PotBot.exe) Version: 0.9.0.1 (0.9.0.1)
Syntaxpublic abstract void HandHasEnded(
TablePlayer inPlayerWithThisKi
)
Public MustOverride Sub HandHasEnded (
inPlayerWithThisKi As TablePlayer
)
abstract HandHasEnded :
inPlayerWithThisKi : TablePlayer -> unit
Parameters
- inPlayerWithThisKi
- Type: Potbot.Gameplay.PlayersTablePlayer
Because this is called after the hand si over, the usual call to get your player (GetCurrentPlayer) does not work, you get the refernece to your player from that parameter.
See Also