![]() |
thanks, trying it now
|
does anyone have the Tetris.swf file extracted? for some reason I can't pull it out of the zip file...
any help is appreciated. |
Quote:
|
i get this same problem in the cp when I try to change options :(
|
I don't think this pass hack is compatible with version 2 of the arcade itself guys.
I would go to the database and make changes there. It's very easy and self explanatory when you brows through the queries. |
PHP Code:
|
Beta 2 is not compatible and I haven't had time to make it compatible. Just hold on....
|
everything works with beta 2 besides for the admin section
|
link can you please make this capatible for for beta 2
|
this is a cool hack, should get my users off the arcade and posting more ^_^
|
ah man, no one zipped the templates for tbs easy installation, i might have to do it
/clicks install |
the templates for you guys and gals
|
I had no problems at all getting this to work with beta2. The store.php changes remain the same.
Here are the differences I found: In proarcade.php, instead of this: PHP Code:
PHP Code:
In proarcadeadmin.php find this: PHP Code:
PHP Code:
PHP Code:
PHP Code:
PHP Code:
PHP Code:
|
Anyway to make this same hack work with the ITEMSHOP points system? To allow people to play the arcade only when enough posting points is acquired?
|
what query do a need to run to reset the highscores?
|
@Colon - It should be simple enough to edit it work with the itemshop. I'll boot up Apache and work on it for you. :)
@Opie - [sql]DELETE FROM arcadescores; DELETE FROM arcadetopscores;[/sql] |
I don't have those tables Link.
|
Those are Beta 2 tables so I guess you're using Beta 1. In that case...
[sql]DELETE FROM arcade;[/sql] |
thanks
|
Is there a way to make each game cost different?
Example: Breakout 0 Pacman 0 Snake 0 Simon Says 5 Space Invaders 5 Tetris 5 Plasma 10 Worn 10 Hexxagon 10 EDIT: nvm i found it in the Arcade CP |
PHP Code:
i'm using this HTML code: PHP Code:
|
is it possible to make an updated install txt for arcade pass for vbarcade beta 2?
I've followed the info above, and the index.txt from this hack and although the admin section seems to work, the jackpot doesn't seem to visualy update, anyone else have this problem? |
Yea, the Jackpot won't update, and it says "Your Arcade Pass has been verified" when I don't even have the option in the store....
Note: Newest version of everything. |
I had 1 point. The jackpot for the game I played (breakout) was set to 1. The cost to play breakout was 1 point. I had earned 60 SCORE points after I finished playing breakout, and I received over 200 regular points for it... is that suppose to happen?
|
I don't see how some of these errors are happening, all I can say is, double check all the instructions.
Beta 2 instructions will come when I have my FTP password reset, and when I am not too lazy to make a .txt file and ZIP it. |
hm... In my proarcadeadmin.php file, i'm supposed to replace
PHP Code:
with PHP Code:
PHP Code:
|
As I said before, those running Beta 2 of the vbProArcade hack MUST follow instructions posted earlier in this thread by a nice user (can't be bothered to get the username of this person while typing this). Note that those modifications for Beta 2 are not tested, and I will try to get a Beta 2 txt file up in the ZIP soon.
|
here are the 15 new templates for the Arcade Pass. you need the Template Backup System in order to use them properly. :)
you will still have to modify the edited templates. |
So, wait a second.... My arcade is screwed then? I used the install instructions from the first post of this thread, and I've got Beta2 of the Arcade.
Could someone be kind enough to PM me a working copy of the proarcade.php file from Beta2? I really don't feel like re-hacking my files, and it's probably easier to just ask. I don't have any other hacks for the Arcade installed, so pretty much anyone can send me it... |
OK guys why is I cant even run this in mysql without errors.
Not sure how the rest of you are doing this as this is right from the 'how-to' Code:
ALTER TABLE `user` ADD `arcadepass` INT(255) DEFAULT '0' NOT NULL; Code:
SQL-query : [Edit] |
Installed By: 62 users
and everyone of those 62 users can run a faulty query??!! respond someone?? I definately wont/cant install if there is no support or a valid query request |
Get your host to upgrade phpMyAdmin or run these queries seperately! It should work without seperating them, however, it seems as if it won't work like that for you.
[sql]ALTER TABLE `user` ADD `arcadepass` INT(255) DEFAULT '0' NOT NULL;[/sql][sql]INSERT INTO `store` (`id`, `action`, `title`, `costs`, `sold`, `imgurl`, `description`, `ok`, `quantity`) VALUES (NULL, 'arcadepass', 'Arcade Pass', '500', '0', 'images/arcade.gif', 'Buy a lifetime pass into the Arcade!', 'N', '0');[/sql][sql]ALTER TABLE `arcadeconfig` ADD `passtimeout` BIGINT(255) DEFAULT '155520000' NOT NULL, ADD `epergamecost` TINYINT(1) DEFAULT '1' NOT NULL, ADD `earcadepass` TINYINT(1) DEFAULT '1' NOT NULL, ADD `eaph` TINYINT(1) DEFAULT '1' NOT NULL, ADD `ejackpot` TINYINT(1) DEFAULT '1' NOT NULL; [/sql][sql]ALTER TABLE `arcadegames` ADD `playcost` int(255) NOT NULL default '10', ADD `jackpot` int(255) NOT NULL default '0', ADD `jackpotadd` int(255) NOT NULL default '5';[/sql] |
well for the record I am running MySQL 3.23.54
As per your post above of the queries here are my results: For Code:
ALTER TABLE `user` ADD `arcadepass` INT(255) DEFAULT '0' NOT NULL; SQL-query : [Edit] ALTER TABLE `user` ADD `arcadepass` INT(255) DEFAULT \'0\' NOT NULL; MySQL said: You have an error in your SQL syntax near '\'0\' NOT NULL' at line 1 Back |
I said phpMyAdmin, not MySQL ;)
Try searching the Full Releases forum for one of the hacks that allow you to run queries from the admin center, install it, and run the queries seperate using that. |
That was phpMyAdmin
Welcome to phpMyAdmin 2.2.0 MySQL 3.23.54 running on localhost Still get those errors. I installed and ran it through the admin CP as you stated and still get errors. Code:
Database error in vBulletin Control Panel 2.3.0: Code:
Warning: mysql_num_fields(): supplied argument is not a valid MySQL result resource on line 27 Code:
Warning: mysql_num_fields(): supplied argument is not a valid MySQL result resource on line 27 |
hmm try doing this:
[sql] ALTER TABLE user ADD arcadepass INT(255) DEFAULT '0' NOT NULL;[/sql] |
Quote:
hmmm that one worked thanks... any help on the next few queries please :nervous: |
I figured out the third Query on the 'to-do'
Code:
ALTER TABLE arcadeconfig ADD passtimeout BIGINT(255) DEFAULT 155520000 NOT NULL, ADD epergamecost TINYINT(1) DEFAULT 1 NOT NULL, ADD earcadepass TINYINT(1) DEFAULT 1 NOT NULL, ADD eaph TINYINT(1) DEFAULT 1 NOT NULL, ADD ejackpot TINYINT(1) DEFAULT 1 NOT NULL Code:
ALTER TABLE arcadegames ADD playcost int(255) NOT NULL default 10, ADD jackpot int(255) NOT NULL default 0, ADD jackpotadd int(255) NOT NULL default 5; |
Here is the one I cant get:
Code:
INSERT INTO `store` (`id`, `action`, `title`, `costs`, `sold`, `imgurl`, `description`, `ok`, `quantity`) VALUES (NULL, 'arcadepass', 'Arcade Pass', '500', '0', 'images/arcade.gif', 'Buy a lifetime pass into the Arcade!', 'N', '0'); |
Looks nice, going to install it right now.
|
All times are GMT. The time now is 04:17 AM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|