vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Add-On Releases - v3 Arcade - Games Arcade System for 3.6.0 (https://vborg.vbsupport.ru/showthread.php?t=114012)

Geo77 02-28-2006 12:29 AM

I thought I got everything installed OK, but this is all I get:
http://www.pherolibrary.com/forum/arcade.php

Any ideas?

TIA,
Geo

ThePimp 02-28-2006 06:12 AM

There are no more games to import.

Anyone have a fix for this?

All games are in the proper locations w/ images. Permissions are all 777 on the various folders. Import doesn't work. Something like 100 games in there. Not working.

This was a first install, no previous version.

Geo77 02-28-2006 01:53 PM

OK, got it fixed. It was the old templates from a previous installation that caused the problem.

hotwheels 02-28-2006 11:55 PM

anyway that the 590 game file can be changed to an actual zip file, instead of .rar ?

mkdevo 03-01-2006 11:37 AM

Quote:

Originally Posted by hotwheels
anyway that the 590 game file can be changed to an actual zip file, instead of .rar ?

get winrar:

http://www.rarlab.com

Christie189 03-01-2006 07:13 PM

Nothing that big, but... The News & Events section doesn't seem to be changing when I add a new game, or someone is a new champion. Everything else is up and running. Anyway I can fix this? Thanks!

creedmaniac 03-01-2006 09:18 PM

am i blind...how do i challenge someone?

Eriond 03-02-2006 02:59 PM

is there any way to make it so that my members have to pay to use the arcade? i have been getting a lot of people registering then not posting but just playing the arcade games...i have set a post count minimum but all that does is have my board spammed to the post count then they stop posting again, if there was a way for the arcade games to cost with the ebux store it would make the people post so they can play the games

Gizmo5h1t3 03-02-2006 03:08 PM

Quote:

Originally Posted by Eriond
is there any way to make it so that my members have to pay to use the arcade? i have been getting a lot of people registering then not posting but just playing the arcade games...i have set a post count minimum but all that does is have my board spammed to the post count then they stop posting again, if there was a way for the arcade games to cost with the ebux store it would make the people post so they can play the games

if you read back a couple of pages, theres a few references to this.
apparentley, theres going to be an update to the arcade hack on march 12th, and then theres going to be integration with ebux...pay per play.....

Eriond 03-02-2006 03:11 PM

ok thanks :) i wasnt the admin who installed this so havent been following it and 86 pages is a bit long to check will keep an eye out for march

Christie189 03-02-2006 03:26 PM

Quote:

am i blind...how do i challenge someone?
If you're blind, so am I. I see the options in the USER CP, but I have no idea how to go about actually challenging someone.

Eriond 03-02-2006 03:56 PM

if the user has set their arcade options to allow challenges then you can challenge the the member by clicking on their trophy there should then be the challenge option

S@NL - BlackBik 03-02-2006 07:45 PM

I got a database error when opening a games highscores while no one has yet played that game. So there were no highscores to show.
I found a solution though:

in arcade.php find:
Code:

        if ($vbulletin->options['distinctscores'])
        {
                $scorecache = array();
                while ($score = $db->fetch_array($scores))
                {
                        $scorecache[] = "(arcade_sessions.score='$score[score]' AND arcade_sessions.userid=$score[userid])";
                }
                        $scorecache = implode(' OR ', $scorecache);
                        $scores = $db->query_read("SELECT arcade_sessions.*, user.username, user.email FROM " . TABLE_PREFIX . "arcade_sessions AS arcade_sessions
                    LEFT JOIN " . TABLE_PREFIX . "user AS user ON (user.userid=arcade_sessions.userid)
                    WHERE arcade_sessions.valid=1 AND arcade_sessions.gameid=$game[gameid] AND ($scorecache)
                    ORDER BY score " . iif($game['isreverse']==1, 'ASC', 'DESC') . ", arcade_sessions.finish DESC
                LIMIT " . $vbulletin->options['scoresperpage']);
        }

and replace by
Code:

        if ($vbulletin->options['distinctscores'])
        {
                $scorecache = array();
                while ($score = $db->fetch_array($scores))
                {
                        $scorecache[] = "(arcade_sessions.score='$score[score]' AND arcade_sessions.userid=$score[userid])";
                }
                        $scorecache = implode(' OR ', $scorecache);
                if (!empty($scorecache))                       
                {

                        $scores = $db->query_read("SELECT arcade_sessions.*, user.username, user.email FROM " . TABLE_PREFIX . "arcade_sessions AS arcade_sessions
                    LEFT JOIN " . TABLE_PREFIX . "user AS user ON (user.userid=arcade_sessions.userid)
                    WHERE arcade_sessions.valid=1 AND arcade_sessions.gameid=$game[gameid] AND ($scorecache)
                    ORDER BY score " . iif($game['isreverse']==1, 'ASC', 'DESC') . ", arcade_sessions.finish DESC
                LIMIT " . $vbulletin->options['scoresperpage']);
                }       
        }


Tralala 03-02-2006 11:40 PM

Quote:

Originally Posted by S@NL - BlackBik
I got a database error when opening a games highscores while no one has yet played that game. So there were no highscores to show.

That's weird, on my Arcade, when a game has yet to be played (and has no high scores) there is no "highscores" to click!

Instead it says:

Want this?
<lil pic of trophy>
Play now!

So not sure what the discrepancy would be... are you running the latest version?

S@NL - BlackBik 03-03-2006 06:55 AM

That's true, the link isn't on the frontpage of the Arcade or in the catagories.
But when you open a game to play, there is always a link on the right to the scorepage, just above the "use your backbutton tip".

Tralala 03-03-2006 07:01 AM

Quote:

Originally Posted by S@NL - BlackBik
That's true, the link isn't on the frontpage of the Arcade or in the catagories.
But when you open a game to play, there is always a link on the right to the scorepage, just above the "use your backbutton top".


Still, when I click that, I don't get an error, I get an empty highscore list, that says: "No Scores Recorded"

S@NL - BlackBik 03-03-2006 07:38 AM

I didn't ;)

Floris 03-03-2006 05:32 PM

Installed on omgboards.com network! thanks so much :) I hope a lot of my members will have great fun using it :)

Gizmo5h1t3 03-03-2006 07:07 PM

Quote:

Originally Posted by Floris
Installed on omgboards.com network! thanks so much :) I hope a lot of my members will have great fun using it :)

rofl @ the subliminal advertising ther...like it m8

Tralala 03-03-2006 07:24 PM

Quote:

Originally Posted by Gizmo5h1t3
rofl @ the subliminal advertising ther..


Huh? :confused:

Edward S 03-04-2006 01:17 AM

Even with the PLUG-IN system, this baby just wouldn't uninstall.. I wound up manually adding and changing and running the uninstall (from Plugin) over and over again... Finally got it removed from my system.

The reason for the CREATE TABLE statements in the code below is that the uninstaller would drop those tables before erroring out on the "drop arcadepermissions" statements... So that when I put the data in (using the ALTER TABLE statement).. the uninstaller would then croak on a "Table not found" error.. So, as I then had to go back and put the table back in, round and round and round she went... Finally got the right sequence and the uninstaller removed (safely I hope) what it wanted and finished completely..
All I can say is WHAT A MESS! - Here's the SQL statements I had to put in pieces at a time as I ran the uninstaller...

Code:

ALTER TABLE usergroup ADD arcadepermissions INT( 10 ) UNSIGNED NOT NULL;
ALTER TABLE user ADD arcadeoptions INT( 10 ) UNSIGNED NOT NULL;
ALTER TABLE user ADD challengecache INT( 10 ) UNSIGNED NOT NULL;

CREATE TABLE arcade_categories (
  categoryid int(10) unsigned NOT NULL auto_increment,
  catname varchar(250) NOT NULL default '',
  displayorder int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (categoryid)
);

INSERT INTO arcade_categories VALUES (7,'Puzzle',1),(8,'Action',2),(3,'Retro',3),(4,'Sport',4),(5,'Shooters',5),(1,'Other',100),(2,'Favorites',101);

CREATE TABLE arcade_games (
  gameid int(11) unsigned NOT NULL auto_increment,
  shortname varchar(100) NOT NULL default '',
  title varchar(100) NOT NULL default '',
  description text NOT NULL,
  file varchar(100) NOT NULL default '',
  width smallint(4) unsigned NOT NULL default '550',
  height smallint(4) unsigned NOT NULL default '400',
  miniimage varchar(100) NOT NULL default '',
  stdimage varchar(100) NOT NULL default '',
  gamepermissions int(10) unsigned NOT NULL default '7',
  highscorerid int(10) unsigned NOT NULL default '0',
  highscore int(50) unsigned NOT NULL default '0',
  gamehash varchar(50) NOT NULL default '',
  categoryid int(10) unsigned NOT NULL default '1',
  timesplayed int(10) unsigned NOT NULL default '0',
  dateadded int(10) unsigned NOT NULL default '0',
  system tinyint(1) unsigned NOT NULL default '0',
  votepoints int(3) unsigned NOT NULL default '0',
  votecount int(6) unsigned NOT NULL default '0',
  sessioncount int(10) unsigned NOT NULL default '0',
  minpoststotal int(10) unsigned NOT NULL default '0',
  minpostsperday int(10) unsigned NOT NULL default '0',
  minreglength int(10) unsigned NOT NULL default '0',
  minrep int(10) NOT NULL default '0',
  PRIMARY KEY  (gameid)
);

INSERT INTO arcade_games VALUES (1,'snake','Snake','The mobile phone classic, \"Snake\" can now be played on your PC! Save your phone battery and play to get a high score on the leaderboard','snake.swf',360,300,'snake2.gif','snake1.gif',7,0,0,'',1,0,0,0,0,0,0,0,0,0,0),(2,'spaceinvaders','Space Invaders','Space Invaders is that game that started it all. Battle against aliens in a desperate attempt to save earth from total destruction.','spaceinvaders.swf',550,400,'spaceinvaders2.gif','spaceinvaders1.gif',7,0,0,'',1,0,0,0,0,0,0,0,0,0,0),(7,'asteroids','Asteroids','The arcade classic returns! Blast your way through asteroids and the occasional flying saucer to hit the top of the leaderboard.','asteroids.swf',500,375,'asteroids2.gif','asteroids1.gif',7,0,0,'',1,0,0,0,0,0,0,0,0,0,0),(5,'chopper','Chopper Challenge','Flying a helicopter through an obstacle course... Sounds dull? It\'s harder than it looks!','chopper.swf',400,300,'chopper2.gif','chopper1.gif',7,0,0,'',1,0,0,0,0,0,0,0,0,0,0),(6,'tetris','Tetris','A classic puzzle game that will keep you entertained for hours.','tetris.swf',382,380,'tetris2.gif','tetris1.gif',7,0,0,'',1,0,0,0,0,0,0,0,0,0,0);

ALTER TABLE arcade_games ADD isreverse INT( 10 ) UNSIGNED NOT NULL;

CREATE TABLE arcade_news (
  newsid int(10) unsigned NOT NULL auto_increment,
  newstext mediumtext NOT NULL,
  newstype varchar(20) NOT NULL default '',
  datestamp int(13) unsigned NOT NULL default '0',
  PRIMARY KEY  (newsid)
);

INSERT INTO arcade_news VALUES (1,'Arcade Installation Complete','auto', " . TIMENOW . ");

CREATE TABLE arcade_sessions (
  sessionid int(10) unsigned NOT NULL auto_increment,
  gameid int(10) unsigned NOT NULL default '0',
  gamename varchar(20) NOT NULL default '',
  userid int(7) unsigned NOT NULL default '0',
  start int(10) unsigned NOT NULL default '0',
  finish int(10) unsigned NOT NULL default '0',
  ping float(7,2) unsigned NOT NULL default '0.00',
  comment varchar(200) NOT NULL default '',
  valid tinyint(1) unsigned NOT NULL default '0',
  score int(50) unsigned NOT NULL default '0',
  sessiontype tinyint(1) unsigned NOT NULL default '1',
  challengeid int(15) unsigned NOT NULL default '0',
  PRIMARY KEY  (sessionid)
);

CREATE TABLE arcade_challenges (
  challengeid int(10) unsigned NOT NULL auto_increment,
  fromuserid int(10) unsigned NOT NULL default '0',
  touserid int(10) unsigned NOT NULL default '0',
  winnerid int(10) unsigned NOT NULL default '0',
  loserid int(10) unsigned NOT NULL default '0',
  gameid int(10) unsigned NOT NULL default '0',
  datestamp int(10) unsigned NOT NULL default '0',
  fromsessionid int(10) unsigned NOT NULL default '0',
  tosessionid int(10) unsigned NOT NULL default '0',
  fromscore float(15,3) unsigned NOT NULL default '0.000',
  toscore float(15,3) unsigned NOT NULL default '0.000',
  status tinyint(1) unsigned NOT NULL default '0',
  PRIMARY KEY  (challengeid)
);

CREATE TABLE arcade_ratings (
  ratingid int(10) unsigned NOT NULL auto_increment,
  gameid int(10) unsigned NOT NULL default '0',
  userid int(10) unsigned NOT NULL default '0',
  rating int(10) unsigned NOT NULL default '0',
  PRIMARY KEY (ratingid)
);

Why is it authors only worry about PUTTING the stuff into your database and really spend little time helping you remove it safely and properly?...

coachjohns 03-04-2006 05:09 AM

I get this error when I click on the Arcade in the navbar

error 404: File not found


The document you requested is not found.

What do I do to fix it?

Neo_obs 03-06-2006 03:31 AM

is it possible to hide the navbar link from users who are not allowed to use the arcade?

CongTuDepTrai 03-06-2006 04:36 PM

thanks a lot

burratha 03-08-2006 06:46 AM

Quote:

Originally Posted by Neo_obs
is it possible to hide the navbar link from users who are not allowed to use the arcade?

ditto here, please. This is a long thread and if this can be answered without me having to pick through 87 pages I'd appreciate it.

Thanks in advance.

SH

blablablabla 03-08-2006 11:45 AM

installed a arcade V3 hack but i wanted to uninstall it... so i deleted all the changes i did in the templates and when i was gonna uninstall the plugin itself this msg showed up

it shows up when i try to read threads too

Database error in vBulletin 3.5.4:

Invalid SQL:
SELECT title,highscorerid,highscore,miniimage,gameid FROM amy_forumarcade_games WHERE highscorerid IS NOT NULL AND (gamepermissions & 2);

MySQL Error : Table 'amydiamond_org.amy_forumarcade_games' doesn't exist
Error Number : 1146
Date : Wednesday, March 8th 2006 @ 02:19:08 PM
Script : http://amydiamond.org/forum/showthread.php?t=5
Referrer : http://amydiamond.org/forum/forumdisplay.php?f=24
IP Address : 84.48.41.223
Username : Diamond
Classname : vb_database

Treak 03-08-2006 07:38 PM

i installled this and i keep getting the i do not have access to this and im the admin lol it also doesn't show up in my admin cp panel... but it shows up n the manage products thing.. any ideas..

LuceGoo 03-08-2006 08:26 PM

Is there a way of disabling the autopm people receive when someone beats your score?

MrZeropage 03-08-2006 09:24 PM

@Treak:
Did you upload the content of the /includes-Folder ?

@LuceGoo:
in v2.5.4+ each user can adjust the notification-settings in his Arcade-Settings
in the upcoming v2.5.5+ there is a global switch in AdminCP ;)

duplu 03-08-2006 09:37 PM

Quote:

Originally Posted by MrZeropage
@Treak:
Did you upload the content of the /includes-Folder ?

@LuceGoo:
in v2.5.4+ each user can adjust the notification-settings in his Arcade-Settings
in the upcoming v2.5.5+ there is a global switch in AdminCP ;)


Oops wrong arcade Mr Zeropage!

@Treak - ensure you go into the usergroups in your admincp and update the settings so each usergroup can see and play the arcade. Yes, this even applies to admins

trinigamers 03-08-2006 11:13 PM

thanks!

Oddjob 03-11-2006 03:36 AM

How would it be possible to display automatically how many arcade titles you have.....in the postbit.

rewardhits 03-11-2006 08:58 PM

Hi, this is a great hack. However, I am having trouble of finding enough games that are compatible with v3arcade for vb 3.5.4, can anyone shed some light to this? I would be willing to pay some fee to have someone to put as many games as possible on my site with proper organization.

I have also asked John about this and I hope to get an answer soon.

my site is: http://rewardhits.com/forum

you can find me at: teknorhino@yahoo.com
also Yahoo IM: teknorhino

thanks much,
Frank

Joey805 03-11-2006 11:06 PM

I can't see to find this in 80 pages of posts but it's probably mentioned here. When ever I click on my Active users link on the front page of my forum, and members are in the arcade, my header becomes message up because there is some additional code up there, like this: arcade.php

Can anyone help me out with this?

vol_freak 03-12-2006 04:34 AM

Quote:

Originally Posted by ThePimp
There are no more games to import.

Anyone have a fix for this?

All games are in the proper locations w/ images. Permissions are all 777 on the various folders. Import doesn't work. Something like 100 games in there. Not working.

This was a first install, no previous version.

Did you ever figure this out? I just installed the arcade (new install) and it shows up fine but no games are listed in the arcade or in the admin panel. I can see the default games in the folder but they are not loaded. I have triple checked my permissions.

**edit--it seems to just be a problem with the default games not showing up in my case. I am able to install other new games fine.

Gizmo5h1t3 03-12-2006 11:15 AM

today is the release of the new version then???

WoodiE 03-12-2006 12:27 PM

Quote:

Originally Posted by WoodiE
I've posted this on the v3 Arcade forum's and didn't get a reply so I'm hoping I'll have a better chance here.

I'm trying to add more games to the arcade and no matter what I do I keep getting this error:

Fatal error: Call to a member function on a non-object in /home/rcnitro/public_html/forum/rootcp/arcadeadmin.php on line 592


Does anyone know of a fix for this?


-Michael




Has the developer for this program stopped supporting it? I've asked the above question on his forum and here and still haven't received a reply back from anyone. I've done a quick search on his forum for "arcadeadmin.php on line 592" and the first 3-4 threads are having the same problem with either no help and one without a single reply.


If he has stopped supporting it does anyone know of a better alternative?




-Michael

Mario.D 03-12-2006 01:20 PM

Quote:

Originally Posted by Gizmo5h1t3
today is the release of the new version then???

John changed the date "Moved to 13th to fall on a week day"

Gizmo5h1t3 03-12-2006 01:43 PM

rofl, when everyone is back at work?

must be some logic in that somewhere, i just cant see it....lmao

MorrisMcD 03-12-2006 01:51 PM

Oh.. Comeon John! Get it out today!!! :D

Cant wait.. :banana:


All times are GMT. The time now is 08:38 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.03584 seconds
  • Memory Usage 1,855KB
  • 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
  • (3)bbcode_code_printable
  • (12)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)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