Go Back   vb.org Archive > vBulletin Modifications > Archive > Modification Graveyard
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Gameroom Details »»
Gameroom
Version: 1.2.0, by Andrew Green Andrew Green is offline
Developer Last Online: Apr 2010 Show Printable Version Email this Page

Category: Major Additions - Version: 4.0.2 Rating:
Released: 04-04-2010 Last Update: 04-04-2010 Installs: 247
DB Changes Uses Plugins Template Edits
Additional Files  
No support by the author.

This is the free version of The Gameroom by http://vbgaming.org, the follow up / expansion of the Casino plugin for vBulletin. It improves the multiplayer gaming aspects by bringing in more games, and allowing users more options when starting and joining games. Included is a upgrade script for transfering your stats from the Casino to the Gameroom.

Multiplayer games are played live, with embedded chatrooms

Features include:

- Lobby
--- Chatroom for arranging games

- Solo Games
--- Blackjack
--- Let it Ride
--- Roulette
--- Video Poker
--- 3 different slot machines

- Texas Hold'em
--- Multiple tables
--- Customize blinds and rules when creating a game
--- Passwords for private games
--- vBulletin avatars in game
--- Alert sounds to notify to alert you when it is your turn

- 7-Card Stud
--- Multiple tables
--- Set Ante
--- Passwords for private games
--- vBulletin avatars in game
--- Alert sounds to notify to alert you when it is your turn

- Chess
--- Standard chess rules, with legal moves enforced.
--- Alert on Check and Checkmate
--- Tracking of the 50-move rule and Threefold repetition rule
--- Passwords for private games

- Reversi (aka Othello)
--- Legal moves enforced.
--- Passwords for private games

- Statistics
--- Redesigned offering graphs and sortable datagrids

- Betting
--- Module can be turned off if not in use
--- pool bets, where the bets are added together and dived amongst the winners

- Optional status bar
--- Choice of flash or html bar
--- Placed in main template
--- Shows current gameroom status (open multiplayer games, messages can be sent from within, # of open bets in betting module)

- Cash Bonuses for actions that benefit your site
--- Posting
--- Starting threads
--- Referalls
--- Daily sign in
--- Giving rep
--- Recieving Rep
--- Voting
--- Rating threads


If you downloaded this and have a file named gameroomBasic.swf, it should be named gameroom.swf, sorry about that, it's fixed in the archive now.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
3 благодарности(ей) от:
FReeSTER, kavehch, nchoate97

Comments
  #112  
Old 06-12-2010, 08:13 AM
BirdOPrey5's Avatar
BirdOPrey5 BirdOPrey5 is offline
Senior Member
 
Join Date: Jun 2008
Location: New York
Posts: 10,610
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I would open the file /includes/class_dm.php in a text editor that supports line numbers (google 'notepad2' if you don't have one) and go to line 515 and see what's up... I have a different vb version but for me line 515 is an opening comment so I'd look to the code immediately above it as the cause of the issue.
Reply With Quote
  #113  
Old 06-13-2010, 02:41 AM
ggsinc ggsinc is offline
 
Join Date: May 2010
Posts: 15
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
function verify($fieldname, &$value, $doverify = true)
{
if (isset($this->validfields["$fieldname"]))
{
$field =& $this->validfields["$fieldname"];

// clean the value according to its type
$value = $this->registry->input->clean($value, $field[VF_TYPE]);

if ($doverify AND isset($field[VF_CODE]))
{
if ($field[VF_CODE] === VF_METHOD)
{
if (isset($field[VF_METHODNAME]))
{
return $this->{$field[VF_METHODNAME]}($value);
}
else
{
return $this->{'verify_' . $fieldname}($value);
}
}
else
{
$lamdafunction = create_function('&$data, &$dm', $field[VF_CODE]);
return $lamdafunction($value, $this);
}
}
else
{
return true;
}
}
else
{
trigger_error("Field <em>$fieldname</em> is not defined in <em>\$validfields</em> in class <strong>" . get_class($this) . "</strong>", E_USER_ERROR);
return false;
The red bit is line 515, the line that is offending vBulletin's add user feature.

In my test forum, I just deleted the line entirely so that the code doesn't produce an error, but just returns false. And that worked. However, I don't speak php and I could have just deleted something vital. Can anyone translate php into newbie for me and tell me what that line means?
Reply With Quote
  #114  
Old 06-13-2010, 04:47 PM
BirdOPrey5's Avatar
BirdOPrey5 BirdOPrey5 is offline
Senior Member
 
Join Date: Jun 2008
Location: New York
Posts: 10,610
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

All you did was remove the error message and let the script continue working...
The trigger_error () function obviously displays the error message passed to it and I'd guess terminates the script, you could confirm what it does by searching for it and looking at/posting the definition (code associated with the function)... it may not be in this file, it may be in a file called in an include statement, probably at the top of this file, such as global.php.

But if things seem to work on your test forum even though I'm sure it is not recommended I'd probably be fine with just keeping the line commented out for now.
Reply With Quote
  #115  
Old 06-23-2010, 03:00 AM
furst furst is offline
 
Join Date: Dec 2005
Posts: 362
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanks, working nicely on vb 4.0.4.
Reply With Quote
  #116  
Old 06-24-2010, 05:43 PM
Doctor Death Doctor Death is offline
 
Join Date: Dec 2005
Posts: 449
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I had to uninstall on my 4.0.4.

Although it appeared to operate normally, when I went to ADMINCP and manually added a user to forums, it generated numerous errors. The errors were caused by this mod.

I unintalled this mod and the errors went away and was able to manually add new users.
Reply With Quote
  #117  
Old 06-24-2010, 06:02 PM
cbehan cbehan is offline
 
Join Date: Feb 2009
Posts: 55
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Doctor Death View Post
I had to uninstall on my 4.0.4.

Although it appeared to operate normally, when I went to ADMINCP and manually added a user to forums, it generated numerous errors. The errors were caused by this mod.

I unintalled this mod and the errors went away and was able to manually add new users.
I reported this issue to Andrew (I think in his forums) and he sent me the name of a plugin to turn off that fixed it.

That being said, I can't argue with the decision to stop using a major product like this that gets virtually no support.
Reply With Quote
  #118  
Old 06-26-2010, 02:08 PM
Frost5 Frost5 is offline
 
Join Date: Sep 2009
Posts: 15
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by cbehan View Post
I reported this issue to Andrew (I think in his forums) and he sent me the name of a plugin to turn off that fixed it.

That being said, I can't argue with the decision to stop using a major product like this that gets virtually no support.
What's the plugin?
Reply With Quote
  #119  
Old 06-26-2010, 09:44 PM
kylek kylek is offline
 
Join Date: Oct 2003
Location: British Columbia, Canada
Posts: 798
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yes, do you remember the plugin? Is doing the same thing when I manually add a member. What I have been doing is just disabling the gameroom and then when finished adding a member reenable the gameroom, this allows you to add a member without uninstalling the gameroom until this gets fixed.
Reply With Quote
  #120  
Old 06-27-2010, 12:40 AM
Justin1592 Justin1592 is offline
 
Join Date: Mar 2010
Posts: 7
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is there a way to remove the Gameroom tab from the Navbar?

edit: I think I resolved this by turning off the appropriate plugin (Gameroom menu). Not sure if this will impact other features, but it's working so far.
Reply With Quote
  #121  
Old 06-30-2010, 08:14 PM
Justin1592 Justin1592 is offline
 
Join Date: Mar 2010
Posts: 7
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Doctor Death View Post
I had to uninstall on my 4.0.4.

Although it appeared to operate normally, when I went to ADMINCP and manually added a user to forums, it generated numerous errors. The errors were caused by this mod.

I unintalled this mod and the errors went away and was able to manually add new users.
Quote:
Originally Posted by cbehan View Post
I reported this issue to Andrew (I think in his forums) and he sent me the name of a plugin to turn off that fixed it.

That being said, I can't argue with the decision to stop using a major product like this that gets virtually no support.
Quote:
Originally Posted by Frost5 View Post
What's the plugin?

I'm having the same issue. What's the plugin please?

Thanks.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 09:08 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05325 seconds
  • Memory Usage 2,340KB
  • Queries Executed 26 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (6)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (3)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete