Features
For auto-scan tools:
Supported online host systems and poker rooms combinations:
Supported local trackers / HUDs:
Known issues:
1) Integration with HM2 HUD is very limited.
Notes are managed by direct SQL queries against HM2 DB.
Something like this (room identifier is ingnored for now):
HM2_GET_PLAYER_NOTES_SQL = "select n.player_note_id, current_timestamp, n.note from player_notes n, players p, note_categories c where p.player_id=n.player_id and n.category_id=c.category_id and c.description='G' and lower(p.playername)=lower(?)";
HM2_DELETE_PLAYER_NOTES_SQL = "delete from player_notes where player_notes.category_id=(select note_categories.category_id from note_categories where note_categories.description='G' ) and exists (select players.player_id from players where players.player_id=player_notes.player_id and lower(players.playername)=lower(?))";
HM2_ADD_PLAYER_NOTES_SQL = "insert into player_notes (player_note_id, player_id, category_id, icon_id, note, display_order, date_created, gamenumber, pokersite_id) values (nextval(\'player_notes_player_note_id_seq\'), (select player_id from players where lower(playername)=lower(?)), (select note_categories.category_id from note_categories where note_categories.description='G'), 0, ?, 0, NOW(), 0, 0)";
HM2_UPDATE_PLAYER_NOTES_SQL = "update player_notes set note=? where player_notes.category_id=(select note_categories.category_id from note_categories where note_categories.description='G' ) and exists (select players.player_id from players where players.player_id=player_notes.player_id and lower(players.playername)=lower(?))";
However, due to HM2 HUD caching it doesn't resync with DB until HM2 is restarted - after that new/updated notes are shown in HUD. Issue was raised with HM2 support and will be reviewed by the dev team: http://forumserver.twoplustwo.com/showpost.php?p=33390156&postcount=15
2) Integration with free HUD PokerHands is very limited. Tools can add/modify player notes store in PokerHands DB, but seems player notes display in HUD is not supported yet. The question about that was asked: http://forumserver.twoplustwo.com/showpost.php?p=33412314&postcount=1035