PDA

View Full Version : Major Additions - The Gameroom - Multiplayer gaming (follow up to Casino)


Pages : 1 2 [3]

Digital Jedi
08-24-2009, 02:06 AM
Try disabling the banner plugins, those are the only things that can effect every page. That said, nothing touches either that file or that function anywhere in my code, so I'm guessing... I suspect you have another plugin or modification that is not playing nice with mine.
Hopefully, nobody will be on tonight so I can test that.

Aren't you're admin tools outside the ACP? When enabled I can't get to any part of the forum.

tandy
08-24-2009, 08:02 AM
Thank you very much for this update and for all your work.

imported_silkroad
08-24-2009, 08:49 AM
Hi Andrew,

Thanks for this release and for being so responsive to the community. I think I will purchase the commercial version as well, just for the chess rankings :-)

I have made quite a few mods to the the vb.org (free) version, including (1) removing time limits for chess game (game start and play timouts), (2) adding long algebraic chess notation, and (3) showing inactive games in the board display.

Question: What Chess notation are you using? Do you mind to toss up a screen shot?

Thanks!

PS: I was considering an option to use either long notation or short notation. Also, I am going to log these moves into the database and make it so when someone rejoins the game , the log of prior moves is displayed in the game chat.

inciarco
08-24-2009, 12:39 PM
After Uploading the Files and Updating and Overwriting the Product, when trying to access the "gameroom.php" File appears an Error Message: :( :confused:

"RSL Error 1 of 1"

"Error #2032"

Previous Version Works Fine but this New One don't.

I Hope this can be Fixed.

My Best Regards.

:)

inciarco
08-24-2009, 12:52 PM
I Overwrited the "gameroom.swf" File of the Previous Version (the one of August 11th), and it Loaded the Gameroom, so the Problem is with that Particular File. :confused:

I Hope You Can Fix It, I noticed that the New File has 516 KB and the Previous One had 793 KB (the one that works fine), so something is missing in the New File or is Not Linking Well with some Change in the Latest Update. :confused:

I'm Using it with vB373 PL1.

My Best Regards.

:)

macc
08-24-2009, 01:01 PM
After Uploading the Files and Updating and Overwriting the Product, when trying to access the "gameroom.php" File appears an Error Message: :( :confused:

"RSL Error 1 of 1"

"Error #2032"

Previous Version Works Fine but this New One don't.

I Hope this can be Fixed.

My Best Regards.

:)

I think that you must upload files from framework.zip in your forum root and your gameroom should work fine!

regards
macc

imported_silkroad
08-24-2009, 04:08 PM
..... I am going to log these moves into the database and make it so when someone rejoins the game , the log of prior moves is displayed in the game chat.

The first half was easy, just added a new db field move to table gameroom_board_game_log and added the move to the log update dB query.

The next part is a lot more tricky :confused: I think, off hand, the best approach is to create a new type sysMsg function that writes the moves to the chat window on demand. "On demand" means that the system will look at the chat messages in the gameroom, and if the chat "GETMOVES" (or something like that) when that will be interpreted as a command and it will read the moves out of the dB and then post then to the game chat area.

Maybe even an optional number of moves, like GETMOVES 10 (that defaults to ALL when an optional number argument is not present).

The more I think about it, I think adding a simple chat-system-command interpreter is maybe the best way to go...... :D

Andrew Green
08-24-2009, 04:19 PM
After Uploading the Files and Updating and Overwriting the Product, when trying to access the "gameroom.php" File appears an Error Message: :( :confused:

"RSL Error 1 of 1"

"Error #2032"

Previous Version Works Fine but this New One don't.

I Hope this can be Fixed.

My Best Regards.

:)

You need those framework files, pulling those out is what reduced the file size, that way they are cached by flash player (and are used across many flash apps) so users only need to download them once, then never again.


The first half was easy, just added a new db field move to table gameroom_board_game_log and added the move to the log update dB query.

The next part is a lot more tricky :confused: I think, off hand, the best approach is to create a new type sysMsg function that writes the moves to the chat window on demand. "On demand" means that the system will look at the chat messages in the gameroom, and if the chat "GETMOVES" (or something like that) when that will be interpreted as a command and it will read the moves out of the dB and then post then to the game chat area.

Maybe even an optional number of moves, like GETMOVES 10 (that defaults to ALL when an optional number argument is not present).

The more I think about it, I think adding a simple chat-system-command interpreter is maybe the best way to go...... :D

Right now they are storred in the chat logs, as userID '-1', which is what is used to filter them out when they are turned off. Match chatid and pull all entries by userid -1 and you should have what you are looking for. Right now it automatically pulls all messages from the last 2 minutes when you enter a room, if you modify that to also pull any that have a userid of -1 you should get what you want.

As for the notation, it is expanded to make sense to people that don't know chess notation. You get the letters / numbers on the screen and messages like "Rook a4-b4"

imported_silkroad
08-24-2009, 04:45 PM
Right now they are storred in the chat logs, as userID '-1', which is what is used to filter them out when they are turned off. Match chatid and pull all entries by userid -1 and you should have what you are looking for. Right now it automatically pulls all messages from the last 2 minutes when you enter a room, if you modify that to also pull any that have a userid of -1 you should get what you want.

As for the notation, it is expanded to make sense to people that don't know chess notation. You get the letters / numbers on the screen and messages like "Rook a4-b4"

Whoo.... perfect. Thanks!

Great, that means I can purchase your commercial version (demand more support, :D LOL) and rebuild my mods in class_boardgame.php that displays the inactive games (finished games) in the boardroom view, and with a little more work, a user could easily pull up an old game and review the moves, if they wanted too... Great!

Also, since you log the board positions as well, it is not much work to add a REPLAY command and a STEP or NEXT command via a chat-interpreter :-)

I think a simple chat-interpreter can add a lot of value :-)

Cheers and thanks again for the last update. I will try it soon, when I am "in the mood" to recode the necessary mods into the new version. I am a very bad PHP programmer, so I don't know how to make vB hooks.... :D

imported_silkroad
08-24-2009, 04:54 PM
Hey Andrew,

I just noticed there is no user ID in the chatlog and the logs seem to be aggressively pruned. So, I am not sure that the chatlog is the ideal place for a "moves" database. I agree that the chatlog needs to be pruned, so I think it might be best to log the moves in the game_board_game table along with their cvs buddies :D

The alternative to not prune the chatlog and fix the bug/issue with no userID being correctly logged in the chatlog dB seems to make the alternative of simply using the board_game_log more attractive and efficient.

Screenshot ....

Andrew Green
08-24-2009, 04:55 PM
As you have figured out, all board positions are logged. This served too purposes, tracking draw conditions and giving me the ability to add the ability to replay games later on.

From what you are saying I don't think you are going to have a ideal result. If games stay in hte list after ending you are very quickly going to end up with a very large list that will be hard to navigate, not to mention it only allows users who played a game to reenter a game that has started, so most of the list would be useless to most people.

imported_silkroad
08-24-2009, 05:55 PM
Well, we currently don't have anyone playing board games, except our "debug games" so, if the list becomes large, then that is a different problem. I can expire them over time, etc.

Our users would like to see the results of finished games. It is pointless to play a game and then have it disappear "forever"... what happens if a forum member was watching the game and then had to do something, then he comes back, and nothing! That is really a terrible setup. There is no way we will implement the current "games disappear forever" setup, ROTFL.

We like our users at our forums :-)

inciarco
08-25-2009, 03:14 AM
I think that you must upload files from framework.zip in your forum root and your gameroom should work fine!

regards
macc

Thank You Very Much macc for your Help. I Uploaded the Files on that Zip File on the Root of the Forum Directory and now the gameroom.swf File is working Fine.

My Best Regards.

:)

cad2go
08-25-2009, 08:11 PM
Auto deal in poker please.

Overall it's very buggy. Come have a game sometime:D

It's laughable. Doesn't payout on hands, skips peoples calls, the works.

pm for url (full version)

Flex Error #1001: Digest mismatch with RSL http://www.xxxxxx.com/forum/framework_3.3.0.4852.swf. Redeploy the matching RSL or relink your application with the matching library

tourney feedback
1. if you win a hand it doesnt always give you the pot
2. if someone leaves the dealer button might completely dissapear

People were calling 10x pre flop raises with A2. Need to get that fixed.

When xxx left, who was after me, I had to check after everybody else's turn.

Good feedback people. That no dealer thing is annoying as fxxk. Also xx went all in versus me and I was still asked if I wanted to raise and was able to too.

When I went all in it was still asking me to check or fold on every street.


i was seeing the flop before i betted

Jesus it is bug ridden.

cad2go
08-25-2009, 08:34 PM
no dealer button ffs!

By the way I was last to leave the room.... I left the table and then joined again and the dealer button "appeared"..... if thats any help???

:D

Andrew Green
08-26-2009, 03:06 AM
Auto deal in poker please.

Overall it's very buggy. Come have a game sometime:D

It's laughable. Doesn't payout on hands, skips peoples calls, the works.



Well, I've played hundreds of hands in testing, and never had it skip a player or fail to payout. If you can provide more specific information on the state of the game when this occurred, preferably with a screenshot and a description of what happened and what should have happened I will have a much easier time verifying the error, and fixing it.


Flex Error #1001: Digest mismatch with RSL http://www.xxxxxx.com/forum/framework_3.3.0.4852.swf. Redeploy the matching RSL or relink your application with the matching library


Gotta follow the instructions and put those framework files up. Without them, you get that error.

As for this:
if someone leaves the dealer button might completely dissapear

If the dealer leaves it goes to the next person.


By the way I was last to leave the room.... I left the table and then joined again and the dealer button "appeared"

Which it should, you can't deal, but if you are the only one there you are the dealer.

cad2go
08-26-2009, 08:51 AM
Well, I've played hundreds of hands in testing, and never had it skip a player or fail to payout. If you can provide more specific information on the state of the game when this occurred, preferably with a screenshot and a description of what happened and what should have happened I will have a much easier time verifying the error, and fixing it.



Gotta follow the instructions and put those framework files up. Without them, you get that error.

As for this:


If the dealer leaves it goes to the next person.




Which it should, you can't deal, but if you are the only one there you are the dealer.

We all left because the deal button disappeared. There were 5 at the table when it happened. It only reappeared when 4 of us left.:D

Anyway I'll do the bug reports over at vbgaming in future. Have you ever tried a 6+ player game of poker there btw? why not arrange one sometime for proper testing if you don't believe my bug reports.

imported_silkroad
08-26-2009, 09:21 AM
We all left because the deal button disappeared. There were 5 at the table when it happened. It only reappeared when 4 of us left.:D


To help Andrew (since this is free and so we should make debugging easier for him), it would be helpful if you could post screenshots of when images disappear, etc.

When a developer is giving away free software, and then folks post bugs with information the developer cannot easily see, it slows down development progress for all concerned.

So, next time you see some bug, please take a quick screen capture or two and upload them.

Cheers.

cad2go
08-26-2009, 09:32 AM
To help Andrew (since this is free and so we should make debugging easier for him), it would be helpful if you could post screenshots of when images disappear, etc.

When a developer is giving away free software, and then folks post bugs with information the developer cannot easily see, it slows down development progress for all concerned.

So, next time you see some bug, please take a quick screen capture or two and upload them.

Cheers.

I'm testing the paid version hence why I mentioned I'd post over at vbgaming in future.

goxy63
08-27-2009, 12:45 AM
Users who are using hack "Chief First Post - Every Page [Forum Based]" (https://vborg.vbsupport.ru/showthread.php?t=194832&highlight=chief) will have problem to display cash in postbit/postbit legacy on some settings within mentioned mod
Is it posible to get this fixed?

Or even better and without messing with other mods.... just to display cash in user profile within mini statistisc block on bottom, for me that would be best as I already got lots of stuff within postbit...(how to do that?)

Great mod

Nominated, rated, installed

Cheers

leeman
08-28-2009, 12:36 PM
A little request in roulette...

A "Repeat bet" button .....

Since many play same numbers over and over again ...

Andrew Green
08-29-2009, 01:53 AM
We all left because the deal button disappeared. There were 5 at the table when it happened. It only reappeared when 4 of us left.:D

Anyway I'll do the bug reports over at vbgaming in future. Have you ever tried a 6+ player game of poker there btw? why not arrange one sometime for proper testing if you don't believe my bug reports.


I believe your report, but I've not been able to reproduce the problem so I am looking for clues as too what happened in your game that hasn't happened in any of mine ;)

imported_silkroad
08-29-2009, 03:44 PM
Andrew!

Why can't other users observe a Chess game between two players??

We have a Chess game on our site between two other players, but no one else can observe!!!!

(this is getting annoying!!)

cad2go
08-29-2009, 04:07 PM
I believe your report, but I've not been able to reproduce the problem so I am looking for clues as too what happened in your game that hasn't happened in any of mine ;)

Next big game we have I'm going to take screenshots every 30 secs or so or maybe make a movie.

I'll report over on vbgaming:up:

cad2go
08-29-2009, 04:08 PM
Andrew!

Why can't other users observe a Chess game between two players??

We have a Chess game on our site between two other players, but no one else can observe!!!!

(this is getting annoying!!)

screenshots please:D:p

imported_silkroad
08-29-2009, 04:15 PM
screenshots please:D:p

This is a basic feature. You don't need a screen shot to answer this question.

Get a life, cad2go !

cad2go
08-29-2009, 04:33 PM
This is a basic feature. You don't need a screen shot to answer this question.

Get a life, cad2go !

Should be a paid feature imo. Oh and screenshots of the life you'd like me to get please!:D

imported_silkroad
08-29-2009, 04:47 PM
Reserved for more user comments from our installation test and eval ....

imported_silkroad
08-30-2009, 08:45 AM
Hey Andrew,

Here is some feedback from our users of the Chess game (the only part we use at our forums):

There doesn't seem to be an efficient way to know if it is your move. You have to go all the way and load the game in order to find out. if you could shortcut the game or even the game list it would help, but it seems to be one big php/flash program with no way to link to a separate game.

Something is broken because we cannot see other games. Maybe the "paid version" is better?

It seems we should not move forward this chess program because there seems no way to watch others play or even look at their end position. Lame.

Andrew, are these issues fixed in the paid version?

imported_silkroad
08-31-2009, 07:12 AM
Based on the test results and comments on the the Chess feature of The Gameroom, we plan to uninstall this add-on feature next weekend.

We will keep an eye out for the next releases of Chess add-ons for vBulletin and hopefully, a future release will be more playable for our users. We don't mind to pay for an enjoyable, really playable add-on, but even the paid version is not "enjoyable and playable" because it simply does not have the basic features required for forum users who are professionals and also want to play Chess with other forum members when time permits.

I worked extensively with this add-on, going thru just about every line of the PHP code for the game board and chess games (we are not interested in the other games). Even after fixing so many broken features, our users commented:

(1) The flash interface for Chess was "clunky" and did not let them return directly to a game in progress. It took far too long to re-enter a game (I changed the code so this was possible because without hacking the code, it was not even possible to return to a game!!)

(2) The game is not fun or interesting because others, not even admins, can observe anothers game. Not even Admins!

(3) We had to hack the Chess board mod extensively just so users could actually leave the gameroom and do something else without the computer deleting the game!

(4) The PHP code base is an absolute mess. There are database fields and PHP var conflicts that are very hard to debug. I don't think I have ever seen such disorganized and unstructured PHP code on any vB mod.

As mentioned, we look forward to a future release that is more playable. The developer's comments back to me and our users to is basically to (1) discount the opinions of our users and (2) make an excuse that the Chess program is only one of many programs. (I am not sure how that is relevant to anything, because none of the programs are very good either, and our users are professionals and are only interested in Chess, not low resolution gambling, slots, poker, etc - plus we honor all Terms of Service (TOS) and gambling sites of any form violate Google's TOS).

In closing, it is sad that there is still no decent "really enjoyable" (playable) Chess add-on for vBulletin. We hope a future release is "playable" by professionals, not merely a type of toy that is more of a novelty (direct user comments), than a useful add-on to a forum.

rungok
09-01-2009, 08:36 PM
I'm getting this error sometimes. Tried to uninstall and install again without any effect:
Database error in vBulletin 3.8.0:

Invalid SQL:

SELECT languageid,
phrasegroup_global AS phrasegroup_global,
phrasegroup_casino AS phrasegroup_casino,
options AS lang_options,
languagecode AS lang_code,
charset AS lang_charset,
locale AS lang_locale,
imagesoverride AS lang_imagesoverride,
dateoverride AS lang_dateoverride,
timeoverride AS lang_timeoverride,
registereddateoverride AS lang_registereddateoverride,
calformat1override AS lang_calformat1override,
calformat2override AS lang_calformat2override,
logdateoverride AS lang_logdateoverride,
decimalsep AS lang_decimalsep,
thousandsep AS lang_thousandsep
FROM vb_language
WHERE languageid = 2;

MySQL Error : Unknown column 'phrasegroup_casino' in 'field list'
Error Number : 1054
Request Date : Tuesday, September 1st 2009 @ 11:23:38 PM
Error Date : Tuesday, September 1st 2009 @ 11:23:38 PM
Script : http://www.nettkafeen.no/forums/casino.php
Referrer :
IP Address : 195.113.214.202
Username :
Classname : vB_Database
MySQL Version :

Anyone know why?

Goatpod
09-02-2009, 08:35 PM
Installed Gameroom last night - excellent mod, thank you very much! :)

Unfortunately, when Gameroom is enabled it stops VBClassified from working for everyone but Administrators. Disable Gameroom and VBClassified works fine. Anyone any ideas as to what could be causing this? Thanks.

EDIT: Problem solved, just me being a complete moron....

Videx
09-03-2009, 09:22 PM
Problem solved, just me being a complete moron....That really won't help anyone in the future. You should let us know what caused it and how you fixed it.

Goatpod
09-03-2009, 09:39 PM
That really won't help anyone in the future. You should let us know what caused it and how you fixed it.

It was down to vBa CMPS permissions set on vbClassified: only admin could access vbClassified. Any other registered user couldn't. When I tried to access it with the last mod (Gamesroom) disabled I accessed it successfuly but only because I'd forgotten to log out as an administrator: hence me being a moron and it really having nothing to do with a great trouble free (for me so far) addition to the forum. :)

DeviantFlash
09-04-2009, 01:11 AM
Just a quick question. And sorry if it has been answered before.

I am still using the settings file from one of the earlier versions.

I installed the newest version tonight.

Are there any changes in the settings file that would neccesitate the upgrading of the settings file?

swiftor
09-07-2009, 03:59 PM
How much of a strain is this on a shared hosting package like on Hostgator? Any thoughts?

Trek
09-07-2009, 08:24 PM
How much of a strain is this on a shared hosting package like on Hostgator? Any thoughts?

I'm hosted there and haven't had any complaints.

princeedward
09-08-2009, 05:25 PM
thanks for this...is it normal or nothing to hear on solo games.... on anything like rollete rolling or slot machine....hmmm...

MentaL
09-08-2009, 07:33 PM
Ive got this installed on my forums (http://forum.ragezone.com) but earlier we had a game with a 7k pot, the winner only recieved 1.5k or so and the rest got sent back to the players... any reason?

stusgarage
09-11-2009, 04:41 PM
similar problem but a little different.

I have just installed it on my board...and get this when trying to start a bet...

http://img6.imageshack.us/img6/5452/bettingscreenshot.png (http://img6.imageshack.us/i/bettingscreenshot.png/)




where is the rest of it?

Austone
09-11-2009, 11:22 PM
I mean the option from the casino mod for people to reset their own cash

I'll cast another vote for this option.

princeedward
09-12-2009, 05:32 AM
thanks for this...is it normal or nothing to hear on solo games.... on anything like rollete rolling or slot machine....hmmm...BUMP!

starman?
09-12-2009, 12:19 PM
Great Mod - thanks. I was wondering will there be any Vbadvanced modules available in the near future? It's just that I think the banner is a little over-powering and with everything else I've got at the top of the board it's beginning to look a little cluttered.

zombietom
09-12-2009, 06:22 PM
I'm still not sure if i want to install this..it looks good but seems some people are saying it is pretty buggy....please give some more reviews

thanks

Digital Jedi
09-12-2009, 10:09 PM
I'm still not sure if i want to install this..it looks good but seems some people are saying it is pretty buggy....please give some more reviews

thanks
I don't think there have been that many reports of bugs. Mostly people have been requesting functions it doesn't have. I have a mod conflict with something, but other than that, it seems to be working for most people.

segwayon
09-13-2009, 03:53 AM
Should there be sound in the games, such as Roulette or slots?

Andrew Green
09-13-2009, 06:10 PM
Just a quick question. And sorry if it has been answered before.

I am still using the settings file from one of the earlier versions.

I installed the newest version tonight.

Are there any changes in the settings file that would neccesitate the upgrading of the settings file?

If you make changes to the settings within the settings tab they are storred in the DB, overwritting the settings file won't overwrite your settings. That said, yes, it has undergone a few updates and will see more.

similar problem but a little different.

I have just installed it on my board...and get this when trying to start a bet...

where is the rest of it?

What are you missing, everything looks fine?

Should there be sound in the games, such as Roulette or slots?

No, sound is intentionally very limited. Notifications that it is your turn, warning that you are turn is going to time out, messages, people entering the room, etc.

wragge11
09-13-2009, 09:02 PM
Hi andrew, great mod just one problem.

I used vBCredits, and users don't seem to win any money? They win on poker, or blackjack, it takes the money from their account but it doesn't put the winnings in there.

How do I fix this? is it a bug?

wragge11
09-14-2009, 09:11 PM
Anyone?

MrPonx
09-16-2009, 08:20 PM
How can I change the timezone?

it says CDT

segwayon
09-17-2009, 12:22 AM
How can I change the timezone?

it says CDT

Curious where the time zone shows. . .

Division
09-17-2009, 01:50 AM
great hack. Has my vote. I wonder if uno could be added. Ill donate big for it.

DaMani
09-18-2009, 11:04 AM
Hi, how can i bet in the game?

segwayon
09-18-2009, 01:28 PM
Hi, how can i bet in the game?

I believe that if you see an open event you would just select the option result you wish to bid on, and a popup window will appear asking for your bet amount.

Are you asking how to create a new betting event?

DaMani
09-18-2009, 01:29 PM
No, i mean: If i create a new Multiplayergame with friends (example: Poker) we cant bet and the game dont start.. do you know what i mean?

Sry 4 my english!

segwayon
09-20-2009, 03:32 AM
No, i mean: If i create a new Multiplayergame with friends (example: Poker) we cant bet and the game dont start.. do you know what i mean?

Sry 4 my english!

Wish I could assist you, DaMani, but I haven't tried the multiplayer games yet.

MrPonx
09-21-2009, 11:33 PM
Curious where the time zone shows. . .

Betting

Se?or Ramos
09-22-2009, 07:18 PM
Is there some sort of deal we can arrange so I can just get what I need for No Limit Hold 'Em? Maybe I can give you $10 or something. I just don't see a value in spending $45 just for one feature. There's really nothing else that my community wants improved, so I'm just seeing what you're willing to do.

ChandlerDog
09-24-2009, 01:11 AM
Great mod! Thank You!

Can this be conneted with kbank?
Not even heard of that one. If it is another cash system, and it stores it's cash in a field in the user table then it should work.
https://vborg.vbsupport.ru/showthread.php?t=210236&highlight=kbank

Can someone explain how I can make GameRoom work with kBank?

ProFifaLeagues
09-24-2009, 05:36 AM
ive installed this mod and all is working fine apart from there is no settings showing up for it in the admin cp any ideas??

Geeps
09-27-2009, 01:47 PM
"Upload the framework files, they should go into the main forum folder with the .swf files folder"

I'm missing something. Which file folder do these go into?

TheChaosFactor
09-27-2009, 02:02 PM
"Upload the framework files, they should go into the main forum folder with the .swf files folder"

I'm missing something. Which file folder do these go into?

You would apply yours to the same folder that you used for installing vb....

At least that's how I did mine. :cool:

Manic Mechanic
09-27-2009, 05:25 PM
ive installed this mod and all is working fine apart from there is no settings showing up for it in the admin cp any ideas??

Go to the Gameroom Lobby, there is an Admin tab at the top right. This is where you make adjustments or changes.

Chase
09-28-2009, 03:40 PM
While using this mod has anyone experienced a strain on the (shared) server? Slowness, etc.

ProFifaLeagues
09-29-2009, 09:26 AM
Go to the Gameroom Lobby, there is an Admin tab at the top right. This is where you make adjustments or changes.
yes i saw that on the first time i ran it but i cant see it now!
would i need to reinstall it to gain assces again?

realdx
09-29-2009, 12:50 PM
Anyone integrated this with Vbexperience? So that users can bet their points? thanks!!

odonel
09-29-2009, 01:00 PM
any requirements to run this thing... users are getting RSL Error 1 of 1, Error #2032. It works fine in one computer for me. Could this be a flash version error ?

steveman0018
09-30-2009, 09:27 PM
i really like this mod but i cant get it to work.. I installed it and everything worked fine, now after refreshing the page, nothing shows up. none of the games start, i dont get it.. This is a fresh install with both framework files uploaded in my vbulletin directory

Se?or Ramos
10-01-2009, 04:57 PM
i really like this mod but i cant get it to work.. I installed it and everything worked fine, now after refreshing the page, nothing shows up. none of the games start, i dont get it.. This is a fresh install with both framework files uploaded in my vbulletin directory

Did you upload and run the "makemeadmin.php" file in the "do not upload" folder?

TheInsaneManiac
10-01-2009, 08:46 PM
What if I want to play slots with another player, do I have to install casino for that, or are all the single player games that are on casino, single as well?

papabear99
10-01-2009, 10:52 PM
I have all installed properly but it keeps losing me as admin since it has no option to "Save Settings" after I make the appropriate UserGroup Changes in the Settings Tab...

Any Help?

TheInsaneManiac
10-01-2009, 10:57 PM
I have all installed properly but it keeps losing me as admin since it has no option to "Save Settings" after I make the appropriate UserGroup Changes in the Settings Tab...

Any Help?
That's UserID settings not Usergroup. It saves automatically.

papabear99
10-01-2009, 11:24 PM
That's UserID settings not Usergroup. It saves automatically.

My misunderstanding but then that perplexes me a bit more since I am UserID 1 and after initial install I lose any access to Admin unless I run makeadmin

TheInsaneManiac
10-02-2009, 12:49 AM
My misunderstanding but then that perplexes me a bit more since I am UserID 1 and after initial install I lose any access to Admin unless I run makeadmin
Just leave it at 1 and add the other users. 1,5,23,457 ect.

papabear99
10-02-2009, 11:37 AM
Just leave it at 1 and add the other users. 1,5,23,457 ect.

TKS for the answer

AdamFL
10-07-2009, 02:25 AM
any requirements to run this thing... users are getting RSL Error 1 of 1, Error #2032. It works fine in one computer for me. Could this be a flash version error ?

I'm having the same issue, any thoughts?

Never mind, I didn't notice the Framework files. Once uploaded everything is fine now :) I will try it out and considering the upgrade.

Thanks

TheChaosFactor
10-08-2009, 02:16 PM
Would it be at all possible to make it so users get cash for clicking ads? I don't know about others, but this would help my site's revenue quite a bit.

Videx
10-08-2009, 03:14 PM
Would it be at all possible to make it so users get cash for clicking ads? I don't know about others, but this would help my site's revenue quite a bit.That's felony click fraud (http://en.wikipedia.org/wiki/Click_fraud). I don't know which ads you're talking about, but most forbid you to encourage clicks at all. You're not even allowed to suggest to users that they click on an ad, much less encourage them to do so. Read the TOS (https://www.google.com/adsense/support/bin/answer.py?hl=en&answer=48182).

midirtrider
10-09-2009, 02:51 AM
Seen this on another forum and HAD to have it for my own..
absolutly awsome..
thanks man!!!

TheChaosFactor
10-09-2009, 05:52 AM
That's felony click fraud (http://en.wikipedia.org/wiki/Click_fraud). I don't know which ads you're talking about, but most forbid you to encourage clicks at all. You're not even allowed to suggest to users that they click on an ad, much less encourage them to do so. Read the TOS (https://www.google.com/adsense/support/bin/answer.py?hl=en&answer=48182).

Oh... My bad...:erm:

midirtrider
10-09-2009, 09:34 PM
having an issue uploading the framwork.swz file???

my file uploader doesnt recognize the swz file tag..

any options?

Videx
10-09-2009, 10:15 PM
having an issue uploading the framwork.swz file???

my file uploader doesnt recognize the swz file tag..

any options?I suppose you could always just rename it to framwork.jpg, then rename it back after it's uploaded. Might be easier than fixing your FTP client, which you forgot to mention anyway.

midirtrider
10-09-2009, 10:49 PM
I suppose you could always just rename it to framwork.jpg, then rename it back after it's uploaded. Might be easier than fixing your FTP client, which you forgot to mention anyway.


tried that.. didnt work..
Im not using an FTP.. Im just going through my file manager (I use Ipowerweb.com.. they have a decent file manager that you can load files and such directly)

but for some reason it doesnt recognize the swz file..

so I changed it to a php and it loaded.. but now it wont let me edit it (isnt able to read the file)

no biggy I guess.. I'll just have to wait untill I get home on my PC and use my ftp to do it..

zombietom
10-10-2009, 03:33 PM
Just a quick question -- What is the "transfer cash" button for?

Update: installed and working well on 3.7 , no problems as of yet.
would like to see a few more games added like : Checkers,uno,Goldfish,old maid,darts,pool...

thanks
just installed and seem to work fine

Chase
10-13-2009, 10:14 PM
Great mod... have this installed on my forums.

Couple questions regarding betting. Is there a way to let users know how much they have won once the event was settled? I would of thought it'd show up under the "Winnings" column but nothing came up?

There was 16,500 on this winning event and I placed 500 credits... but my winnings column is empty... but IIRC I saw my total credit amount go up when I left the gameroom.

In other words...

Outcome A had 2600 total bet.
Outcome B had 16500 total bet.

Outcome B won so if my math is correct, 579 should be in my "Winnings" column?

500/16500*19100=579

Right? So how come nothing shows up?

big dan
10-13-2009, 11:20 PM
Hi Andrew,

Thank you for the excellent mod. I just installed it and did a conversion from the Casino script. I'm receiving an error when I manually run the cron job via scheduled tasks.

Fatal error: Call to a member function query_read() on a non-object in /home/xxxxxx/public_html/gameroom/class_settings.php on line 55
The only reason I'm trying to run it manually is because I created a test account to make sure the referral credit is working. I suspect if it won't run manually it will also fail when running automated. Any thoughts as to why?

Thank you in advance,
Dan

Switch3130
10-14-2009, 04:05 AM
I installed the casino hack, but the poker was way too slow. Has the speed improved in this version?

rootsxrocks
10-17-2009, 01:27 PM
Help, My bookie added a group that is too long and now the money line and submit buttons are off the screen. I have no Idea How to edit them or were to find the phpadmin.

chicken604
10-17-2009, 05:14 PM
My gameroom doesn't show everything, how do I fix this?

http://img70.imageshack.us/i/offthescreen.png/

SolidSlug
10-19-2009, 09:15 PM
This is a great mod, but the graphics assets could be vastly improved. Those icons are low-res, and it's hard to make it blend with the rest of my forums.

chicken604
10-20-2009, 12:39 AM
I just wanted to update information regarding my issue.

http://img70.imageshack.us/i/offthescreen.png/

On my laptop 17" I can see the Gameroom perfectly. But when I'm on my desktop 20" It appears exactly like the screenshot I posted above.

TheChaosFactor
10-21-2009, 11:04 AM
I just wanted to update information regarding my issue.

http://img70.imageshack.us/i/offthescreen.png/

On my laptop 17" I can see the Gameroom perfectly. But when I'm on my desktop 20" It appears exactly like the screenshot I posted above.
I have the same issue and so do many of my members. I have no problem at home, but at work it is an issue. I've found that if you hold control and scroll the mousewheel up, it will adjust appropriately, but they really should fix this since that makes it impossible to fit the entire graphic on the screen and requires scrolling.

rootsxrocks
10-25-2009, 07:47 PM
Help Andrew,

I have a size problem as well as noted on vbgaming http://i108.photobucket.com/albums/n13/ROOTSXROCKS/9d471c18.jpg


I also had complaints about the slow speed of Poker and the low resolution graphics.
the primary reason I chose to install this was because of the betting.
However I feel the transaction documentation and stats are not adequate. I need to be able to see what each better placed and what the payouts are.
Recognition is the greatest motivator

yesfans
10-30-2009, 12:16 AM
I have casino on my site, www.yesfans.com. Do I have to uninstall CASINO or does this UPGRADE from casino? Is this a better gaming system?

Bouncer222
10-30-2009, 12:37 AM
Hey i found where it says this in the instructions:

*****************************************
** Integrating with other cash systems **
*****************************************

Integrating with other cash systems

This is fairly simple to do, you just need to change the cash type field in the settings.

* VB Plaza - Change to "vbbux"
* iCash - Change to "Money"
* VB Credits - Change to "Credits"

What If I am using the ibProArcade, which is Found HERE (https://vborg.vbsupport.ru/showthread.php?t=101554) what do i change the gameroom_cash to?

rootsxrocks
10-30-2009, 12:46 AM
Hey i found where it says this in the instructions:

*****************************************
** Integrating with other cash systems **
*****************************************

Integrating with other cash systems



What If I am using the ibProArcade, which is Found HERE (https://vborg.vbsupport.ru/showthread.php?t=101554) what do i change the gameroom_cash to?
use the plug in to switch Ibproarcade to Vbcredits it will work on all three.

Bouncer222
10-30-2009, 08:35 PM
And where can I find this plugin with instructions? Did a search , found nothing. And vbcredits is same thing as arcade except its just renamed? or what is the vbcredits for exactly?

Or, does IProArcade even use cash that is able to be integrated with the gameroom? Like are you able to convert the points or when playing, you earn cash, is this possible?

Kinda new here, more info would be helpful, thanks.

rootsxrocks
10-31-2009, 05:01 AM
<a href="https://vborg.vbsupport.ru/showthread.php?t=172399" target="_blank">https://vborg.vbsupport.ru/showthread.php?t=172399</a>

everything you need should be there and just type credits in gaming.

the add on for your Arcade you will have to look at the specific combination for your set up.

Bouncer222
10-31-2009, 05:17 AM
so does vbcredits also have an arcade where you can earn points and does it display high scores the same way? And then after display amount of cash each person has in forums?

Because if I change it to credits, won't it display it as credits, and not cash anymore?

Thanks.

the add on for your Arcade you will have to look at the specific combination for your set up.
What do you mean by that?

also I run 3.8.4 that is for 3.6 so it probably won't work anyway.

rootsxrocks
10-31-2009, 02:03 PM
There is a version for 3.7 and 3.8, and yes it displays the credits.
the arcade is a seperate package that can be set to use vbcredits, credits in itself is a stand alone system of money.

Bouncer222
10-31-2009, 04:17 PM
Ok so let me see if I got this straight, I install vbcredits, keep arcade installed and keep gameroom installed. Then I set gameroom money variable to "credits" or whatever the variable is that vbcredits uses and then the gameroom will use credits (which WILL show up as money with a $ sign in front of it right? in forums)

But yet still, how do I change the variable for the money to credits for the arcade so that arcade and gameroom can work together?

SocialNetworkBuzz
11-01-2009, 02:35 AM
Could you include Checkers please.

SBlueman
11-02-2009, 03:17 AM
I have a question....

I'd like to grant access to a group of "Bookies" to be able to post sporting events to bet on in the Gameroom. Is there a way to grant a usergroup access to do only that? I don't want them to have full admin access to the Gameroom, just the ability to post events.

tldagent
11-02-2009, 11:21 AM
Just an FYI. I've paid for the pro edition subscription but cannot download and have sent several PMs to Andrew with no response. Their forum is loaded with spam and it looks as though this has been abandoned. Saver you money and pass on this one as it's not being supported.

Update: Found the download link finally in an announcement that was among many porn spam announcements. You can find the announcement section here: http://vbgaming.org/forum/forumdisplay.php?f=2

The download with subscription is located here: http://vbgaming.org/forum/showthread.php?t=507

We tried the chess but certain bishop could not be moved by opponent. Seems buggy and graphics are less than desirable to look at. Would like to see this product upgraded to match current technology and aesthetics. The games, graphics and all else seem to be suitable for the Internet of the early 90's. Does anyone know of a good multiplayer chess game that is not dated?.. and integrates into vbulletin.

rootsxrocks
11-03-2009, 03:15 PM
Andrew has been missing since the 18th, We currently have a bet as to wither he is in jail, hospital or laid up with a nympho.

I hope he returns soon, I really don't think he has voluntarily abandoned his software.
but it is true some have taken advantage of his absence.

TheChaosFactor
11-03-2009, 04:37 PM
Ok so let me see if I got this straight, I install vbcredits, keep arcade installed and keep gameroom installed. Then I set gameroom money variable to "credits" or whatever the variable is that vbcredits uses and then the gameroom will use credits (which WILL show up as money with a $ sign in front of it right? in forums)

But yet still, how do I change the variable for the money to credits for the arcade so that arcade and gameroom can work together?

I'd like to know this too. Been trying to figure it out for a while...

Se?or Ramos
11-05-2009, 05:32 PM
I will give a shiny silver buffalo nickel to the kind person who helps me figure out how to allow other people to go into the chess lobby and chat with the 2 current players.

Trescom
11-14-2009, 06:36 PM
Hi, i think there is something wrong with sorting order.
Here is an example:
https://vborg.vbsupport.ru/external/2009/11/26.jpg

I've sorted columns by Profit, so it should be from the smallest number to the biggest one, yet it's not. Any idea?

DieselMinded
11-15-2009, 10:49 PM
Hey andrew check this out had a member who kept beating me

http://www.dieselbookmarks.com/bombers/win2.jpg

Charro
11-17-2009, 08:48 AM
Many of my users (but not all) get this error message:

RSL Error 1 of 1
and
Error # 2032

Robp57
11-18-2009, 05:54 PM
Is there any way to change bet amounts in texas holdem...??

theybannedme
11-18-2009, 08:21 PM
BUG ALERT:

Let It Ride is jammed. The hand is over and the only two options are "hold" and "raise." Nothing will reset the hand. I've tried refreshing, logging out than back in, logging in with an alt (game worked fine for alt but problem persisted when I logged back in with main ID).

I'd prefer not to reinstall the entire thing over this little bug but I can't figure out how to reset it.

betts02
11-24-2009, 11:23 AM
does this work on 3.8.3 ?

dont want to install if its not working

can someone let me know if its working ok with a new install and not changing anything

thanks in advance

SVTCobraLTD
11-24-2009, 12:27 PM
does this work on 3.8.3 ?

dont want to install if its not working

can someone let me know if its working ok with a new install and not changing anything

thanks in advance

Working on 3.8.4 for me.

TheChaosFactor
11-27-2009, 06:35 PM
BUG ALERT:

Let It Ride is jammed. The hand is over and the only two options are "hold" and "raise." Nothing will reset the hand. I've tried refreshing, logging out than back in, logging in with an alt (game worked fine for alt but problem persisted when I logged back in with main ID).

I'd prefer not to reinstall the entire thing over this little bug but I can't figure out how to reset it.


This has happened on my forum too, but only to one member. Good luck getting support. The developer has not been reachable for a couple of months, I believe.

TitanJeff
12-01-2009, 10:22 PM
Great mod... have this installed on my forums.

Couple questions regarding betting. Is there a way to let users know how much they have won once the event was settled? I would of thought it'd show up under the "Winnings" column but nothing came up?

There was 16,500 on this winning event and I placed 500 credits... but my winnings column is empty... but IIRC I saw my total credit amount go up when I left the gameroom.

In other words...

Outcome A had 2600 total bet.
Outcome B had 16500 total bet.

Outcome B won so if my math is correct, 579 should be in my "Winnings" column?

500/16500*19100=579

Right? So how come nothing shows up?
I'm having issues as well. I'd prefer that it be set to pay $1 for every $1 bet. Any way to set it up to do that?

Bluefin221
12-02-2009, 06:17 PM
Is this likely to be upgraded for vb 4.0?

vexvegaz
12-04-2009, 05:26 PM
is it possible to use reputation points as currency? if so how?

skylab
12-18-2009, 12:45 PM
Is this likely to be upgraded for vb 4.0?

Hope so since we paid for it as well.

TheChaosFactor
12-20-2009, 06:18 PM
Hope so since we paid for it as well.

Doubtful... have you been to the vbgaming forum lately? It's a wasteland last time I checked.

I've been trying to make it work with 4.0 and it works pretty well except for one problem...

The games all work fine from what I can tell, but the header is gone on the page and I get three errors, and I'm hoping somebody else is maybe interested enough in the game room/casino add on to have fixed it or to be interested in helping to fix it...

I also attached a screen shot...

rootsxrocks
12-22-2009, 03:02 AM
so, this is a screwed up obsticale to 4.0, even though I have the paid version I may have to uninstall it if it won't work. I would pay for a prettier and more sophisticated bookie and poker, and of course spades.

lets see OCT 18 was the last we heard from andrew, if he got 90 days it will be Jan before we see him again. If I had an Idea were he was I would try to find more info.
I just can't Imagine why he would walk away from so much work.

AlBDJ-Net
12-23-2009, 10:35 AM
hi thnx for this mod but i'm geting error
Error #2032
any sugestion

cory_booth
12-25-2009, 04:00 AM
I got GameRoom to work in VB4... Wary about explaining how unless someone gives me some guidance.

rootsxrocks
12-27-2009, 09:11 PM
Im not sure what has happened, Andrew was providing excellent support up till Oct 18th, Now Im kinda pissed, This leaves me with a foul taste for supporting developers, Not like 45.00 was a great deal of money, but to Abandon without a word is pretty crappy. I am concidering disputing my paypal charge.
I would strongly urge others to avoid the paid version until it's developer returns.
Either Andrew has been Hacked in his absence or he has compleatly abandoned gameroom. I see he(same name and avatar) has had activity since 10/19 on a couple of martial arts sites including his own as recent as Wed, 12/16/2009
http://www.innovativema.ca/ (http://www.innovativema.ca/)

bluenose
12-30-2009, 09:43 AM
installed it and was fine tryed to change teh cash field from gameroom_cash and now i see no text at all, also get error as it trys to add points when members post, any help and advice
cheers

R.J.

cad2go
01-09-2010, 10:31 AM
I got GameRoom to work in VB4... Wary about explaining how unless someone gives me some guidance.

What kind of guidance do you need? Post what you've done so far please:up:

Gamelobby
01-12-2010, 03:46 PM
INSTALL @ YOUR OWN RISK.. THERE IS NO SUPPORT HERE OR @ http://vbgaming.org (HAS BECOME A SPAMFEST)

*MARKED UNINSTALLED*

Digital Jedi
01-12-2010, 05:21 PM
INSTALL @ YOUR OWN RISK.
That's pretty much true of every modification on this site.

cad2go
01-12-2010, 07:14 PM
The exact same thing happened with the previous casino mod.

rootsxrocks
01-13-2010, 01:29 AM
INSTALL @ YOUR OWN RISK.. THERE IS NO SUPPORT HERE OR @ http://vbgaming.org (HAS BECOME A SPAMFEST)

*MARKED UNINSTALLED*
Why Invest in a domain and hosting just to abandon something That is in demand. Its really nonsensical.
I wondered if it was some sort of protest against the license changes on VB.

How many paid I wonder? all he needed was a little more polish for an upgraded version. It does work fine under 3.84.

I was understanding and sympathetic at first because Andrew had given very good support and responded to the forum, but it was like overnight he just disappeared as if he was hit by a bus one morning, but then I look around and see he has been active on his more local stuff I am more than a little annoyed.

Digital Jedi
01-13-2010, 01:49 AM
Why Invest in a domain and hosting just to abandon something That is in demand. Its really nonsensical.
I wondered if it was some sort of protest against the license changes on VB.

How many paid I wonder? all he needed was a little more polish for an upgraded version. It does work fine under 3.84.

I was understanding and sympathetic at first because Andrew had given very good support and responded to the forum, but it was like overnight he just disappeared as if he was hit by a bus one morning, but then I look around and see he has been active on his more local stuff I am more than a little annoyed.
Things happen. This isn't really all that unusual a circumstance. We are talking about a free modification, after all. And running a site is always going to take secondary precedence over the realities of real life, real family, real job. After all, you didn't think the paid version of this mod was his primary source of income, did you?

New Joe
01-21-2010, 06:47 AM
I got GameRoom to work in VB4... Wary about explaining how unless someone gives me some guidance.

So can you let us know how to get it to work for vB4?

Bouncer222
02-01-2010, 02:22 AM
Good news to you all! Well at least I hope so...

Look on the http://vbgaming.org/forum/portal.php site! There is a vbulletin message, and the site is locked. The date of message is January 27th, so I guess he is still around, hope he upgrades this!


vBulletin Message

Jan 27, 2010

Site is down for maintenance, spam is a little out of control.

Updated and Spam free site will be up in a few days.

Andrew
admin@vbgaming.org

hassshasss
02-10-2010, 07:44 AM
This hacks is excellent, would be great an update for VB4

rootsxrocks
02-12-2010, 05:17 AM
Things happen. This isn't really all that unusual a circumstance. We are talking about a free modification, after all. And running a site is always going to take secondary precedence over the realities of real life, real family, real job. After all, you didn't think the paid version of this mod was his primary source of income, did you?
Doesn't matter, I expect that once someone accepts a payment they should uphold their Obligations.
I encourage others to support developers so as to promote quality work, but abandoning after accepting moneys does not lead to trust required for such a system.

Digital Jedi
02-13-2010, 10:41 AM
Doesn't matter, I expect that once someone accepts a payment they should uphold their Obligations.
I encourage others to support developers so as to promote quality work, but abandoning after accepting moneys does not lead to trust required for such a system.
What was the paid version of this mod, anyway?

Thelonius Beck
02-14-2010, 12:17 PM
What was the paid version of this mod, anyway?

It has a few more games, most notably "No-Limit Texas Hold 'em" tourneys, and the ability to integrate your logo into the lobby frame.

The checkers that comes with the paid version however is completely non functional. And without a way to turn off individual games, Mr. Greene has effectively charged us for an unprofessional looking scar. That and the god awful color of the flash objects that shows for a moment before it loads are the only real problems I have with his disappearing act. Otherwise, it's a beautiful mod, and I'm glad to have spent the $45.

utahraves
02-16-2010, 04:32 PM
Upgrade, upgrade, upgrade (vb4).

PokerAffiliate
02-17-2010, 08:52 PM
It really is a shame. I'd actually be interested in purchasing this mod from him and investing in it to upgrade the whole thing so it works, as well as potentially adding some new features. I sent the developer an email about acquiring the mod, we'll see.........

rootsxrocks
02-20-2010, 01:08 AM
Good Luck, Poker.
Thelonius, the checkers worked fine on my install.
I to was very happy up until Andrew went suddenly missing, while we were in the midst of a crisis he had promised to resolve. I gave him the BOD and waited well over a month before my attitude when from concern to being upset when I saw he had been posting on his other sites.

tropicon
02-22-2010, 10:20 AM
We are paying $100 for upgrade code to VB4.0!

New Joe
02-22-2010, 01:00 PM
We are paying $100 for upgrade code to VB4.0!
Would you be willing to help out lots of members on here and share the files once they work?
Just attach them to a post in the Thread, I'm sure posters would donate a little too if you added a pay pal account to the post.
Please please.

Gamelobby
02-23-2010, 06:58 PM
That's pretty much true of every modification on this site.
Yea, but go to vbgaming.org to "get support" & you'll see why it is a lost cause. lol
Their site is nothing but a spam fest, i get PM's all the time from spammers, & all the forums are filled with spam posts, etc.

It's NOT just an abandoned mod, its a tragedy.
And i too wonder why they bother paying the hosting fees for it if nothing goes on, but spam.!?
I guess spammers are hits too. lol

Thelonius Beck
02-23-2010, 07:20 PM
Yea, but go to vbgaming.org to "get support" & you'll see why it is a lost cause. lol
Their site is nothing but a spam fest, i get PM's all the time from spammers, & all the forums are filled with spam posts, etc.

It's NOT just an abandoned mod, its a tragedy.
And i too wonder why they bother paying the hosting fees for it if nothing goes on, but spam.!?
I guess spammers are hits too. lol

The site is back up, and cleared of SPAM. All on site communication has been disabled however.

Hopefully Mr. Green intends to provide support for this wonderful from here on out...hopefully.

New Joe
02-24-2010, 02:48 AM
I don't agree, the same message has been on there for weeks now.
He's not logged onto this site since : Developer Last Online: Oct 2009
I'd say we won't be seeing him around again.

Digital Jedi
02-25-2010, 02:00 AM
I don't agree, the same message has been on there for weeks now.
He's not logged onto this site since : Developer Last Online: Oct 2009
I'd say we won't be seeing him around again.
That same message. The one posted yesterday? http://vbgaming.org/forum/showthread.php?t=2049

You do know you don't have to log into vB.org to work on your own modification, right?

New Joe
02-26-2010, 02:11 AM
Well let's hope the vB4 version will come out soon then.

WoodPusher
02-26-2010, 03:11 PM
Would you be willing to help out lots of members on here and share the files once they work?
Just attach them to a post in the Thread, I'm sure posters would donate a little too if you added a pay pal account to the post.
Please please.

I would pay for it. My users are going nuts waiting for the poker to return.

Gamelobby
02-28-2010, 09:00 PM
The site is back up, and cleared of SPAM. All on site communication has been disabled however.

Hopefully Mr. Green intends to provide support for this wonderful from here on out...hopefully.

That is great news.!! :)

SEW810
03-01-2010, 03:00 AM
Uninstalled. Users at my forum didn't like 'em so much :( , they hardly ever played those games

Thanx dude. Pretty nice hack and games. ;)

Digital Jedi
03-02-2010, 04:40 PM
Uninstalled. Users at my forum didn't like 'em so much :( , they hardly ever played those games

Thanx dude. Pretty nice hack and games. ;)
So far I'm the only one who's played mine. But then, I am City of Gamers, so it stands to reason I should keep it.

DeviantFlash
03-03-2010, 12:25 AM
Great news that the developer is back.

Waiting patiently for a VB4 release

New Joe
03-03-2010, 04:33 AM
I think you'll be waiting a long time.
Why doesn't he just come on here and say something to the users here.
Such a shame as it is truly a great mod.

TheChaosFactor
03-19-2010, 12:44 PM
So nobody knows how to fix this for vb4, or is nobody willing to share? Obviously with no announcement of any kind regarding upgrading this, it's something people are going to have to do on their own...

I know I've got a nice pay pal donation for anybody that gets this working correctly on vb4...

Digital Jedi
03-20-2010, 05:18 AM
Stuff like this takes a while.

New Joe
03-20-2010, 05:50 AM
I think someone will be able to make it for vB4, please share and help out the members here if you do.

wickedstangs
03-22-2010, 02:08 AM
waiting for VB4... Please

loovie
03-27-2010, 12:06 PM
I hope the vB4 version will come out soon ...please!

ricardoNJ
03-28-2010, 05:54 AM
This mod no works with Mozilla?

countryqt30
03-29-2010, 01:33 AM
Call me a noob, but I have installed several things onto my vb forums and never had issues but with this one the directions didnt seem easy enough for me as far as paths the stuff goes to!
I installed all this and get errors when i access my forums now!
Does someone have a more self explanatory set of directions?

WhiskeyOSS
03-29-2010, 05:37 PM
is this compatible with 4.02 we can not get it to run we get a Warning: array_merge() [<function.array-merge>]: Argument #1 is not an array in [path]/includes/class_bootstrap.php(1146) : eval()'d code on line 19

New Joe
03-31-2010, 04:07 AM
Installed and all games working fine on vB4 YES!!!!, the only problem is this at the top of the page:
Warning: fetch_template() calls should be replaced by the vB_Template class. Template name: navbar in [path]/includes/functions.php on line 3893

Parse error: syntax error, unexpected T_STRING in /home/zenithfo/public_html/testvb/gameroom.php(29) : eval()'d code on line 1

Warning: fetch_template() calls should be replaced by the vB_Template class. Template name: gameroom in [path]/includes/functions.php on line 3893
So can any coder fix this?

New Joe
03-31-2010, 04:22 AM
I think the above errors are to do with the nav bar, as it isn't showing.

WhiskeyOSS
03-31-2010, 02:20 PM
we just downloaded casino games and added them to the Arcade seems to be a simple fix...so to speak

New Joe
04-05-2010, 03:06 AM
It's here for vB4https://vborg.vbsupport.ru/showthread.php?t=239817
Thanks Andrew.

ramsespta
04-05-2010, 09:35 AM
nice thanks. but why doesnt exist backgammon :(

Iguana Goddess
04-10-2010, 02:07 PM
I just want to make sure I do this right, do I uninstall my existing casino before I install this one? I have vBulletin Casino Version 0.92 installed.

rknight111
04-16-2010, 02:04 AM
I have the old Casino installed and my members all have casino cash, how do I transfer that all over to this new updated version?

optimatez
04-29-2010, 08:15 PM
When i installed it, we can use it and play for a short time, then the whole server goes down with this error message:
Database error in vBulletin 3.8.4:

Invalid SQL:

SHOW COLUMNS
FROM user
LIKE 'gameroom_cash';

MySQL Error : Can't create/write to file '#sql_2ba4_0.MYD' (Errcode: 17)
Error Number : 1
Request Date : Wednesday, April 28th 2010 @ 06:13:22 PM
Error Date : Wednesday, April 28th 2010 @ 06:13:22 PM
Script : http://www.teampulverize.com/forums/gameroom.php?do=poker&ajax=1&?ts=0.93265487&lastID=95&chatID=3&rules=1&gameID=2&req=
Referrer : http://www.teampulverize.com/forums/gameroom.swf
IP Address : 96.32.129.245
Username : OpTiMaTeZ
Classname : vb_database
MySQL Version : 5.0.45-community-nt

How do i fix that? i know nothing about sql though :(

I have to reboot the entire box when this happens to get the website to come back up. Thanks for the product though!

New Joe
04-30-2010, 04:31 AM
Can't help with the above but I advise doing an edit to your post, way too many details about your Forum in your post.

Paul M
04-30-2010, 09:15 AM
There is nothing wrong with the post.

As far as the error goes - Err 17 is "File exists" - its trying to create a temp file that already exists, possibly a permission error on the directory its using thats stopping it deleting previous temp files.

New Joe
04-30-2010, 09:28 AM
So posing your ip address for anyone to see is good to do?
I'd say not.
Just trying to help out.

optimatez
04-30-2010, 12:14 PM
thx for the tip. how do i change the permissions to allow it? in windows it has full access. is it in sql? i have no idea how to change permissions in sql.. :(

gorentals
04-30-2010, 05:36 PM
Hi Andrew,

Thank you for the excellent mod. I just installed it and did a conversion from the Casino script. I'm receiving an error when I manually run the cron job via scheduled tasks.

Fatal error: Call to a member function query_read() on a non-object in /home/xxxxxx/public_html/gameroom/class_settings.php on line 55
The only reason I'm trying to run it manually is because I created a test account to make sure the referral credit is working. I suspect if it won't run manually it will also fail when running automated. Any thoughts as to why?



Thank you in advance,
Dan


I'm getting this same error when running manually. I assume this Task cleans up all the chat logs, etc in the database. if not how do you clean up all the old stuff that will just keep building up the database with garbage?

Here is line 55 of the Class_Settings.php file. Not sure if I need to edit anything.
$result = $db->query_read("
SHOW COLUMNS
FROM $this->userTable
LIKE 'gameroom_cash'
Thanks for any help

dirtyboxing
05-13-2010, 03:52 AM
Just updated from the free to the paid version...AWESOME!!! I don't have many mods installed on my site: Cyb-Chatbox, The Gameroom Pro and ibProArcade. No conflicts what so ever. Running v3.8.1+

I would also like to see backgammon added in the future...Multiplayer Blackjack would be cool as well. Thank you Andrew, keep up the good work.

tnedator
05-14-2010, 04:20 AM
I just installed 1.2 (paid version) on a 3.8.5 vB install.

I have two problems in Holdem.

First, every once in a while, it will default to a negative number in the raise box, like -190, instead of 10 like it should be. Then, if people aren't paying attention and they click call, the call on that winds up being $200.

Is this a known bug? Any fix for it?

Also, some users are saying they will some times see the flop, or turn card, BEFORE they have to make their bet, when they should be making their bet before those cards are shown.

BirdOPrey5
05-20-2010, 01:40 AM
I purchased the premium version of The Gameroom sight unseen because I was so happy with The Casino before it. I have it up and working on my 3.8.4 PL2 forums well, a couple of minor bugs I posted on Andrew's site... nothing that prevents use and enjoyment of the mod. However the other day I became aware of what to me is a big flaw threatening my possible removing it from my site. It all deals with a little known chat command /callout. when you type /callout "My message here." then "My message here." shows up in the Gameroom banner, under the navbar on every page in the forum... it's a good way to entice people to chat, however the callout function, like all of Gameroom chat, bypasses the censorship settings in vb options. My users have found out they can drop f bombs and the n word on all my forum pages with callout. Please fix this ASAP- Best would be integrating the built in censor, or implementing your own, but at the least a way to disable callouts until a better solution is found.

Thanks.

GoBoiano
05-23-2010, 07:10 PM
Hello, I uploaded and installed The Gameroom, however when I went to view the forum, this message came up:

Warning: include_once(gameroom/getBanner.php) [function.include-once]: failed to open stream: No such file or directory in [path]/global.php(400) : eval()'d code on line 1

Warning: include_once() [function.include]: Failed opening 'gameroom/getBanner.php' for inclusion (include_path='.:/usr/local/php5/lib/php') in [path]/global.php(400) : eval()'d code on line 1

Fatal error: Call to undefined function getBanner() in /home/content/b/o/i/boiano/html/global.php(400) : eval()'d code on line 2

Can anyone inform me on what may have gone wrong? Thanks

BirdOPrey5
05-24-2010, 10:32 PM
Hello, I uploaded and installed The Gameroom, however when I went to view the forum, this message came up:

Warning: include_once(gameroom/getBanner.php) [function.include-once]: failed to open stream: No such file or directory in [path]/global.php(400) : eval()'d code on line 1

Warning: include_once() [function.include]: Failed opening 'gameroom/getBanner.php' for inclusion (include_path='.:/usr/local/php5/lib/php') in [path]/global.php(400) : eval()'d code on line 1

Fatal error: Call to undefined function getBanner() in /home/content/b/o/i/boiano/html/global.php(400) : eval()'d code on line 2

Can anyone inform me on what may have gone wrong? Thanks

My first guess would be to re-upload the getBanner.php file to the /forums/gameroom directory... make sure once uploaded the file name is correct (with the capital letter B).

Samish
06-07-2010, 09:18 AM
Sorry for bump;
but where can we download more games for this gameroom?

BirdOPrey5
06-07-2010, 10:02 AM
You can't, they are only released by the mod author who has been MIA for some time... as he doesn't even have any new games installed on his site for testing I doubt any new ones are on the way anytime soon.

WhiskeyOSS
06-07-2010, 05:51 PM
you can download new games from here http://www.wolfpackarcade.com/ I purchased a subcription and can download all the arcade games I want... cost me 15 dollars I think..

BirdOPrey5
06-07-2010, 06:27 PM
you can download new games from here http://www.wolfpackarcade.com/ I purchased a subcription and can download all the arcade games I want... cost me 15 dollars I think..

I'm sorry but I believe you are mistaken. The Gameroom is a custom VB mod, not a flash based arcade system. Those games appear to be for the Arcade mods, IBPro or v3Arcade, not for "The Gameroom." I checked around the site and didn't see anything for 'The Gameroom' - if I'm mistaken please let me know, I would *love* to add multiplayer games to this.

WhiskeyOSS
06-07-2010, 06:49 PM
I'm sorry but I believe you are mistaken. The Gameroom is a custom VB mod, not a flash based arcade system. Those games appear to be for the Arcade mods, IBPro or v3Arcade, not for "The Gameroom." I checked around the site and didn't see anything for 'The Gameroom' - if I'm mistaken please let me know, I would *love* to add multiplayer games to this.

Your right I appologise I forgot I changed to the ibProArcade - professional Arcade System

Mod Information
Add A CommentEdit SettingsMark as Uninstalled
Tag Modification
Jump To CommentsThe Developer
About Developer Support Developer PayPal Verification Visit Web Site

Mod Version: 2.7.0+, by MrZeropage (Coder)
https://vborg.vbsupport.ru/showthread.php?t=101554&highlight=arcade

dirtyboxing
06-08-2010, 01:22 PM
You can't, they are only released by the mod author who has been MIA for some time... as he doesn't even have any new games installed on his site for testing I doubt any new ones are on the way anytime soon.

Don't bite the hand that feeds you. You have no idea what is "on the way" and what is not.

BirdOPrey5
06-08-2010, 01:32 PM
Don't bite the hand that feeds you. You have no idea what is "on the way" and what is not.

This is true, I am just guessing based on the available facts... It's possible he has a secret test site with a dozen games being beta tested right now ready for imminent release. I hope he does in fact.

rootsxrocks
06-09-2010, 07:28 AM
Andrew has suprised us all after long absences to come back with the goods. Thanks for the call out feature. Now Ill have to see if I can get that banner working in cms.

SVTCobraLTD
07-05-2010, 11:57 PM
Anyone else run into an issue where only one user cannot play a game? I have a user who cannot get Let it Ride to work. I have verified I can play, I have verified other users can play, but this user never get the chips to show. I have done this by logging into his account and running a test run and cannot get the chips to ever show. If I click Raise or Hold the cards just flash and they same cards come up. Any ideas?

SVTCobraLTD
07-09-2010, 09:02 PM
Not I get the error 2032 as well. Anyone?

thegardenman
07-24-2010, 10:32 PM
hey guys do i need to download all those zip files ?

simadoura7
07-27-2010, 07:42 PM
can you create a poker game like facebook ???

BirdOPrey5
07-27-2010, 07:45 PM
hey guys do i need to download all those zip files ?

Your best bet is to download directly from www.vbgaming.org - it has a newer version then here and is a single zip file.

Thelonius Beck
07-29-2010, 09:30 PM
Anyone else run into an issue where only one user cannot play a game? I have a user who cannot get Let it Ride to work. I have verified I can play, I have verified other users can play, but this user never get the chips to show. I have done this by logging into his account and running a test run and cannot get the chips to ever show. If I click Raise or Hold the cards just flash and they same cards come up. Any ideas?

Ideas? No. But I am experiencing the same issue. The user in question at my board has had it happen to him twice. Both times, it played through until the end of the hand, and stopped just before completion. 5 cards showing, no bets left to make, and it just sits there.

The first time I was forced to completely uninstall/reinstall the gameroom. It just happened again and, obviously, I am loath to do that again.

Andrew, if you're reading this, HELP!!!

*I am running the premium version by the way.

Mostjolly
08-20-2010, 12:39 PM
awesome.. is it possible to add more games??

BirdOPrey5
08-20-2010, 01:08 PM
There's a premium version on www.vbgaming.org with more games but that is it. The mod author has been gone for many months and there seems to be no further development of this mod.

upperwhitetrash
10-09-2010, 02:14 PM
i can't set any odds on pool betting... any tips?

Kyojii
12-20-2010, 11:37 PM
there an all-in option? and can the ugly look be changed? Purple? really?

Digital Jedi
12-22-2010, 03:17 AM
there an all-in option? and can the ugly look be changed? Purple? really?
Yes, it's built right into the game in the Admin settings.

BirdOPrey5
12-22-2010, 05:27 AM
If anyone is interested in making the "Callouts" from the chatroom censored so uncensored words don't appear on your pages if someone uses them in a callout, open the file chatroom.php

Find line 50:
$time = time();
Directly below add the line:
$msg = fetch_censored_text($msg);

And all callouts will now be censored if appropriate.

BirdOPrey5
01-13-2011, 08:56 PM
I know it's pointless posting bug reports but has anyone else noticed you can't use the plus sign (+) in a chat message? it just disappears....

Also I saw in the code /buzz - if youy type that into chat it makes a buzzing sound.

gorentals
02-25-2011, 12:11 PM
Database error in vBulletin 3.8.3:

Invalid SQL:

UPDATE vbforum_user
SET gameroom_cash = gameroom_cash + 5
WHERE userid =;

MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 3
Error Number : 1064

I keep randomly getting this error. Anyone else receive this? I imagine its an easy fix.

rootsxrocks
02-25-2011, 12:56 PM
I figured out its simple to change the graphics in the slot games and they are all basicly the same, does anyone have an Idea how I can add more slot variations to the menu ?

ryancooper
02-26-2011, 11:24 PM
How can I add the users cash to the header? I tried ading <br /><a href='gameroom.php'>Gameroom cash</a>: $$post[gameroom_cash] but the cash did not show?

Ivo2
05-09-2011, 02:57 PM
Unfortunatly there are more bugs. Does anyone knows a similar AddOn?

BirdOPrey5
05-09-2011, 03:51 PM
Unfortunatly there are more bugs. Does anyone knows a similar AddOn?

There's nothing close to this in terms of the number of games, a chatroom, sports betting, casino, and more... but if you are only interested in poker this "Pirate Poker" mod is pretty great. Personally I run both since the poker part of this mod seems to be the most bug prone.

https://vborg.vbsupport.ru/showthread.php?t=250446