The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
ibProArcade - professional Arcade System Details »» | |||||||||||||||||||||||||||||||||||||||||||||
ibProArcade - professional Arcade System
Developer Last Online: Mar 2023
ibProArcade the professional Arcade System for your vBulletin-Board the most installed Modification for vBulletin ever here on vbulletin.org works with vBulletin 3.0.x / 3.5.x / 3.6.x / 3.7.x / 3.8.x / 4.0.x / 4.1.x / 4.2.x ibProArcade v2.7.6+ is compatible to PHP5.6 and PHP7.0/7.1 Please notice that vBulletin itself needs minimum version 3.8.11 or 4.2.5 to work with PHP7.0/7.1 ================================================= Converters available If you made your way with another Arcade in your forum, maybe it's time to evolve and migrate to ibProArcade. No problem, there are converters available to smoothly port your games, scores ect. to ibProArcade CONVERTER for v3arcade CONVERTER for DBTech vBArcade (Lite and Pro) Use any converter for easy and safe conversion without losing any Game or Score - and even complete uninstall help for your old arcade ================================================= For Branding-Free-License and Donations check the "Information"-Section in your AdminCP's Arcade-Section after installing ================================================= Click INSTALL to get an email when an update for ibProArcade is released ================================================= This Hack provides you a professional Arcade fully integrated in your vBulletin-Forum. Your Members can play Games, hunt for Highscores and do Tournaments. Some Feature that come along and make this ibProArcade outstanding:
ibProArcade is compatible to ibProArcade-Games (*wow* surprise!), v3arcade-Games and PNflashgames (www.pnflashgames.com, use POSTNUKE format). PNflashgames does even offer Multiplayer-Games. This Hack was originally done for Invision Power Board (IPB) by Chris Kelly and later adapted to work within vBulletin 3.0.x but had no real integrated AdminCP and even some illegal licensed Files from IPB included, so it was removed from official vBulletin-Sites. ibProArcade for vBulletin comes along with a complete new AdminCP with even more options and improved functionality, has been bugfixed alot and I implemented some additional feature that where missing. All known security-issues found have been fixed. ibProArcade is full compatible to PHP4 and PHP5 and works with all vBulletin 3.x.x (yes, 3.0.x + 3.5.x + 3.6.x + 3.7.x + 3.8.x) with all the same Scripts ! ibProArcade v2.7.5+ and later is full compatible to PHP5.6 and PHP7 and works with all vBulletin-versions 3.x/4.x with all the same Scripts ! PHP7.0/7.1 require minimum vBulletin 3.8.11 or 4.2.5 and ibProArcade v2.7.5+ Installation of ibProArcade is very simple and easy: vBulletin 3.0.x upload the Files run the Installer edit 4 PHP-Files edit 3 Templates add 1 new Template vBulletin 3.5.x & 3.6.x & 3.7.x & 3.8.x & 4.x.x upload the Files import the Product-XML-File edit 3 Templates If you are upgrading from an existing Arcade, some information:
---MAD---, Acers, Aftermath, beacher, dede1, E=mc?, Esposito, Feckie (Roger), Gemma, ggiersdorf, GrendelKhan{TSU, Huijting, jbd, JTyson, kall, kylek, MasterMaik, matrix, media4you, micheal332001, MissKalunji, MrLister, nitro, nullified, Okie, Paul_Hollibone, Scotty2k, Ski-Whiz, slank, Smoker, stangger5, Synper, soniceffect, Sooner95, tcs, Tekram, Willy, Wordplay and everybody else I forgot to mention here Special thanks to Chris Kelly for his permission to re-release this new, extended ibProArcade to the vBulletin-Community ! Please remember to click INSTALL If you want to support me, feel free to donate (use the "support developer" button in the upper right) or just check out the Installation-Instructions included in the ZIP-Archive, Thank You! For Branding-Free License check the AdminCP -> Arcade -> Information after you installed it, all information can be found there. ...and now you should stop reading this and start downloading this awesome addition for your vBulletin to make your Members happy... Enjoy Download-History: v2.6.7a+ (9880 Downloads) v2.6.8+ (9849 Downloads) v2.6.9+ (456 Downloads) v2.7.0+ (10833 Downloads) v2.7.2+ (4626 Downloads) ** Please do not post any information, request or offer of Games here in this Thread ! And remember that Support is given in the ibProArcade-Support-Forum ** Download Now
Screenshots
Show Your Support
|
Comments |
#6642
|
||||
|
||||
it's posted in the install file in the zip..
if your server is running suphp then there is no reason to set permissions. |
#6643
|
||||
|
||||
You know the {vb:raw post.crowns}?
Is there any way to make it scroll further? It only goes a certain width across my posts This is an example: http://www.mindlessjunk.com/showthre...ull=1#post1707 |
#6644
|
||||
|
||||
if your using postbit
admincp> plugin manager look for ibProArcade: Crowns in Postbit and replace the code with this Code:
global $crowncache; if (!$crowncache) { $this->cache['champs'] = array(); $this->cache['tourneys'] = array(); $this->cache['crowns'] = array(); $this->cache['crown'] = $this->registry->db->query_first("SELECT crown_type AS type, show_crowns, show_t_won FROM " . TABLE_PREFIX . "games_settings"); if ($this->cache['crown']['show_crowns']) { $thecrowns = $this->registry->db->query_read(" SELECT c.*, g.gname, cat.password FROM " . TABLE_PREFIX . "games_champs AS c, " . TABLE_PREFIX . "games_list AS g, " . TABLE_PREFIX . "games_cats AS cat WHERE (c.champ_gid=g.gid) AND (g.gcat=cat.c_id) AND trim(password)='' AND g.active=1 "); while ($this_champ = $this->registry->db->fetch_array($thecrowns)) { if (!isset($this->cache['champs']["$this_champ[champ_mid]"])) { $this->cache['champs']["$this_champ[champ_mid]"] = array(); } $this->cache['champs']["$this_champ[champ_mid]"][] = array( 'gid' => $this_champ['champ_gid'], 'gtitle' => $this_champ['champ_gtitle'], 'gname' => $this_champ['gname'] ); } } if ($this->cache['crown']['show_t_won']) { $tourneyquery = $this->registry->db->query_read(" SELECT t.champion, u.userid FROM " . TABLE_PREFIX . "tournaments AS t LEFT JOIN " . TABLE_PREFIX . "user AS u ON (t.champion = u.username) WHERE champion<>'' "); while ($this_tourney = $this->registry->db->fetch_array($tourneyquery)) { if (!isset($this->cache['tourneys']["$this_tourney[userid]"])) { $this->cache['tourneys']["$this_tourney[userid]"] = 0; } $this->cache['tourneys']["$this_tourney[userid]"]++; } } $crowncache = true; } $champs =& $this->cache['champs']; $tourneys =& $this->cache['tourneys']; $crown =& $this->cache['crown']; $crowns = ''; if ($crown['show_crowns']) { if (!isset($this->cache['crowns']["$post[userid]"])) { $crowns = ''; if (isset($champs["$post[userid]"])) { if ((count($champs["$post[userid]"]) > 1) && ($crowns[type]!=4)) { switch ($crown['type']) { case 0: $crowns = ''; break; case 1: $crowns = '<marquee width="150" scrollamount="3">'; break; case 2: $crowns = '<marquee width="175" name="crownscroll" scrollamount="1" direction="up" height="20">'; break; case 3: $crowns = ''; break; } $crown_end = ($crown['type'] == 1) ? '' : '<br />'; $counter=0; foreach ($champs["$post[userid]"] AS $this_game) { if ($crown['type'] == 3) { if ($counter == 5) { $counter = 0; $crowns.= "<br />"; } } $imgtext=""; if ($crown['type'] == 3) { $imgtext = "$this_game[gtitle] Champion"; } $crowns .= "<a href=\"arcade.php?" . $this->registry->session->vars['sessionurl'] . "do=stats&gameid=$this_game[gid]\"> <img src=\"arcade/images/$this_game[gname]2.gif\" border=\"0\" alt=\"$imgtext\" width=\"20\" height=\"20\" />"; if ($crown['type']!=3) { $crowns .= $this_game[gtitle]." Champion!</a> " . $crown_end; } else { $crowns .= "</a> "; } $counter++; } if ($crown['type'] != 0) { $crowns .= '</marquee>'; if ( ($crown['show_t_won']) && (isset($tourneys["$post[userid]"])) ) { $crowns .= '<br />'; } } } else { foreach ($champs["$post[userid]"] AS $this_game ) { $imgtext = ""; if ($crown['type'] == 3) { $imgtext = "$this_game[gtitle] Champion"; } $crowns = "<a href=\"arcade.php?" . $this->registry->session->vars['sessionurl'] . "do=stats&gameid=$this_game[gid]\"><img src=\"arcade/images/$this_game[gname]2.gif\" border=\"0\" alt=\"$imgtext\" width=\"20\" height=\"20\" /> "; if ($crown['type'] != 3) { $crowns .= "$this_game[gtitle] Champion!"; } $crowns .= "</a>"; } } } if ($crown[type]==4) { $extra=""; if (count($champs["$post[userid]"])>1) { $extra="s"; } $crowns = ""; if (count($champs["$post[userid]"]) > 0) { $crowns = "<img src='arcade/images/trophy.gif' alt='".(count($champs["$post[userid]"]))." Highscore".$extra."'><br />"; } } $this->cache['crowns']["$post[userid]"] = $crowns; } else { $crowns = $this->cache['crowns']["$post[userid]"]; } } $champtext = ''; if ($crown['show_t_won']) { if (isset($tourneys["$post[userid]"]) ) { $champtext = "<dt><a href='arcade.php?do=viewtourneyend' target='_blank' alt='123456'>" .$vbphrase[ibpa_tourney] . " </dt></a><b>" . $tourneys[$post[userid]] . "</b>"; } } $post['crowns'] = $crowns; $post['champtext'] = $champtext; |
#6645
|
||||
|
||||
Thanks Hippy!
I had to edit it to make it 170 instead of 150 but it worked perfectly! |
#6646
|
||||
|
||||
Welcome 150 was tested on postbit so it may be wider if your using postbit_legacy
enjoy |
#6647
|
||||
|
||||
Yeah, I used it on postbit_legacy, thanks!
|
#6648
|
|||
|
|||
Would it be possible to stop the marqee in postbit when you hover over it.
|
#6649
|
||||
|
||||
Quote:
go to your admincp> Plugins & Products> under plugin manager look for ibProArcade: Crowns in Postbit click it or click edit ... look for Code:
case 1: $crowns = '<marquee width="150" scrollamount="3">'; break; case 2: $crowns = '<marquee width="175" name="crownscroll" scrollamount="1" direction="up" height="20">'; break Code:
case 1: $crowns = '<marquee width="150" onmouseout="this.scrollAmount=3" onmouseover="this.scrollAmount=1" scrollamount="3">'; break; case 2: $crowns = '<marquee width="175" name="crownscroll" onmouseout="this.scrollAmount=1" onmouseover="this.scrollAmount=0" scrollamount="1" direction="up" height="20">'; break; |
#6650
|
|||
|
|||
Cheers Hippy...:up:
|
#6651
|
||||
|
||||
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|