Open Side Menu Go to the Top
Register
Ongame , some not professionally made ported mods Ongame , some not professionally made ported mods

01-21-2010 , 05:05 AM
A quick run down on how to make a batch file to automatically copy the files when your start the client

-Start the client and let it download the original TableImages.swf from the server
-Navigate to C:\Program Files\[your poker client]
-Copy and paste the TableImages.swf file, and name it TableImagesOriginal.swf
-Save your custom theme as TableImagesModified.swf in this folder
-Open notepad and paste the following text

Code:
@echo off
copy TableImagesOriginal.swf TableImages.swf
HeyPokerStartPoker.exe
echo When client has loaded
pause
copy TableImagesModified.swf TableImages.swf

Change "HeyPokerStartPoker.exe" to whatever skin you're using, and save this text in notepad as run.bat in the same folder and choose "Save as type" as "All files (*.*)" - do not save it as a .txt file or it won't work.

Now simply use run.bat to start your client, and when the client has loaded just press any key the in DOS window (don't click the x).
Ongame , some not professionally made ported mods Quote
01-23-2010 , 11:49 AM
got 2 questions, maybe someone can help me out:

1. is there a way to remove those 2 annoying buttons at the top left corner (casino and sportsbetting icons)

2. is it possible to change the look of the chips preferable to the "old" style that we had before the update?

thx
Ongame , some not professionally made ported mods Quote
01-25-2010 , 09:13 AM
Hello!

I Tried a lot of things, but nothing works for me at RedKings Poker. Could anybody write me here a step by step tutorial please?

Thanks a lot!

requiem
Ongame , some not professionally made ported mods Quote
01-26-2010 , 11:56 PM
is there a working auto rebuy script for ongame skins?
Ongame , some not professionally made ported mods Quote
01-29-2010 , 09:27 AM
Quote:
Originally Posted by requiem1989
Hello!

I Tried a lot of things, but nothing works for me at RedKings Poker. Could anybody write me here a step by step tutorial please?

Thanks a lot!

requiem
2 posts above yours -.-

fyp

Quote:
Originally Posted by kruli
A quick run down on how to make a batch file to automatically copy the files when your start the client

-Start the client and let it download the original TableImages.swf from the server
-Navigate to C:\Program Files\[your poker client]
-Copy and paste the TableImages.swf file, and name it TableImagesOriginal.swf
-Save your custom theme as TableImagesModified.swf in this folder
-Open notepad and paste the following text

Code:
@echo off
copy TableImagesOriginal.swf TableImages.swf
HeyPokerStartPoker.exe
echo When client has loaded
pause
copy TableImagesModified.swf TableImages.swf

Change "HeyPokerStartPoker.exe" to whatever skin you're using, and save this text in notepad as run.bat in the same folder and choose "Save as type" as "All files (*.*)" - do not save it as a .txt file or it won't work.

Now simply use run.bat to start your client, and when the client has loaded just press any key the in DOS window (don't click the x).
Ongame , some not professionally made ported mods Quote
02-01-2010 , 12:20 PM
Quote:
Originally Posted by kruli
A quick run down on how to make a batch file to automatically copy the files when your start the client

-Start the client and let it download the original TableImages.swf from the server
-Navigate to C:\Program Files\[your poker client]
-Copy and paste the TableImages.swf file, and name it TableImagesOriginal.swf
-Save your custom theme as TableImagesModified.swf in this folder
-Open notepad and paste the following text

Code:
@echo off
copy TableImagesOriginal.swf TableImages.swf
HeyPokerStartPoker.exe
echo When client has loaded
pause
copy TableImagesModified.swf TableImages.swf

Change "HeyPokerStartPoker.exe" to whatever skin you're using, and save this text in notepad as run.bat in the same folder and choose "Save as type" as "All files (*.*)" - do not save it as a .txt file or it won't work.

Now simply use run.bat to start your client, and when the client has loaded just press any key the in DOS window (don't click the x).
it doesn't work it shows me black table with goalwin logo, like when it's loading?
Ongame , some not professionally made ported mods Quote
02-01-2010 , 04:36 PM
Quote:
Originally Posted by Kingston24
it doesn't work it shows me black table with goalwin logo, like when it's loading?
You are using an outdated mod then
Ongame , some not professionally made ported mods Quote
02-02-2010 , 01:15 AM
Quote:
Originally Posted by kruli
A quick run down on how to make a batch file to automatically copy the files when your start the client

-Start the client and let it download the original TableImages.swf from the server
-Navigate to C:\Program Files\[your poker client]
-Copy and paste the TableImages.swf file, and name it TableImagesOriginal.swf
-Save your custom theme as TableImagesModified.swf in this folder
-Open notepad and paste the following text

Code:
@echo off
copy TableImagesOriginal.swf TableImages.swf
HeyPokerStartPoker.exe
echo When client has loaded
pause
copy TableImagesModified.swf TableImages.swf

Change "HeyPokerStartPoker.exe" to whatever skin you're using, and save this text in notepad as run.bat in the same folder and choose "Save as type" as "All files (*.*)" - do not save it as a .txt file or it won't work.

Now simply use run.bat to start your client, and when the client has loaded just press any key the in DOS window (don't click the x).
i did this and it loads the client fine but it doesn't mod the table. ive tried two recent table mods in the last few pages of this thread so i dont think theyre outdated. any ideas?
Ongame , some not professionally made ported mods Quote
02-02-2010 , 01:27 AM
ok nvm I managed to get my old ahk script working and it actually works as before with no changes, you just need an updated p5 and tableimages file.

*** code below********

#NoEnv
#SingleInstance force


;User must enter Skinname, the path of the skin, and the file of the new graphics file

SkinName=Heypoker
SkinPath=C:\HeyPoker
TableImageSourceFile=C:\TableImages.swf

;Code starts here
DestinationFileName=TableImages.swf

Run, HeyPokerStartPoker.exe, C:\HeyPoker

WinWait, Heypoker - Welcome

FileDelete, C:\HeyPoker\TableImages.swf
FileCopy, C:\TableImages.swf, C:\HeyPoker\TableImages.swf
FileDelete, C:\HeyPoker\P5-data.xml
FileCopy, C:\P5-data.xml, C:\HeyPoker\P5-data.xml

****** code above********

so paste that into note pad.

save your p5 and tableimages files that you want to mod the client with into your c drive. if you dont want to put them there you'll have to edit the directories in in the last and third last lines above.

if you use a diff skin then edit that too.

and done! script loads and mods client on startup
Ongame , some not professionally made ported mods Quote
02-03-2010 , 12:34 PM
Quote:
Originally Posted by ubeticall
You are using an outdated mod then
you are correct sir, thanks!
Ongame , some not professionally made ported mods Quote
02-06-2010 , 12:55 PM
i dont know if this is a stupid question.im playing on bwin but how the heck can i change the tablesize?i really hate these small tables.is there no way to resize them?
Ongame , some not professionally made ported mods Quote
02-07-2010 , 12:59 AM
Quote:
Originally Posted by Mr.o0
i dont know if this is a stupid question.im playing on bwin but how the heck can i change the tablesize?i really hate these small tables.is there no way to resize them?
the tables are sizable. Just click on outer edge and increase or decrease. Also there is a tile on the right corner which maximizes
Ongame , some not professionally made ported mods Quote
02-08-2010 , 11:49 AM
Quote:
Originally Posted by lozen
the tables are sizable. Just click on outer edge and increase or decrease. Also there is a tile on the right corner which maximizes

cant click on the outer edges and i have no tile on the right corner.

goooosh it only works on teh holdem tables........., but im playing omaha atm.how stupid is this?why cant you resize omaha tables?!
Ongame , some not professionally made ported mods Quote
02-09-2010 , 01:46 PM
Is it just me or does the mods dont work no more?
Ongame , some not professionally made ported mods Quote
02-09-2010 , 04:03 PM
Same here.
Ongame , some not professionally made ported mods Quote
02-09-2010 , 04:52 PM
Works fine for me.
Ongame , some not professionally made ported mods Quote
02-09-2010 , 11:29 PM
Strange that it still works fore some after the update. My mods dident work today so I had to re do it. Thx to all original moders, i just did an update. It has my bigger button and red card backs as I always miss one dude in the hand otherwise



Table
http://www.sendspace.com/file/v8t1y4
P5-Data
http://www.sendspace.com/file/vk0p7j
Ongame , some not professionally made ported mods Quote
02-10-2010 , 02:21 AM
Thanks again!
I was lost yesterday when i had to play w/ that Ongames poor table and small numbers etc.

I still got two problems:

1. How can I update my P5-data so i can resize the bet numbers at table?

2.is it possible to get the tournament clock and blinds shown at table and not on the sidetab?

Thanks in advantage!
Ongame , some not professionally made ported mods Quote
02-10-2010 , 02:28 AM
new mods plz?
Ongame , some not professionally made ported mods Quote
02-10-2010 , 03:05 AM
i use betsafe and i cant use the mods i get the black table with betsafe logo and the client is stuck.. tried the last mod here too dosnt work...
Ongame , some not professionally made ported mods Quote
02-10-2010 , 07:09 AM
What do you guys use for editing P5-Data (.xml) files?
Ongame , some not professionally made ported mods Quote
02-10-2010 , 10:28 AM
Quote:
1. How can I update my P5-data so i can resize the bet numbers at table?
I am unsure what ju meen by resize bet numbers, in the p5 I posted the bet amount is big.

Quote:
What do you guys use for editing P5-Data (.xml) files?
I use Notpad for editing the p5-data file.

Quote:
i use betsafe and i cant use the mods i get the black table with betsafe logo and the client is stuck.. tried the last mod here too dosnt work...
I tryed betsafe and had no problem with my upload.
Ongame , some not professionally made ported mods Quote
02-10-2010 , 12:53 PM
Quote:
Originally Posted by numero_uno
I am unsure what ju meen by resize bet numbers, in the p5 I posted the bet amount is big.
that was just what i ment

thanks a lot!


still curious if someone knows how to get the timer and blinds shown at table?
Ongame , some not professionally made ported mods Quote
02-10-2010 , 02:55 PM
Why everyone uses Rapidshare? Free accounts there never get to download anything, it's always overcrowded. If 30MB is enough for uploading, I would warmly recommend to everyone the following site:

http://www.speedyshare.com/
Ongame , some not professionally made ported mods Quote
02-11-2010 , 05:03 AM
how on earth are people figuring out which line of code they need to edit? we should maybe start a separate thread for it pointing to which line to edit and how in order to get what desired effect.

also, what program are people viewing P5-data.xml in? It seems that if you know what you're doing (and maybe unfortunately have a lot of time to spend) that you can quite extensively customise the OnGame tables..
Ongame , some not professionally made ported mods Quote

      
m