The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
ibProArcade Fixes Details »» | ||||||||||||||||||||||||||||||
Quote:
or Full width Forum logo mod the above ARCADE template will work alone this template should be changed anyway.. the arcade is so out of date. it's calling the old template ARCADE instead of ARCADEVB4 I just copied the ARCADEVB4 template and added it to the ARCADE template with a couple small changes If you are still using the stock ARCADE template soon or later it's going to stop working.
Quote:
if adding this code to your index.php don't work below as stated in your arcade zip file you downloaded Code:
open index.php At the very beginning of the File, right after: ---------------------------------------------------------- <?php ---------------------------------------------------------- you have to insert: ---------------------------------------------------------- // ibProArcade if($_POST['module'] == "pnFlashGames") { require_once('./global.php'); switch($_POST['func']) { case "storeScore": $_GET['act'] = "Arcade"; $_GET['module'] = "arcade"; $_GET['do'] = "pnFStoreScore"; break; case "saveGame": $_GET['do'] = "pnFSaveGame"; break; case "loadGame": $_GET['do'] = "pnFLoadGame"; break; case "loadGameScores": $gid = $vbulletin->input->clean_gpc('p', 'gid', TYPE_INT); $uid= $vbulletin->userinfo['userid']; $game = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "games_scores WHERE mid=$uid AND gid = $gid ORDER BY score DESC LIMIT 0,1"); $scores = $game[score]; if($scores != false) { //Return true print "&opSuccess=true&gameScores=$scores&endvar=1"; //send endvar to keep opSuccess separate from all other output from PostNuke } else { print "&opSuccess=false&error=Error&endvar=1"; } break; } } $act = $_GET[act]; $autocom = $_GET[autocom]; $showuser= $_GET[showuser]; if($act == "Arcade" || $autocom=="arcade") { include "arcade.php"; exit(); } if(!empty($showuser) && $showuser >= 1) { $u = $showuser; $_GET[u] = $showuser; include "member.php"; exit(); } // end of ibProArcade ---------------------------------------------------------- Otherwise your scores won't be recorded :) If the Above edit does not work Pitman posted a rewrite that does the same things with out editing the index.php or of you don't have one https://vborg.vbsupport.ru/showpost....6&postcount=83 I also have a version of this from stangger5 Posted in the new updated Ibproarcade fixes Fatal error: Allowed memory / uploading in bulk Quote:
I tried to add all the bug fixes in one thread to make it easy for people to find them.. If I forgot any feel free to post them here.. Hope this helps out enjoy Download Now
Show Your Support
|
Comments |
#52
|
|||
|
|||
Call me nuts call me crazy but there are no #0000 in the css :S
I thinks thats because i changed them to #ffff Thats whit. |
#53
|
||||
|
||||
see if this arcade.css makes a difference replace it in your additional.css
I'm not sure what else to do I have a dark custom style and I didn't have to do anything to that font it changed globally.. could be something in your Style Variable as well. Code:
.tborder { background-color:{vb:stylevar doc_backgroundColor}; border: 1px solid #c4c4c4; font-size: {vb:stylevar font-size}; } .tcat { font:{vb:stylevar blockhead_font}; color:{vb:stylevar blockhead_color}; background:{vb:stylevar blockhead_background}; padding:{vb:stylevar blockhead_padding}; border:{vb:stylevar blockhead_border}; -moz-border-radius-top{vb:stylevar right}: {vb:stylevar border_radius}; -moz-border-radius-top{vb:stylevar left}: {vb:stylevar border_radius}; -webkit-border-top-{vb:stylevar right}-radius: {vb:stylevar border_radius}; -webkit-border-top-{vb:stylevar left}-radius: {vb:stylevar border_radius}; } .tcat a:link, .tcat_alink { color: {vb:stylevar forumhead_color}; text-decoration: none; } .tcat a:visited, .tcat_avisited { color: {vb:stylevar forumhead_color}; text-decoration: none; } .tcat a:hover, .tcat a:active, .tcat_ahover { color: #FFFF66; text-decoration: underline; } .alt1, .alt1Active { background: {vb:stylevar forumrow_background}; color: {vb:stylevar blocksubhead_color}; } .alt2, .alt2Active { background: {vb:stylevar forumrow_background}; color: {vb:stylevar blocksubhead_color}; } /* ***** small padding on 'thead' elements ***** */ td.thead, th.thead, div.thead { padding: 4px; } /* ***** basic styles for multi-page nav elements */ .pagenav a { text-decoration: none; } .pagenav td { padding: 2px 4px 2px 4px; } .tcat .shade, .thead .shade, .tfoot .shade { color: #DDDDDD; } /* ***** define margin and font-size for elements inside panels ***** */ .fieldset { padding: 5px; font-size: {vb:stylevar font-size}; border: 1px solid #c4c4c4; margin: 0 2px; } .fieldset, .fieldset td, .fieldset p, .fieldset li { font-size: 11px; } |
#54
|
|||
|
|||
Your the best !!
What did you change? I wanna make the text a little bit whiter, so you can read it better. Check arcade and you see what i mean. |
#55
|
||||
|
||||
if you use a compare program ( something like compareit) you can compare this one I posted to the orginal one and see the changes I made..
most are changes where to vb stylevars so they will change when you make changes in the admincp.. as far as the color.. the arcade looks fantastic.. I wouldn't change it but you would need to find a stylevar you like the color of and change it the problem we had before is that you made changes and I made changes .. so we where not on the same page (so to speak) try this one.. over write the one you added before see what one is better for you I would also use it on your other stlye Code:
.tborder { background-color:{vb:stylevar doc_backgroundColor}; border: 1px solid #c4c4c4; font-size: {vb:stylevar font-size}; } .tcat { font:{vb:stylevar blockhead_font}; color:{vb:stylevar blockhead_color}; background:{vb:stylevar blockhead_background}; padding:{vb:stylevar blockhead_padding}; border:{vb:stylevar blockhead_border}; -moz-border-radius-top{vb:stylevar right}: {vb:stylevar border_radius}; -moz-border-radius-top{vb:stylevar left}: {vb:stylevar border_radius}; -webkit-border-top-{vb:stylevar right}-radius: {vb:stylevar border_radius}; -webkit-border-top-{vb:stylevar left}-radius: {vb:stylevar border_radius}; } .tcat a:link, .tcat_alink { color: {vb:stylevar forumhead_color}; text-decoration: none; } .tcat a:visited, .tcat_avisited { color: {vb:stylevar forumhead_color}; text-decoration: none; } .tcat a:hover, .tcat a:active, .tcat_ahover { color: #FFFF66; text-decoration: underline; } .alt1, .alt1Active { background:{vb:stylevar formrow_background.backgroundColor}; color: {vb:stylevar blocksubhead_color}; //-moz-border-radius-top{vb:stylevar right}: {vb:stylevar border_radius}; //-moz-border-radius-top{vb:stylevar left}: {vb:stylevar border_radius}; //-webkit-border-top-{vb:stylevar right}-radius: {vb:stylevar border_radius}; //-webkit-border-top-{vb:stylevar left}-radius: {vb:stylevar border_radius}; //-moz-box-shadow: -1px 1px 1px {vb:stylevar forumbits_shadow_color}; //-webkit-box-shadow: -1px 1px 1px {vb:stylevar forumbits_shadow_color}; //margin-bottom: {vb:stylevar padding}; } .alt2, .alt2Active { background-color:{vb:stylevar content3_background.backgroundColor}; color: {vb:stylevar blocksubhead_color}; //-moz-box-shadow: -1px 1px 1px 1px {vb:stylevar forumbits_shadow_color}; //-webkit-box-shadow: -1px 1px 1px 1px{vb:stylevar forumbits_shadow_color}; //margin-bottom: {vb:stylevar padding}; } /* ***** small padding on 'thead' elements ***** */ td.thead, th.thead, div.thead { padding: 4px; } /* ***** basic styles for multi-page nav elements */ .pagenav a { text-decoration: none; } .pagenav td { padding: 2px 4px 2px 4px; } .tcat .shade, .thead .shade, .tfoot .shade { color: #DDDDDD; } /* ***** define margin and font-size for elements inside panels ***** */ .fieldset { padding: 5px; font-size: {vb:stylevar font-size}; border: 1px solid #c4c4c4; margin: 0 2px; } .fieldset, .fieldset td, .fieldset p, .fieldset li { font-size: 11px; } |
#56
|
|||
|
|||
Tobad i cant give you thanks
Many thanks!! Works fine now! |
#57
|
|||
|
|||
I have checked around and searched a bunch for an answer but can't find one. I have checked all the settings in my Admin CP and nothing.
Is there a way to list games in different categories but still have them all listed in a "All" category at the same time? I would like all the games show up under the categories, not just the ones listed in the category I have set for default. I'm probably overlooking something. That is usually what my problem is. |
#58
|
||||
|
||||
I don't think there is any option like this ..
|
#59
|
|||
|
|||
We are getting a weird issue our bars are not showing up any advice?
http://immortal-guild.net/arcade.php |
#60
|
||||
|
||||
your ARCADE.css is missing the tcat for some reason..
if you had edited restore it .. if for some reason that don't work.. open up your skin_arcade.php and with your editor search and replace all the tcat with blockhead.. there are tons so if you have the option to replace all.. use it |
#61
|
|||
|
|||
tried the replace with blockhead is failed and tcat is the addition.css
Code:
.tborder { background-color:{vb:stylevar doc_backgroundColor}; border: 1px solid #c4c4c4; font-size: {vb:stylevar font-size}; } .tcat { font:{vb:stylevar blockhead_font}; color:{vb:stylevar blockhead_color}; background:{vb:stylevar blockhead_background}; padding:{vb:stylevar blockhead_padding}; border:{vb:stylevar blockhead_border}; -moz-border-radius-top{vb:stylevar right}: {vb:stylevar border_radius}; -moz-border-radius-top{vb:stylevar left}: {vb:stylevar border_radius}; -webkit-border-top-{vb:stylevar right}-radius: {vb:stylevar border_radius}; -webkit-border-top-{vb:stylevar left}-radius: {vb:stylevar border_radius}; } .tcat a:link, .tcat_alink { color: #ffffff; text-decoration: none; } .tcat a:visited, .tcat_avisited { color: #ffffff; text-decoration: none; } .tcat a:hover, .tcat a:active, .tcat_ahover { color: #FFFF66; text-decoration: underline; } .alt1, .alt1Active { background: #F5F5FF; color: #000000; } .alt2, .alt2Active { background: #E1E4F2; color: #000000; } /* ***** small padding on 'thead' elements ***** */ td.thead, th.thead, div.thead { padding: 4px; } /* ***** basic styles for multi-page nav elements */ .pagenav a { text-decoration: none; } .pagenav td { padding: 2px 4px 2px 4px; } .tcat .shade, .thead .shade, .tfoot .shade { color: #DDDDDD; } /* ***** define margin and font-size for elements inside panels ***** */ .fieldset { padding: 5px; font-size: {vb:stylevar font-size}; border: 1px solid #c4c4c4; margin: 0 2px; } .fieldset, .fieldset td, .fieldset p, .fieldset li { font-size: 11px; } |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|