Hi everybody, hi pt-team, I use some stats in the HUD in certain positions as in the following example....It cant be presented "built in" in the player summary and the player report is not a good option right now. here is the bloody result after hours of work:
i changed it from the stats to download (Fold to 4Bet After 3Bet Preflop on the Button vs the Cutoff)
I changed: first_raise, LIKE '01%', .enum_p_3bet_action here it is:
sum(if[cash_hand_player_statistics.flg_p_first_raise and cash_hand_summary.str_aggressors_p LIKE '01%' and cash_hand_summary.str_actors_p LIKE '1%' and cash_hand_player_statistics.position = 0 and cash_hand_player_statistics.enum_p_3bet_action = 'F', 1, 0])
I did the same with the other formula: I changed: first_raise, LIKE '01%', flg_p_3bet_def_opp.
sum(if[cash_hand_player_statistics.flg_p_first_raise and cash_hand_summary.str_aggressors_p LIKE '01%' and cash_hand_summary.str_actors_p LIKE '1%' and cash_hand_player_statistics.position = 0 and cash_hand_player_statistics.flg_p_3bet_def_opp, 1, 0])
but it doesnt show me any results in "player results"... now, after tons of command changes and many hours of work for finding the correct columns stats I am done and I am already not sure if i have got any datas which shows me the move: 3BET fold to a BTN reraise and the CO made the open raise......... I made similar things with att to steal (CO, BTN) and I could define the positions (once for only"CO" and once for only"BTN")and I could use it in PLAYER SUMMARY.... is it important in which row the commands are presented? the " AND" doesnt say me if I can interchange the commands aslong as they are writen correctly. OR is it very important NOT change the positions of the "sentences" : for example: cash_hand_summary.str_aggressors_p LIKE '01%' AND cash_hand_summary.str_aggressors_p LIKE '01%' is the same as: cash_hand_summary.str_aggressors_p LIKE '01%' AND cash_hand_summary.str_aggressors_p LIKE '01%'. second question: I often saw that sometimes the "and" is writen in capitals and sometimes not.... is this the same command? bloody beginner questions... Am I completly wrong with these stats??? thx for help!