Quote:
Originally Posted by PandaLife
^Please do post the ahk script 
|
This is the ahk script I use on William Hill. I've put comments into the code indicating places that you may need to customise. Place the script in the poker client directory e.g. C:\Poker\William Hill Poker:
Code:
;iPoker modstarter
#NoEnv
#SingleInstance force
;Enter the name of the skin. Make sure it matches the name exactly capitals, spaces etc. For example : Skin=William Hill Poker
Skin=William Hill Poker
;Run the poker client
Run, casino.exe
;Wait for the client to start and then sleep to allow things to initialise correctly
WinWait, %Skin%
;The sleep time is in msecs and can be fine tuned e.g slower systems may need longer. If the time is too short then the following step for shutting down the client won't work. If it's too long then you'll just be left waiting for that amount of time.
sleep 7000
;Close the poker client
Process Close, casino.exe
;Copy the original files into the data folder. This needs to be changed depending on the location of your mods and the name of your skin
FileCopyDir, C:\Poker\William Hill Poker\Mod\Orig cards, C:\Poker\William Hill Poker\data\table\topview\cards, 1
FileCopyDir, C:\Poker\William Hill Poker\Mod\Orig back, C:\Poker\William Hill Poker\data\table\topview, 1
FileCopyDir, C:\Poker\William Hill Poker\Mod\Orig dealer, C:\Poker\William Hill Poker\data\table\topview\coins, 1
;Run the poker client for a second time
Run, casino.exe
;Wait for the client to start and then sleep to allow things to initialise correctly. Set this sleep time to the same value as the one above
WinWait, %Skin%
sleep 7000
;Copy the modded files into the data folder. This needs to be changed depending on the location of your mods and the name of your skin
FileCopyDir, C:\Poker\William Hill Poker\Mod\cards, C:\Poker\William Hill Poker\data\table\topview\cards, 1
FileCopyDir, C:\Poker\William Hill Poker\Mod\back, C:\Poker\William Hill Poker\data\table\topview, 1
FileCopyDir, C:\Poker\William Hill Poker\Mod\dealer, C:\Poker\William Hill Poker\data\table\topview\coins, 1
;Delete the Join Similar Table icon. It's personal preference whether or not you want to keep this icon
FileDelete, C:\Poker\William Hill Poker\data\table\topview\buttons\join_similar_table_icon.png