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

10-25-2007 , 06:21 AM
Yeah
It seems to me that all the links are working.
Ongame , some not professionally made ported mods Quote
10-25-2007 , 10:01 AM
upss links works sorry , i dowload with flashgot and get error , but with standard downloader it's works fine.
to Szs ,will you do size of cards (for minitables) more big ? And else when client start , he upload original files , maybe you know how recieve this problem with batch file or something else ?
Ongame , some not professionally made ported mods Quote
10-25-2007 , 11:34 AM
As I remember I tried it and here it doesnt work.
At fulltilt you can do bigger pictures ,here as I know you only have 2 sizes 1 for normal and 1 for the minitables.

Try this :
Ongame Modstarter by Chris

Or, I use a modification of version 0.5(as I remember) not this fully automatic script above.

here it is,and you should modify it according to which skin you play at ...etc :

; OngameMod Starter v0.50
; Autor: Chris
; contributions by Roland ('s Functions)
; Contact: Chris228 @ 2+2 forum

#NoEnv
#SingleInstance force
SendMode Input

;------------- Settings -----------------------------------------------------------------------------

; Set the path to your OngameClient.exe
path=C:\Program Files\TowerGaming\StartPoker.exe


; If the table mod is copied you will get a message ( 1 = enabled, 0 = disabled )
CopyMsg=0

; Automatic closing of the Welcome/News window from the Ongame client ( 1 = enabled, 0 = disabled )
CloseWelcomeMsg=0

; Using the login window for detection if the client has started ( 1 = enabled, 0 = disabled )
UseLogin=0


;------------- Program ------------------------------------------------------------------------------

wdir:=""
StringGetPos, pos, path, \, r1
if (pos > 0)
StringLeft, wdir, path, pos+1

FileCopy, %wdir%\resources\graphics\originals\*.*, %wdir%\resources\graphics\, 1


sleep, 1000

Run, %path%, %wdir%


FileList =
Loop %wdir%resources\graphics\mod\*.*
FileList = %FileList%%A_LoopFileName%`n

sleep, 3000

stopTimer := CreateStopTimer(60)

Loop, parse, FileList, `n
{
if ( A_LoopField = "" )
break
FileCopy, %wdir%resources\graphics\%A_LoopField%, %wdir%\resources\graphics\originals\, 1
}



Loop {
sleep, 500
if ( UseLogin = 1)
id:=LoginIDPokerRoom()
else
id:=LobbyIDPokerRoom()
if ! ( id = "" ) {
FileCopy, %wdir%\resources\graphics\mod\*.*, %wdir%\resources\graphics\, 1
if ( CopyMsg = 1)
msgbox, 0, OngameMod Starter, Tablemod copied., 5
break
}
if (A_Now > stopTimer) {
msgbox, 4, Ongame Mod Starter, Tablemod not copied. Copy now?, 120
IfMsgBox Yes
{
FileCopy, %wdir%\resources\graphics\mod\*.*, %wdir%\resources\graphics\, 1
}
break
}
}

if ( CloseWelcomeMsg = 1) {
stopTimer := CreateStopTimer(60)
Loop {
msgid:=MsgIDPokerRoom()
if ! ( msgid = "" ) {
WinClose, ahk_id %msgid%
break
}
if (A_Now > stopTimer)
break
sleep, 100
}
}


;------------- Functions -------------------------------------------------------------------------

LobbyIDPokerRoom() {
SetTitleMatchMode 1
WinGet, id, id, Tower Gaming Poker Room - Welcome
If ! id
WinGet, id, id, HollywoodPoker.com - Welcome
If ! id
WinGet, id, id, EurobetPoker - Welcome
If ! id
WinGet, id, id, Betsson - Welcome
return id
}

LoginIDPokerRoom() {
SetTitleMatchMode 1
WinGet, id, id, PokerRoom.com Login
If ! id
WinGet, id, id, HollywoodPoker.com Login
If ! id
WinGet, id, id, EurobetPoker Login
If ! id
WinGet, id, id, Betsson Login
return id
}

MsgIDPokerRoom() {
SetTitleMatchMode 3
WinGet, id, id, News
return id
}

CreateStopTimer(seconds)
{
stopTime := A_Now
EnvAdd, stopTime, %seconds%, seconds
return (stopTime)
}
Ongame , some not professionally made ported mods Quote
10-27-2007 , 10:47 AM

1. incorrect look buttons in minitable and full mode , why ?
2. chat box must be grey , not white .
3. Roland script doesnt return original files when i close pokerroom , do you know how to do that ?
Ongame , some not professionally made ported mods Quote
10-27-2007 , 05:36 PM
1. I dont know what you are messing up because it works perfectly ,I tried it true not with Play Money though.
2. Wouldn't you think it would be hard to read what you type in the chatbox if you type black letters to a black/grey background? The original is white too
3. You don't understand what the script do ,this is that simple. The return of the original files at closing is simply unnecessary.
Ongame , some not professionally made ported mods Quote
10-28-2007 , 03:28 AM
Quote:
1. I dont know what you are messing up because it works perfectly ,I tried it true not with Play Money though.
2. Wouldn't you think it would be hard to read what you type in the chatbox if you type black letters to a black/grey background? The original is white too
3. You don't understand what the script do ,this is that simple. The return of the original files at closing is simply unnecessary.
1. it's work incorrect on hollywood poker , on tower poker work correct .
2. type white letters on white background , i tested first on holly and there background dark in client. ( not modified)
3. i understand what script to do , but i don't like that script download original files at startup , because i havent unlimited internet .
Ongame , some not professionally made ported mods Quote
10-28-2007 , 05:39 AM
Ok I took a looked at it and downloaded Hollywood and yes they are using different files really.

1. I don't know because their minibutton file bigger then the others normal so I think you shouldn't mod this, but use the original
2. yep they really use black bkgrnd so start a a paint sw and paint the box dark
3. This I don't understand the script don't download anything it archives your original files and put them back at the start so the client sees them as normal and download nothing
Did you tried the modified script I posted above?
Thad should work but you should modify it accordingly.
Ongame , some not professionally made ported mods Quote
10-28-2007 , 06:21 AM
Quote:

3. i understand what script to do , but i don't like that script download original files at startup , because i havent unlimited internet .
First of all the script is wirten by me - not roland and the script copys the original files to the graphics folder before the client gets lunched (look at one of the first lines...), therefore the original files shouldnt be downloaded on every startup, but perhaps your backup is outdated?

Try the newest version of the script. It automaticly makes sure your backuped files stay up-to-date and that all files are in the right folder. You can find it at Overcards.
Ongame , some not professionally made ported mods Quote
10-29-2007 , 04:23 PM
chris,could you make it support mansion please?
Ongame , some not professionally made ported mods Quote
10-30-2007 , 03:05 PM
Version with Mansion support is uploaded.
Ongame , some not professionally made ported mods Quote
11-02-2007 , 12:30 PM
I want to change the collor of the box where player names are.
But I can not find that one in any tga or bmp file. What shoud I edit to change it?
;] found it : Game-Plate.tga
Ongame , some not professionally made ported mods Quote
11-03-2007 , 03:10 AM
I'm having trouble getting either of the scripts to work correctly. I downloaded/installed AHK. I've tried manually adding 'originals' (w/copies of orig. table and card files) and 'mod' (w/modded files). Am I missing something?
Ongame , some not professionally made ported mods Quote
11-03-2007 , 11:23 AM
Quote:
Version with Mansion support is uploaded.
omg! is there already?
it works perfect!
thanks chris..
Ongame , some not professionally made ported mods Quote
11-05-2007 , 09:30 AM
Quote:
I'm having trouble getting either of the scripts to work correctly. I downloaded/installed AHK. I've tried manually adding 'originals' (w/copies of orig. table and card files) and 'mod' (w/modded files). Am I missing something?
Bump, anyone?
Ongame , some not professionally made ported mods Quote
11-05-2007 , 10:08 AM
Which skin you play on?
Ongame , some not professionally made ported mods Quote
11-11-2007 , 07:45 AM
minitable layouts(for example:grey) doesnt work on minitables
Ongame , some not professionally made ported mods Quote
11-11-2007 , 07:49 AM
hi, the minitable-layouts dont work for minitables. only dealer button and cardmods are working(i have copied one minitable.bmp):

http://img164.imageshack.us/img164/6...nitablehc0.jpg
Ongame , some not professionally made ported mods Quote
11-13-2007 , 12:28 PM
their work, you should change its name (delete colour)

rgrds kabo
Ongame , some not professionally made ported mods Quote
11-13-2007 , 07:00 PM
Quote:
Which skin you play on?
I play on Hollywood.
Ongame , some not professionally made ported mods Quote
11-14-2007 , 05:50 AM
On Page 6 theres a script you have to modify that in 2 places:
1. path=C:\Program Files\TowerGaming\StartPoker.exe
2. WinGet, id, id, HollywoodPoker.com - Welcome (if it is not this same now)

And after that you should create the "mod" and the "originals" folder and put the modded files into the "mod" folder.

Create a Shortcut for this script on the Desktop ,modify its icon to one of Hollywood's.

And thats all it should work this way.
Ongame , some not professionally made ported mods Quote
01-07-2008 , 08:35 AM
Thanks for the nice mods for ongame guys! The only improvement I would like is to make the empty seats and the players who are sitting out stand out more. I play 12 tables at a time so sometimes its hard for me to notice that 3 seats are empty and I should be blinding out because the background is just solid black like my table.
Ongame , some not professionally made ported mods Quote
01-10-2008 , 08:09 AM
wow i dont get any of this i play on towergaming... is it possible that somebody just uploads his graphics folder, or the whole thing with the scripts etc... or that somebody writes a step-by-step thing I really need a good layout and card mod for miniview play

AND: does anybody know if these cards/ this whole layout is available for ongame?

Ongame , some not professionally made ported mods Quote
01-10-2008 , 09:29 PM
nobody?
Ongame , some not professionally made ported mods Quote
01-12-2008 , 09:48 AM
ok i need to bump this, sorry... it just doesnt seem to work for me. i downloaded the cardmod and tablemod files from Szs, I created a mod-folder under /graphics and copied the files that i need in there. Then i dl'ed the ongamemodstarter and followed the instructions. now when towergaming starts, nothing has changed
Ongame , some not professionally made ported mods Quote
01-13-2008 , 08:06 PM
I have moved one of the cards files as well as a table background and a table background menu to the mod folder, but only the cards are showing. How do I get the tables to work, is it by changing the file name or something?

The files in the graphics folder, can I delete any of these to get the Eurobet logos away from the tables, or does this happen automatically when I get the table to work properly (the problem above)?
Ongame , some not professionally made ported mods Quote

      
m