I know we have the ability to display in hud vpip stats based on position.
I would like to use less space on my HUD for my VPIP stats.
Instead of displaying the vpip for each position I like to do is to display ONLY the VPIP based on the players current position in the hand
In other words
If current position is the button (position 0) then I want to display the vpip for the button only
If the current position is co (position 1) then I want to only display the vpip for the co only.
Same for the remaining positions.
IF THIS IS POSSIBLE I KNOW THAT I MUST NEST EXPRESSIONS FOR EACH POSITION BUT I AM HAVING A PROBLEM WITH THE FORMAT.
I am trying to add this as a variable
If(holdem_hand_player_statistics.position = 0), ((VPIP_button_numerator / VPIP_button_denominator) * 100), if(holdem_hand_player_statistics.position = 1), ((VPIP_CO_numerator / VPIP_from_CO_demoninator) * 100),if(holdem_hand_player_statistics.position = 2),((VPIP_Hijack_Numerator / VPIP_Hijack_Denominator) * 100), If(holdem_hand_player_statistics.position = 3), ((VPIP_Button_Plus3_Numerator_scm / VPIP_Button_Plus3_Denominator_scm) * 100), If(holdem_hand_player_statistics.position = 4), ((VPIP_Button_Plus4_Numerator_scm / VPIP_Button_Plus4_Denominator_scm) * 100),If(holdem_hand_player_statistics.position = 5), ((VPIP_Button_Plus5_Numerator_scm / VPIP_Button_Plus5_Denominator_scm) * 100), If(holdem_hand_player_statistics.position = 6), ((VPIP_Button_Plus6_Numerator_scm / VPIP_Button_Plus6_Denominator_scm) * 100), 1
If possible I believe the format can be used for other position based stats too.
please ..what have i done wrong??
