Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > Premium Archives > ibProArcade Archive
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
vbPlaza-Integration Details »»
vbPlaza-Integration
Version: , by MrZeropage MrZeropage is offline
Developer Last Online: Mar 2023 Show Printable Version Email this Page

Version: Unknown Rating:
Released: 04-12-2006 Last Update: Never Installs: 0
 
No support by the author.

Hello,

if you are using ibProArcade v2.5.5+ and vbPlaza v1.5.5 (or even newer versions), both Hacks are full compatible to eachother and have smooth integration.

ibProArcade automatically detects if vbPlaza is installed and active.
If so, you will find all the Options in the Arcade, like:
  • Costs per play
  • Jackpot per Game (static or raising)
  • Costs per Tournament-Participation
The "Costs per play" are defined in ibProArcade's AdminCP in the Game-Settings. Remember those settings do only appear if vbPlaza is detected and active

Then you can choose a Jackpot-Type per Game:
--> static (means always the same amount to win for getting Highscore-Champ)
--> raising (means all costs for playing directly raise the Jackpot which you can win by getting Highscore-Champ)

In vbPlaza-Settings you can tell a raising Jackpot to get raised with X percent of the Costs



If you buy an Arcade-Pass in vbPlaza, you can play all Games for free, but won't win a Jackpot.
In vbPlaza-Settings you can change that to "play for free, but still win Jackpots"



For Tournament-Games you can setup Costs for Participation, so each Player who joins in has to pay that costs once for joining.
The Jackpot of that Tournament is the amount all Players paid, so for example an 8-Player-Tournament with 100 Points each brings a Jackpot of 800 Points



:banana: Enjoy this fantastic Integration :banana:

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #32  
Old 11-27-2006, 02:21 PM
TitanPK TitanPK is offline
 
Join Date: Oct 2006
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by keithsl View Post
I'm having a problem with the integration. Everything seems to be integrated however when a user plays, it says Costs per game 10. Well it doesn't take 10 away. Also the jackpot doesn't seem to raise, it stays at the default.

I'm running the newest version of vB, ibpro and vbbux

I looked through the code a little but and I dind't see anywhere that it changes vbbux points. Anyone have any ideas?
IU'm having the same issue...did you get this resolved?
Reply With Quote
  #33  
Old 11-27-2006, 02:24 PM
keithsl keithsl is offline
 
Join Date: Jan 2005
Location: St. Louis
Posts: 29
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Go to the vBPlaza download and you will find an extra folder for "Addons". Inside that folder is additional pluggins that are required for the ibProArcade integration as well as a second product that must be installed
Reply With Quote
  #34  
Old 12-03-2006, 11:08 AM
Greek Wizard Greek Wizard is offline
 
Join Date: Jun 2006
Posts: 94
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Butters View Post
Firstly, sorry if this has already been answered elsewhere ... or I've posted in the wrong thread.

The older I get, the worse I get at finding things on vbulletin.org !

Installed vbplaza with this arcade ... all works superbly

But I've got an issue with the tournament view and cost to join ( image attached .... although it still works as it should and members are only charged the correct amount .... it's just "cosmetic")

Any ideas how to fix ? ( or point me to the correct thread ! ).

Thanks for your time all.
Just curious, Mr. Zeropage

but has this been corrected, or a known fix for yet? I have found a few instances of this, dating pretty far back..

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

But I can't seem to find a fix yet.

Two screen shots are attached.
Attached Files
File Type: (21.3 KB, 14 views)
File Type: (21.3 KB, 28 views)
Reply With Quote
  #35  
Old 12-04-2006, 09:56 AM
Greek Wizard Greek Wizard is offline
 
Join Date: Jun 2006
Posts: 94
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I think I found the problem regarding the above issue, but I am not a coder, etc, so I can't help fix it properly and as such broke it a little, but with much minor issues. I did however fix it for my needs, and until a proper fix comes from someone that knows what they are doing as opposed to me, then I will use it since it's better than above I think. Again, please realize, I really have no idea what I am doing, so back up your arcade.php file if you want to try this.

That said, I added some hard coded text because my "fix" disabled the $costhtmlstart and removed the "Costs to play" text, as again, I really have no idea what I am doing here. Anyways, this is what I did, and hopefully from that Mr. Z can find a proper fix for us.

Basicly all I did was change $costhtmlstart .= to $costhtmlstart = (took the period out) and that fixed it (but caused other smaller issues), added the hard Coded vbbux text and a <br />

Open arcade.php

Find:

Code:
		// detect vBplaza
		if (($vbulletin->options['vbbux_enabled'] == 1) && ($vbulletin->options['vbbux_arcadeintegration'] == 1))
		{
			$costhtmlstart	= "<br /><span class=\"smallfont\">".$ibforums->lang['costs_tourneyj'];
			$costhtmlend	= "</span>";
		}

		$DB->query("SELECT t.nbtries, t.plibre, t.creat, t.gid, t.numplayers,t.datestarted,t.tid,t.champion,t.cost,g.gtitle FROM ibf_tournaments as t, ibf_games_list as g WHERE t.gid = g.gid AND demare = 0 ORDER BY datestarted DESC");
		while($row = $DB->fetch_row()) {
			$row['link'] = "<a href='".$ibforums->vars['base_url']."do=viewtourney&amp;tid=".$row['tid']."'>".$ibforums->lang['see_this_tourney']."</a>";

			if ($costhtmlstart!="")
			{
				// add the costs to HTML and format it (vBplaza-Setting!)
				$costhtmlstart .= vb_number_format($row['cost'], $vbulletin->options['vbbux_decimalplaces']);
			}

			$row['inscrire'] = "<a href='".$ibforums->vars['base_url']."do=registertourney&amp;tid=".$row['tid']."'>".$ibforums->lang['register']."</a>".$costhtmlstart.$costhtmlend;
			$i=0;
Replace with:

Code:
		// detect vBplaza
		if (($vbulletin->options['vbbux_enabled'] == 1) && ($vbulletin->options['vbbux_arcadeintegration'] == 1))
		{
			$costhtmlstart	= "<br /><span class=\"smallfont\">".$ibforums->lang['costs_tourneyj'];
			$costhtmlend	= " vbBux to play</span>";
		}

		$DB->query("SELECT t.nbtries, t.plibre, t.creat, t.gid, t.numplayers,t.datestarted,t.tid,t.champion,t.cost,g.gtitle FROM ibf_tournaments as t, ibf_games_list as g WHERE t.gid = g.gid AND demare = 0 ORDER BY datestarted DESC");
		while($row = $DB->fetch_row()) {
			$row['link'] = "<a href='".$ibforums->vars['base_url']."do=viewtourney&amp;tid=".$row['tid']."'>".$ibforums->lang['see_this_tourney']."</a>";

			if ($costhtmlstart!="")
			{
				// add the costs to HTML and format it (vBplaza-Setting!)
				$costhtmlstart = vb_number_format($row['cost'], $vbulletin->options['vbbux_decimalplaces']);
			}

			$row['inscrire'] = "<a href='".$ibforums->vars['base_url']."do=registertourney&amp;tid=".$row['tid']."'>".$ibforums->lang['register']."</a><br />".$costhtmlstart.$costhtmlend;
			$i=0;
A screen shot is attached, so that you can see the result.
Attached Files
File Type: (21.3 KB, 31 views)
Reply With Quote
  #36  
Old 02-03-2007, 03:01 PM
Xplorer4x4 Xplorer4x4 is offline
 
Join Date: Apr 2005
Posts: 938
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Mr Zero Page, an idea for a future release may be setting it up so that all money paid to get in a tournament is added to the jack pot just to sweeten the pot a bit more.
Reply With Quote
  #37  
Old 02-05-2007, 10:49 PM
DementedMindz DementedMindz is offline
 
Join Date: Jan 2006
Posts: 1,474
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

don't think it will now since its been removed from the site since there was a exploit https://vborg.vbsupport.ru/showthrea...=121138&page=3
Reply With Quote
  #38  
Old 03-01-2007, 07:48 AM
Mys Mys is offline
 
Join Date: Jun 2006
Posts: 52
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Does anyone have information concerning integration between ibProArcade and Icash? Is it do-able now? Is there another alternative to Icash where the integration is already in place? Have the authors of vBux/vB Plaza made any commitments wrt fixing the exploit issue?

Thanks for any info you can provide.
Reply With Quote
  #39  
Old 03-05-2007, 07:35 AM
myvbweb myvbweb is offline
 
Join Date: Jan 2007
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello, when I click on the link for vbPlaza, I get this

"you do not have permission to access this page. This could be due to one of several reasons:"

I am already logged in vbulletin.org, why won't it let me go to that link for vbPlaza.

Where do I download the vbPlaza.

Thanks.
Reply With Quote
  #40  
Old 03-05-2007, 08:16 AM
MrZeropage's Avatar
MrZeropage MrZeropage is offline
 
Join Date: Nov 2003
Location: Munich, Germany
Posts: 3,012
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

vbPlaza is currently taken off vbulletin.org as some security-issues where discovered.

Please wait to next vBPlaza-version to be released, which will be bugfixed.
Reply With Quote
  #41  
Old 03-05-2007, 09:37 PM
myvbweb myvbweb is offline
 
Join Date: Jan 2007
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is there any alternatives to this? I don't need too much fancy stuff, just a way to get points for playing games and getting high scores.

Where can I download an older version? Also where can I download another alternative?

Thanks.

Does iCash work with this mod?
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 01:28 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.04938 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
  • (2)bbcode_code
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (3)postbit_attachment
  • (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
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • postbit_attachment
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete