vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   v3 Arcade - Games Arcade & Challenge System [vB 3.0.3] (https://vborg.vbsupport.ru/showthread.php?t=60377)

ConqSoft 03-25-2004 02:08 PM

Quote:

Originally Posted by Ogmuk
I had the same problem and had to figure out that you should edit your phpinclude_start and phpinclude_end templates and alter it this way:

Code:

if (THIS_SCRIPT != 'arcade')
{
<insert content of template here>
}


Yes, that does work for me too, but that defeats the purpose of having the arcade integrated into vBulletin IMO. (If I can't use any includes for my common header/footer.)

I removed all banner ad code from my header/footer also, and that didn't work. So, it seems to be just the act of requiring these files that is causing the problem.

Anyone have any ideas how to fix it?

Anub1s 03-25-2004 02:38 PM

how can i edit templates???

if im using the default skin of VB 3.0.0?

trainer 03-25-2004 02:57 PM

don't know if this has been addressed or not, thread is just so big!

some games give non-permission when the game ends, i think when the transfer data takes place. the thing is the new high scores do register

anyone else have this issue? is there a fix?

Neal-UK 03-25-2004 04:15 PM

I have a member on my forum who says that his scores do not register. Everyone else doesn't seem to be having problems, and when I checked his account and tried the games it worked.

I take it this has something to do with his computer? Anyone got any ideas?

xmorpher 03-25-2004 05:16 PM

ADDING GAME CATEGORIES

just some ideas & suggestions to adding categories to v3 arcade


i know programming but i have not worked with PHP or Mysql
so i just post the ideas,.. if anybody can make an addon or finds these
ideas usefull.... great ;)

You may add a third arcade table to database called: "game_categories"
which stores:
category_id (an unique number)
category_name (to Customize Category titles)
category_description (idem)
category_logo (category's thumbnail or logo)
category_split (number of games to show per page before split in sepparated pages)
category_showmode ( Expanded , Normal, Compact Mode) *i'll explain this later
category_active (true/false)
category_extra (in case you need it in the future)

i noticed one field in the database table "games" called " gamesettings
that is set to "29" in all games...

i don't know if this Var is really used,
but if not,.... maybe it can store a "category_id" like: Sports, Classics, General, etc
then the arcade.php can filter games by "category_id"
using the "game_categories" data
(showing only the games where category_id are equal to "Sports" etc)

In the arcade main page, if no "category_id" is parsed,
you can use a template to show all the categories availables,
showing: Category_Name, description, logo,
and show the first 5/10/x game thumbnails & link of each category....

I hope this ideas are usefull to somebody :rolleyes:

* about the category_showmode ... if the game list keeps growing,
maybe well need to save space... and we can use a "show_mode":
Expanded: the actual mode of display games.
Normal: Display the Description of the game in the "ALT" tag of the image
to save some space...
Compact: show the Little thumbnails (game_name2.gif) with description in the "ALT" tag

Anub1s 03-25-2004 05:42 PM

Quote:

Originally Posted by corsacrazy
i just answered in post #1743

yes, all the usergroups have the permision assigned via ACP

but still i get the error :(

no matter if im administrator, smode,mode,user

i get the error

Giveit2u43 03-25-2004 07:05 PM

a mini hack to split the arcade into multiple pages..

first find:
Code:

        // Query to get the other data for the high scores
        $result_topscore2 = $DB_site->query("
                SELECT gamesessions.*, user.username, user.userid, games.*, games.title AS title FROM " . TABLE_PREFIX . "gamesessions AS gamesessions
                LEFT JOIN " . TABLE_PREFIX . "user AS user ON user.userid = gamesessions.userid
                LEFT JOIN " . TABLE_PREFIX . "games AS games ON gamesessions.gamename = games.shortname
                $whereclause AND $sessionclause ORDER BY gamesessions.gamename DESC
        ");

and change it to:
Code:

        // Query to get the other data for the high scores
        $result_topscore2 = $DB_site->query("
                SELECT gamesessions.*, user.username, user.userid, games.*, games.title AS title FROM " . TABLE_PREFIX . "gamesessions AS gamesessions
                LEFT JOIN " . TABLE_PREFIX . "user AS user ON user.userid = gamesessions.userid
                LEFT JOIN " . TABLE_PREFIX . "games AS games ON gamesessions.gamename = games.shortname
                $whereclause AND $sessionclause ORDER BY gamesessions.gamename ASC
        ");

now find:
Code:

        // creates a $gamesettings array, usage $gamesettings[gamename]
        $result_gamesettings = $DB_site->query("SELECT gameid, shortname, gamesettings FROM " . TABLE_PREFIX . "games");
        while ($gameset = $DB_site->fetch_array($result_gamesettings)) {
                $gamesettings[$gameset[shortname]] = convert_bits_to_array($gameset[gamesettings],$_GAMESCHECK);
        }
        $DB_site->free_result($result_gamesettings);

and change it to:
Code:

        $pagenumber = $_REQUEST['page'];
        if ($pagenumber == "") $pagenumber=1;
        $page_start=($pagenumber-1)*12;

        // creates a $gamesettings array, usage $gamesettings[gamename]
        $result_gamesettings = $DB_site->query("SELECT gameid, shortname, title, gamesettings FROM " . TABLE_PREFIX . "games ORDER BY shortname ASC LIMIT $page_start,12");
        while ($gameset = $DB_site->fetch_array($result_gamesettings)) {
                $gamesettings[$gameset[shortname]] = convert_bits_to_array($gameset[gamesettings],$_GAMESCHECK);
        }
        $DB_site->free_result($result_gamesettings);

        $result= $DB_site->query_first("SELECT COUNT(games.gameid) AS gcount FROM ". TABLE_PREFIX ."games AS games ORDER BY shortname ASC");

        $totalpages=ceil(($result[gcount])/12);
        $perpage=1;

          $pagenav = construct_page_nav($totalpages, "arcade.php?$session[sessionurl]");

you now need to edit the arcade_main template.

find:
Code:

<!-- /games -->
and below add:
Code:

<div style="float:right;">$pagenav</div>
Finished.. Enjoy :)

Anub1s 03-25-2004 09:37 PM

0k i solve the problems by myself

trainer 03-25-2004 11:56 PM

Quote:

Originally Posted by Anub1s
0k i solve the problems by myself


what was the solution because i think i have the same problem ?

KevinSHOCK 03-26-2004 12:57 AM

I'm having a slight problem with this arcade, and this thread is way to huge to go thread and read all the posts. I read to about page 10 and stopped. lol.

Ok everything works great with this arcade, except that the awards for arcades dont show up in the postbit on any of the styles, and yes I have it switched on to display them. I edited the templates with the proper codes but it doesn't show up. Also the link to challenge user's that is displayed in postbit when you click on there name doesn't show up, even though I have modded it in. I really want these to show up and work.

So can someone please help, thanks.


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

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.06929 seconds
  • Memory Usage 1,757KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (7)bbcode_code_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (6)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete