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

06-14-2009 , 11:04 AM
Quote:
Originally Posted by Sounded Simple
Along the lines of "diy" to make up for ongames new crappiness check out http://forumserver.twoplustwo.com/45...g-tool-251893/ for table positioning, sooooo slick.
Can you make that auto-resize the tables?
Ongame , some not professionally made ported mods Quote
06-14-2009 , 11:15 AM
http://rapidshare.com/files/244474696/TableImages.swf



i have made (switched the ranks) it myself in PaintNet so it's not perfect but looks good i think


Last edited by fozzy71; 06-14-2009 at 11:32 AM. Reason: inlined images
Ongame , some not professionally made ported mods Quote
06-14-2009 , 12:02 PM
I removed the previous ones I posted
I modified the Tower swf but appears to be working at other skins too

I have to say use these at your own risk!

Mods
- Dealer Button
- Removed logos
- Cards
- Player Panels
- Card Backs
- Cards

VERSION 1

VERSION 2



Ongame , some not professionally made ported mods Quote
06-14-2009 , 12:10 PM
Quote:
Originally Posted by nakke
Can you make that auto-resize the tables?
Yes, somehow it also automatically gets rid of the chat section too.
Ongame , some not professionally made ported mods Quote
06-14-2009 , 12:19 PM
Can you make some mods with others style of tables ?

Thx
Ongame , some not professionally made ported mods Quote
06-14-2009 , 12:23 PM
how can i edit your .swf ? actually i just installed flash decompiler, but I migh be to stupid for it.
can someone help me or tell me in a few words how to edit those swf files?
Ongame , some not professionally made ported mods Quote
06-14-2009 , 12:31 PM
@SzS

You can remove the betting and casino image/link in the top left corner, if you use the other images in my original mod
Ongame , some not professionally made ported mods Quote
06-14-2009 , 12:44 PM
Quote:
Originally Posted by AlterEgo
@SzS

You can remove the betting and casino image/link in the top left corner, if you use the other images in my original mod
Yeah I left them there intentionally
You can see where not to click!
Ongame , some not professionally made ported mods Quote
06-14-2009 , 12:59 PM
Quote:
Originally Posted by SzS
I removed the previous ones I posted
I modified the Tower swf but appears to be working at other skins too
/files/244479409/TableImages.swf"]VERSION 1[/URL]
TY
so much!
I was in really deep tilt already!
Ongame , some not professionally made ported mods Quote
06-14-2009 , 12:59 PM
Quote:
Originally Posted by AlterEgo
@SzS

You can remove the betting and casino image/link in the top left corner, if you use the other images in my original mod
Ok now I see what you mean
It cant even find it when I put in a trasparent image

Anyway it is enugh to be 33x33 pix
Ongame , some not professionally made ported mods Quote
06-14-2009 , 01:17 PM
Thank you so much SzS !!! very nice work


Could you make the same with those cards: http://img291.imageshack.us/img291/6...enablage02.png
Ongame , some not professionally made ported mods Quote
06-14-2009 , 01:20 PM
Quote:
Originally Posted by SzS
Ok now I see what you mean
It cant even find it when I put in a trasparent image

Anyway it is enugh to be 33x33 pix
OK I overwritten these and made 2 new version with a different table
So TABLE IMAGES 4 version (2Cards x 2Tables) Casino and Betting removed

Ongame , some not professionally made ported mods Quote
06-14-2009 , 01:22 PM
Can anyone get the ahk script working that was posted earlier in this thread? It starts Eurobet for me but doesn't seem to copy the files, here's how I modified it:
Code:
#NoEnv
#SingleInstance force


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

SkinName=EurobetPoker
SkinPath=C:\Program Files (x86)\Pokeri\EurobetPoker
TableImageSourceFile=C:\Users\Vista User\Desktop\TableImages.swf

;Code starts here
DestinationFileName=TableImages.swf

Run, StartEurobetPoker, %SkinPath%

WinWait, %SkinName% - Welcome

FileDelete, %SkinPath%\%DestinationFileName%
FileCopy, %TableImageSourceFile%, %SkinPath%\%DestinationFileName%
Did I miss something?

Edit: A HUGE thanks to all modders!!!
Ongame , some not professionally made ported mods Quote
06-14-2009 , 01:26 PM
Quote:
Originally Posted by ConZy
Thank you so much SzS !!! very nice work


Could you make the same with those cards: http://img291.imageshack.us/img291/6...enablage02.png
That is one of Fozzy's deck(if not the best) not properly resized
Personally I don't want to do it with a no-proper deck it goes against my respect for the original author.

But if somebody use the files I posted.....I can live with that.
Ongame , some not professionally made ported mods Quote
06-14-2009 , 01:38 PM
Quote:
Originally Posted by stevi3p
Here's a simple modstarter, a more primitive version of chris228's . It starts the ongame skin and copies the relevant graphics files in after the skin attempts to overwrite the modded graphics file. It needs a new graphics file to work (i.e., a shockwave file) - so take one from this thead. I've assumed that the set up for my skin, PokerLoco, re: the window is the same as for other skins, which I think it should be. If not, the code may need a slight tweak.

Here's the AHK code. Please read the comments at the begginning of the file to see how to use it - it's very simple. It assumes you know how to run AHK scripts. If not, please look at the previous thread or use the search function to work it out.

Any questions, please ask.

Code:
;QuickOngameModStarter AHK code written by stevi3p designed to simplify the modding of Ongame
;it starts the ongame skin and copies the relevant graphics files in after the skin attempts to overwrite the modded graphics file
;it needs a new graphics file to work

#NoEnv
#SingleInstance force


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

SkinName=PokerLoco
SkinPath=C:\PokerLoco\
TableImageSourceFile=C:\Users\Steve\Desktop\TableImages.swf

;Code starts here
DestinationFileName=TableImages.swf

Run, StartPokerLoco, %SkinPath%

WinWait, %SkinName% - Welcome

FileDelete, %SkinPath%\%DestinationFileName%
FileCopy, %TableImageSourceFile%, %SkinPath%\%DestinationFileName%

Doesn't seems to work at TowerGaming... I think that TowerGaming restarts the program after first start, because the first window disapears and reappears.


Don't think their is something wrong with this script:


Code:
;QuickOngameModStarter AHK code written by stevi3p designed to simplify the modding of Ongame
;it starts the ongame skin and copies the relevant graphics files in after the skin attempts to overwrite the modded graphics file
;it needs a new graphics file to work

#NoEnv
#SingleInstance force


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

SkinName=TowerGaming
SkinPath=C:\Program Files\TowerGaming\TowerGaming\
TableImageSourceFile=C:\Documents and Settings\ber\TableImages.swf

;Code starts here
DestinationFileName=TableImages.swf

Run, StartPoker.exe, %SkinPath%

WinWait, %SkinName% - Welcome

FileDelete, %SkinPath%\%DestinationFileName%
FileCopy, %TableImageSourceFile%, %SkinPath%\%DestinationFileName%
Ongame , some not professionally made ported mods Quote
06-14-2009 , 02:10 PM
hello i would like to change the color of the money the player has, i'v got a bad red one we don't see well

do you know where do i have to make a change?

thanks
Ongame , some not professionally made ported mods Quote
06-14-2009 , 02:37 PM
Quote:
Originally Posted by buzzi22
could you paste this cards seprately here??

I assume you have right rank this time
Ongame , some not professionally made ported mods Quote
06-14-2009 , 02:55 PM
my new

Ongame , some not professionally made ported mods Quote
06-14-2009 , 04:47 PM
Can anyone tell me how to compile into .swf again?
Ongame , some not professionally made ported mods Quote
06-14-2009 , 06:16 PM
Btw, since you guys seem to know a lot about Ongame:

Quote:
Originally Posted by Mossberg
I can't figure out how the note/classification system works. I can classify new players (players who i haven't classified in the past) but other players who I had previously marked I can not classify, and it only shows their status when looking at the table through the lobby. Other major problem is that I can not pull up my notes on a player while at the table!! It seems I can only pull up notes on them when looking at the table through the lobby?!
I have the same problem on Eurobet. Also, if I edit an old note at the table which I can only see from the lobby (so that when I open the "editor" it's blank even though I can see the notes I've made from the lobby) the old notes disappear. Anyone aware of a fix to this and are you guys experiencing the same problem?

Edit: Dear god lol, please tell me this is just me. I can't resize Omaha Hi tables (dunno about the other versions of Omaha). Texas HE tables I can. I mean I Know it's Ongame but, seriously...

Last edited by Babalatexi; 06-14-2009 at 06:37 PM.
Ongame , some not professionally made ported mods Quote
06-14-2009 , 06:34 PM
I have the same thing as I have written before...

fast solution with old notes seen from lobby and unable to change from table:

- copy whole text from lobby note
- open note from table and write anything for ex. "test" and save
- instead of this "test" paste what you copied before and save

- if you have red dot for player go to table and make it green and red again and it will stay on table instead of previus disapearing after saving

LOL I hope you understand
Ongame , some not professionally made ported mods Quote
06-14-2009 , 06:37 PM
For those struggling with the ahk script, check (a) that the title of the screen after you log in is exactly "EurobetPoker - welcome" or whatever (it may even be case sensitive). If you think this may be an issue then type in the exact name of the message rather than the "%SkinName% - Welcome" text.

Alternatively, (b) you could tell it sleep 8000 and delete the winwait command (this will make it wait for 8 secs rather than look for the title screen on the welcome page - this will probably be more robust, but slower).

Sorry if this doesn't work - I'm new to AHK and only got that to work for me through trial and error. I'm nowhere near chris' level (who wrote the more more sophisticated original ahk modstarter).
Ongame , some not professionally made ported mods Quote
06-14-2009 , 07:13 PM
alchemik:

I was hoping for a one-time fix for all notes but I suppose that works just as well, just a little more tedious. Anyhow, thanks!
Quick edit: seems like the notes disappear once you close the table so you have to do it every time, shame.
stevi3p:

Once again, my stupidity was to blame. For the skin name I put "EurobetPoker" cause that's what I've always seen...turns out it's "Eurobet Poker" and now it works like a charm. Thanks a bunch!

Last edited by Babalatexi; 06-14-2009 at 07:21 PM.
Ongame , some not professionally made ported mods Quote
06-14-2009 , 07:14 PM
I thought I have problems with my eyes but no
Look how these idiots messed up the most simple thing

Look at the difference when you turn off the side panel(no resizing or anything just the turn off) it simply blurs the cards
As it seems not all off them

Ongame , some not professionally made ported mods Quote

      
m