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)

jamie 03-31-2004 04:10 PM

Quote:

Originally Posted by Giveit2u43
I'll be releasing the hack to do this next week once I have time to actually work out all the changes I made ;)

cool, sounds good :)

Oblivion Knight 03-31-2004 11:47 PM

Any word on when the HTL release is coming?

Congrats on v3 Arcade's success John :)

John 03-31-2004 11:55 PM

Kura should be working on it, apparently. (The HTL installer.)

Oblivion Knight 04-01-2004 11:06 AM

I believe Kura has a few personal problems at the moment, so it could be quite a wait..

For now, if anyone wants to add the Arcade AdminCP options to the Hack Menu, they can do this:

In admincp/index.php, find the 2nd instance of:
Code:

                build_hacknavs();
Add below:
Code:

        construct_nav_option("General Settings", 'arcadeadmin.php?do=general', '<br />');
        construct_nav_option("Game Settings", 'arcadeadmin.php?do=games', '<br />');
        construct_nav_option("Score Settings", 'arcadeadmin.php?do=scores', '<br />');
        construct_nav_option("Challenges", 'arcadeadmin.php?do=challenges', '<br />');
        construct_nav_group("Arcade", '<hr />');

All done :)

SK 04-01-2004 12:22 PM

Im having a problem where Latest Arcade Score isnt showing?

BarHopper 04-01-2004 06:22 PM

I've got my Arcade finally working. But, its added the templates, to one of my styles. But not the other two. What do you suggest? As i dont fancy copying them all over by hand really.

EDIT: Fixed it, i had to change the other styles to default, then run the install.

ConqSoft 04-01-2004 06:25 PM

Quote:

Originally Posted by BarHopper
I've got my Arcade finally working. But, its added the templates, to one of my styles. But not the other two. What do you suggest? As i dont fancy copying them all over by hand really.

Set your default style to your main Parent Style, then run the installer. Then the templates will trickle down to all Child styles.

BarHopper 04-01-2004 06:41 PM

^ lol. Just edited my post. Thanks though

BarHopper 04-01-2004 06:49 PM

<a href="http://www.game-realms.net/vb/member.php?userid=8" target="_blank">http://www.game-realms.net/vb/member.php?userid=8</a>

Seems, i've made an error in the file edit. How do i fix this? I'm no good at coding

Owen 04-01-2004 06:50 PM

I think recently there was a hack that can do it.

ConqSoft 04-01-2004 06:50 PM

Quote:

Originally Posted by BarHopper
http://www.game-realms.net/vb/member.php?userid=8

Seems, i've made an error in the file edit. How do i fix this? I'm no good at coding

Just go back through and carefully check all the changes you made...

Zoints 04-02-2004 05:29 AM

Is there a way to remove a single score on the highscore list? I have someone who cheated whose score I would like to remove. Maybe a query or somthing? I searched the thread and didn't see an answer.

Thank you kindly for any help.

OGT 04-02-2004 04:44 PM

Quote:

Originally Posted by thegunowner149
Is there a way to remove a single score on the highscore list? I have someone who cheated whose score I would like to remove. Maybe a query or somthing? I searched the thread and didn't see an answer.

Thank you kindly for any help.

theres a red X next to the users comment area. that will delete the score

chip_k 04-02-2004 08:48 PM

:devious: Great job thanks for all the hardwork & headaches you guy put up with.......

I have 52 total games on my site

ph03nIX 04-03-2004 02:34 AM

Hello! Great job on this hack. Only one problem. I installed everything just fine but when I go into a game there is just a white screen where the flash game is suppose to be (see attachment)

I have tried it on a couple of browsers and it still doesn't work.
Any idea how I might be able to fix it?

Thank you!

pwfans 04-03-2004 04:24 AM

Quote:

Originally Posted by ph03nIX
Hello! Great job on this hack. Only one problem. I installed everything just fine but when I go into a game there is just a white screen where the flash game is suppose to be (see attachment)

I have tried it on a couple of browsers and it still doesn't work.
Any idea how I might be able to fix it?

Thank you!

are you sure you uploaded the game file?

anabolicedge 04-03-2004 05:20 AM

anyone else having problems downloading the zip file... this is the error msg i'm getting

Unexpected end of archive...

doesnt seem to be downloading the entire zip file. This is just happening for this hack, i can download other hacks just fine?!?!

kr?mel 04-03-2004 10:32 AM

great hack...
but vb3arcade not Netscape Compatibility :(

John 04-03-2004 10:34 AM

Quote:

Originally Posted by kr?mel
great hack...
but vb3arcade not Netscape Compatibility :(

Yes, it is. Unless you're talking about Netscape 4.xx, or some other ridiculous browser.

kr?mel 04-03-2004 10:41 AM

I using Netscape 7.02 - The newest version does not function with me

John 04-03-2004 10:42 AM

Works for me.

BarBeQue 04-03-2004 12:02 PM

what's netscape







;)

msimplay 04-03-2004 12:11 PM

Quote:

Originally Posted by John
Works for me.

works for me too :p

try installing the flash plugin if you don't have it already for netscape

Evilboy 04-03-2004 02:32 PM

best hack for vb 3 ;)

ChuanSE 04-03-2004 04:01 PM

Quote:

Originally Posted by Evilboy
best hack for vb 3 ;)

I agree, this should be the hack of the year :D

ChuanSE 04-03-2004 04:12 PM

Quote:

Originally Posted by Giveit2u43
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 :)


This did order them from A to Z instead of Z to A, but they are still on one page :(

Any idea's?

djohn 04-03-2004 04:19 PM

Quote:

Originally Posted by ChuanSE
This did order them from A to Z instead of Z to A, but they are still on one page :(

Any idea's?

Have exactly the same problem, exept for the nav bar that's supposed to show up simply doesn't. I've sent a pm to Giveit2u43, he'll try to figure out what the problem is.

msimplay 04-03-2004 04:33 PM

Quote:

Originally Posted by djohn
Have exactly the same problem, exept for the nav bar that's supposed to show up simply doesn't. I've sent a pm to Giveit2u43, he'll try to figure out what the problem is.

i tried that code when it first came out it didn't work in the way it was supposed to thats why i asked again for pagination :o

Azhrialilu 04-03-2004 04:51 PM

Phew. just read all 128 pages... saw the error I'm having mentioned a few times, but not seen any solution :D.... but after reading all that, is it any wonder if I missed it.. soooooooo.... the mini hack to put the games 12 per page... we've installed it on our forums, we can play the games on page one, but everyone gets a permission error on every other page.

Just point me in the direction of the solution post..as I just can't find it LOL

Thanx guys

msimplay 04-03-2004 04:53 PM

Quote:

Originally Posted by Azhrialilu
Phew. just read all 128 pages... saw the error I'm having mentioned a few times, but not seen any solution :D.... but after reading all that, is it any wonder if I missed it.. soooooooo.... the mini hack to put the games 12 per page... we've installed it on our forums, we can play the games on page one, but everyone gets a permission error on every other page.

Just point me in the direction of the solution post..as I just can't find it LOL

Thanx guys

there is no solution yet we all waiting on it

ph03nIX 04-03-2004 06:16 PM

Quote:

Originally Posted by pwfans
are you sure you uploaded the game file?

Yes, I uploaded all of the files where it told be to excluding the Extras.

Any help would be appreciated :)

EDIT: I do believe I have fixed it now. It seems I didn't upload the games folder. I swear that I did but...meh...I guess I didn?t. :ermm:

Azhrialilu 04-03-2004 06:38 PM

Quote:

Originally Posted by msimplay
there is no solution yet we all waiting on it

ahhh.. that would be why I couldn't see it then :rolleyes:

Thanx *grin*

Tim Wheatley 04-04-2004 05:58 PM

Quote:

Originally Posted by kr?mel
I using Netscape 7.02 - The newest version does not function with me

Works here too, NS7.

By the way, thanks for fixing Seal Bounce guys. :)

VinhVinh 04-04-2004 06:40 PM

Anyone tried to download the hack? it isnt working for me. Downloaded it 2 times, get a error message of "Unexpected end of archive" and only shows 2 files. Corrupted download file?

*arie 04-04-2004 06:46 PM

Quote:

Originally Posted by VinhVinh
Anyone tried to download the hack? it isnt working for me. Downloaded it 2 times, get a error message of "Unexpected end of archive" and only shows 2 files. Corrupted download file?

same here. *sigh :ermm:

anabolicedge 04-04-2004 06:47 PM

Quote:

Originally Posted by *arie
same here. *sigh :ermm:

ditto

ph03nIX 04-04-2004 07:09 PM

Yes, me too but it is with a couple of the games I downloaded, not the arcade itself. The games are Seal bounce and Hexxagon...

EDIT: Maeda Path doesn't work either, I get the same "zip file is corrupted" error.

moSSad 04-04-2004 07:35 PM

Quote:

Originally Posted by John
New game: Pacman
with thanks to Paul Neave, for providing the source. :)

Installation
To install Pacman, upload the following files to your forum:
pacman1.gif -> /images/arcade/pacman1.gif
pacman2.gif -> /images/arcade/pacman2.gif
pacman.swf -> /games/pacman.swf
pacman.game.php -> /admincp/pacman.game.php

Point your browser to /admincp/pacman.game.php. (E.g. http://www.yourforums.com/forum/admincp/pacman.game.php).
Don't forget to delete the script once you're finished!

The pacman archive seems broken, I don't find files like pacman.swf or pacman.game.php.

ChuanSE 04-04-2004 07:50 PM

- Attachments Corrupted ? - in the Site Feedback forum of vBulletin.org Forum.

This thread is located at: https://vborg.vbsupport.ru/showthrea...6&goto=newpost

You can DL the games here tho http://www.v3arcade.com

VinhVinh 04-04-2004 08:16 PM

Can anyone host the arcade install files soemwhere please for the ones who cant download it :(


All times are GMT. The time now is 05:05 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.10142 seconds
  • Memory Usage 1,848KB
  • 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
  • (8)bbcode_code_printable
  • (18)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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