|
| Customizing Player Types |
Player types are now customizable. After MacPoker Pro launches for the first time, you will be able to edit the file named mppconfig.plist in the MacPoker Pro directory within ~/Library/Application Support/ directory. The descriptions are simple to edit and all of your changes will be reflected in the application. In addition, you can change the threshold values that affect which Player Type is assigned to particular styles of players. |
| Applescript for FullTilt |
The following Applescript can be used to process a hand history file from Full Tilt. With some work, you could automatically watch the Full Tilt history folder or write a script to import existing hands in bulk.
tell application "MacPoker Pro"
get File "/Users/me/Desktop/test.txt"
end tell
Scott Geiger has written a script that can be used to automatically launch a new session using MacPoker Pro. He has also written a script for importing all existing hand history files from a folder.
|
| New Session bookmarklet |
Drag and drop this bookmarklet to your Bookmarks Bar. Now when you are viewing any hand, simply click this bookmarklet to launch a new Session in MacPoker Pro! |
| Applescript |
You can also tell MacPoker Pro to create one (or more) new Sessions using Applescript. Try compiling and running the
following script (you will have to substitue or remove the IP address of the target machine - I normally invoke this script across
the network.
set should_quit to false
repeat until should_quit is true
display dialog "Enter a hand number:" default answer "" buttons {"Quit",
"Submit"} default button 2
copy the result as list to {hand_number, button_pressed}
if button_pressed is equal to "Quit" then set should_quit to true
if the hand_number is not "" then
tell application "MacPoker Pro" of machine
"eppc://192.168.0.2"
get URL "mppro://" & hand_number
end tell
end if
end repeat |
| Continue |
|