vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Beta Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=5)
-   -   vbProArcade Beta 2 (https://vborg.vbsupport.ru/showthread.php?t=42880)

futureal 11-17-2003 08:57 PM

Quote:

Originally Posted by Andrew111888
Hmm, I've added some games and only the original five show in the arcade..

It sounds like you may not have made the games active (an option under each game in the Admin CP).

futureal 11-17-2003 08:59 PM

Quote:

Originally Posted by peterska2
But where and how? (sorry very new to this side of things :nervous: )

Which file are you running SQL queries from?

Limpkinw 11-17-2003 09:19 PM

My users are cheating the arcade simply by editing the url is there a way to prevent this?

Example

http://www.limpkinw.com/forums/proar...abf39dd76dd245

Will submit a score of 1100 in blackjack or if you edit the score variable it will submit the score of your choosing. Can this be prevented?
Thanks

Andrew111888 11-17-2003 11:35 PM

Ah, that fixed it. Thanks:)

Any idea when a Mozilla/Mac compliant version will be available? No scores for me:( (mac)

futureal 11-17-2003 11:53 PM

Quote:

Originally Posted by Limpkinw
My users are cheating the arcade simply by editing the url is there a way to prevent this?

This is fixed in the next version. In the meantime you could add a simple check like this, near the beginning of proarcade.php (must be after the $gameinfo query for this to work):

// security check for HTTP_GET
$strippedvar = substr($gameinfo[scorevar],1);

if (isset($_GET[thescore]) or isset($_GET[$strippedvar])) {

// output some message if desired, like:
echo "Cheater!\n\n";
exit;

}

That should prevent anybody from entering a score variable in the query string.

Limpkinw 11-18-2003 05:10 AM

Cool, woudl there be a way to add the players who try this to a list...or page...just the basic idea and i can take it from there :)

futureal 11-19-2003 07:18 PM

You have have to add a field to the database somewhere and then add a query to the above code (between the brackets) to insert some information into that field. Or actually, to make it easier, you could just have the system send you an email when this happens. Take a look at this section of the PHP documentation:

http://us4.php.net/manual/en/ref.mail.php

You could include the date, time, user's name and query string in the email, so you'd get all the info.

Hope that helps.

Limpkinw 11-19-2003 07:53 PM

i think i have the query right, and its inserting a "counter" inot the database. Now i am trying to make a page display the cheaters...kinda like the store top 10...Working on it if I get it workin I can post here for evaluation/sharing purposes.

MaDCaT75 11-20-2003 07:32 AM

I got a problem with changing a game's champion text. Whenever I change the text and submit the changes it always goes back to just "t". Any ideas? :confused:

M?uschen 11-20-2003 07:11 PM

It is possible only to clear a part of the scourboard ?
I dont want to clear the topscore...

Please help... Thanks Mäuschen.

joaorp 11-21-2003 02:14 PM

Greetings,

Could anyone please help me, I'm trying install this hack on version 2.3.3, and I always come up with this error:
Code:

Parse error: parse error, expecting `T_VARIABLE' or `'$'' in /home/joaorp/public_html/testvb/admin/adminfunctions.php on line 560

Warning: Cannot modify header information - headers already sent by (output started at /home/joaorp/public_html/testvb/admin/functions.php:2725) in /home/joaorp/public_html/testvb/admin/functions.php on line 1908

on /admin/ and when I insert my user and password and click enter it only shows up this error

Code:

Parse error: parse error, expecting `T_VARIABLE' or `'$'' in /home/joaorp/public_html/testvb/admin/adminfunctions.php on line 560
yet i can see very quick when it backing to the log in menu more errors, but too quick for I paste here :(

This happens when I try go to step 4 also known, template instalion.

Thank you in advance.
Regards

Gutspiller 11-21-2003 09:56 PM

Anybody know if this hack will work with 2.0.x or if I shouldn't even try to install it?

MindTrix 11-21-2003 11:38 PM

Why dont you install it on a test board 1st to see if it would work?

MaDCaT75 11-22-2003 06:52 AM

Quote:

Originally Posted by MaDCaT75
I got a problem with changing a game's champion text. Whenever I change the text and submit the changes it always goes back to just "t". Any ideas? :confused:

someone...... please?

joaorp 11-22-2003 08:36 AM

I fixed my previous error :)
but, now after all is installed, for some reason the games aren't loading, just show the black screen on their place and looks take ages to load, yet they don't, any ideas how to fix this? :)

Thank you in advance :)

MindTrix 11-22-2003 09:54 AM

Quote:

Originally Posted by futureal
If you uploaded the games to /forum/games/ rather than /games/ then in the Admin CP, remove the preceding slash from the games directory (so it reads games/ for example).


See, been answered before loads of times ;)

joaorp 11-22-2003 11:47 AM

Quote:

Originally Posted by MindTrix
See, been answered before loads of times ;)

lol, Thank you, I had watched that after replyed (it was too many posts that I didn't have the time to look them all ;) ) just noticed that one after reply and forgot said its fixed.

Regards.

MindTrix 11-22-2003 12:02 PM

Hey no problem. Is alot of hacks to look through isnt it ;)

Least you got it fixed now, Enjoy the Arcade :p

Gutspiller 11-23-2003 12:08 AM

Quote:

Originally Posted by MindTrix
Why dont you install it on a test board 1st to see if it would work?

1. Because I don't have a test board.
2. I asked the question to find out.
3. I add all my hacks on the fly straight onto my public forums.
4. I'm not setting up a test forum just to test it.

MaDCaT75 11-23-2003 01:49 AM

Quote:

Originally Posted by MaDCaT75
I got a problem with changing a game's champion text. Whenever I change the text and submit the changes it always goes back to just "t". Any ideas? :confused:

do I really need to ask a 3rd time?

Littlebit 11-23-2003 06:23 PM

Quote:

Originally Posted by futureal
Also, I have some other arcade development news:

The next version may have Mozilla/Netscape and even Mac support, which has long been a huge (and bad) limitation for the arcade. I have been able to get everything to work, with one caveat: all existing games will NOT work, and will need to be re-modified. Additionally, users must have the latest version of the Flash plug in, which supports ActionScript v2.0.

If anybody has any thoughts or feedback on this, let me know.

Thanks.

:cool:
This is excellent news for us Mac users.
How much of the games code will have to be modified?
And I think requiring the latest flash plug-in won't be a bad deal.

hvacr 11-23-2003 08:05 PM

Quote:

Originally Posted by futureal
vbProArcade Beta 2

1/5/03: Beta 2 released

is Beta 2 the only version for VB 2.3?

will there be any releases for the
upcoming VB3.xx?

Thanks
http://www.forumschat.net

MaDCaT75 11-23-2003 08:26 PM

why is everyone ignoring my problem?

SugarChick 11-24-2003 03:58 AM

For anyone that is having problems with the champion text/images...I looked through a lot of posts and saw questions but no real answers to why they weren't appearing. I could not get mine to appear...I had "champion system" and image enabled for some of them but I guess at some point I deleted the champion image from my first game. Once I added that image all the images and champion text showed up. Whether it was a fluke or what I'm not sure but if you're having problems its worth a try to make sure that all the games, especially the first one, have the champion system enabled and an icon added.

PAINTBALLM 11-24-2003 04:00 AM

Wow, not to get off topic but.. your awfuly pretty to be a gammer/webmaster... I guess its just rare :P Alot of gamer chicks are ugly anti-social loosers.. Then again, alot of gamer guys are too.. lol

MaDCaT75 11-24-2003 05:40 AM

Quote:

Originally Posted by PAINTBALLM
Wow, not to get off topic but.. your awfuly pretty to be a gammer/webmaster... I guess its just rare :P Alot of gamer chicks are ugly anti-social loosers.. Then again, alot of gamer guys are too.. lol

I know..... I'm a computer nerd :x

It would be great if I could figure out why my champion text is always "t".... cause I looked thru everything and cant find anything wrong :rolleyes:

If you wanna help me, I'm on AIM and ICQ and MSN

MSN: Kristina0074@msn.com
AIM: Kristina0074
ICQ: 108316844

PAINTBALLM 11-24-2003 06:21 AM

all taken care of ;)

SugarChick 11-24-2003 06:26 AM

Actually, I've found quite the contrary most femme gamers I've come across are pretty darn attractive they're just closet losers like me :p

Mad - Did you trying going into the db to try and manually change it? Not an easy way by any means, but I know there was at least one instance where I went into the db with phpMyAdmin because the admin cp just kept kicking out the original value everytime I tried to submit a new one. It's a beta so I figure whatever I can finagle around to make it work, is great, its the ghetto way about it but whatever... :p

PAINTBALLM 11-24-2003 06:27 AM

I went ahead and did it for her :)

MaDCaT75 11-24-2003 07:36 PM

Quote:

Originally Posted by PAINTBALLM
I went ahead and did it for her :)

and im grateful :p

defcon1 11-25-2003 09:28 PM

I have everything working ....'cept I can't figure out how to get the arcade to work with my theme(surge from vbskins). Proarcade can be used with any theme(skin) right?? If not what needs to be modified? It works fine with the default theme.

Thank you
Deffy

Digikilla 11-26-2003 08:18 PM

Well I installed Pro Arcade and when I go to the admin Pannel for it I get this error

Code:

Database error in vBulletin Control Panel 2.3.3:

Invalid SQL: SELECT * FROM arcadeconfig
mysql error: Table 'd60003098.arcadeconfig' doesn't exist

mysql error number: 1146

Date: Wednesday 26th of November 2003 05:02:50 PM
Script: http://www.killuclan.com/forums/foru...changeoptions&
Referer: http://www.killuclan.com/forums/admi...n=nav&cpnavjs=

I went to myphpadmin and checked and the SQL quiries are there but the SQL Database has a diffrent name than the one above. So I went to the config.php file and changed it (backed up the original) to the correct database/username/pw and loaded it up.

The whole site went down. I loaded the orgiginal config.php file and every thing came back, but I still have the problem with the arcade hack pointing to what the config.php file says is the corect SQL but myphpadmin says is incorrect. How do I get the Pro Arcade to look to the correct SQL Database and still have a working site?

DigiKilla

GamerForums.net 11-29-2003 10:12 AM

I have searched this thread for about an hour trying to find someone with the exact same problem or a solution to adding games. Everything works fine with the arcade except that when i try to edit a game or add a game I get an error. This is the error that i recieve when trying to add a game.
Anyone know what the problem might be?

CODE:

Database error in vBulletin Control Panel 2.3.3:

Invalid SQL: INSERT INTO arcadegames (name,title,description,filename,active,scorevar,w idth,height,codebase,querystri ng,
objectparam,embedparam,championactive,championtext ,championcolor,playcost,jackpo t,jackpotadd,thumbnailname,thumbnaildata)
VALUES ('asteroids','Asteroids','A Great Arcade Classic.','asteroids.swf','0','$asteroidsscore','' ,'','','',
'','','1','Asteroids Champion','','10','0','5','asteroids.gif','GIF89a\ 0\0÷\0\0\0\0\0ÿÿÿ
%#%1/1;9;:8:hehgdgHFH@>@}z}NLNKIK*)*(\'(˜•˜—”—„ „ece_]_VTV323/./.-.,+,+*+²¯²«¨«¢Ÿ¢|z|xvxvtv?>?<;<:9:6565454 34ÖÓÖ¨¦¨¦¤¦›™›”’”‘‘‹ŒŠŒ ‰‡‰‡…‡NMNDCD· µ·~{z{zyzvuvututstsrshghede[Z[¨§¨”“”Œ‹ŒŠ‰Š‰ˆ‰…„…‚‚\0\0\0\0 \0\0\0\0

#
.1.585(*(&(&ADAEHEZ]Z9;9 qtqnqn`b`\\^\\232./.,-,+,+}}vxvuwutvtprp898GHGEFEßáßuvututmnm ¸·°±°›œ›”•”ŽŽííí¨¨¨¤¤¤Œ Œ………yyyv vvuuugggeee\\\\\\VVVOOO???>>>===<<<;;;666555444222///,,,+++***&&&\"\"\" ÿÿÿ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 \0\0\0\0\0\0\0\ 0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ 0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ 0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ 0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ 0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ 0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ 0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ 0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ 0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ 0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ 0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ 0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ 0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0!ù\0\0 ž\0,\0\0\0\0\0\0\0ÿ\0(° @ *\\˜p’P*aH1áBTÜ8p €p°PYƒ‰#G5\0HÀÄ&K˜È„YÑ#ƒ
9yxQÉ$Å DfŠ\0\0ENO¢,d P‚›ÎxI´Ñ
FVq@ÔåÊÂ&\00ÀPxGŽ<Cð¨Í‚E)K4° ¥…thªèˆÏCI&\0`ºKšA&à a#ÐãÂE<p<AâÇF=Ll¼AB…ÉF
Uć\0°A‹f¸ ˆ¡Ó¨+Bòအ„>Ž|
’C¥B
?ªèfºÃÈB0q¶è>
’„Q¾\\ Ÿ=;% #©SuÎ
S8 ƒŒ“ïy`àdŠI”Äö vÄ\0Rè¡$p¾î1f´@!s\\ò]B(”ðH$4(r`Bj|ñFV\00уiáFøaHPYˆá!tœø·\\ @\0;')
mysql error: Unknown column 'width' in 'field list'

mysql error number: 1054

Thanks,
Sidney

Pseudomizer 11-29-2003 10:27 AM

Hi,

this is your query:

Quote:

INSERT INTO arcadegames (name,title,description,filename,active,scorevar,w idth,height,codebase,querystri ng,
objectparam,embedparam,championactive,championtext ,championcolor,playcost,jackpo t,jackpotadd,thumbnailname,thumbnaildata)
There seems to be a problem with the list of your parameters. Do the following command in the command line and compare the paramaters:

Quote:

mysqlshow -u user -p password database arcadegames
You should see the table arcadegames and all corresponding fields. Compare these fields with query i quoted and you should find your problem straight away.

Cheers,

Pseudomizer

GamerForums.net 11-29-2003 06:22 PM

Thanks for the assistance,

I have done this and added the columns "height" , "width" , "codebase" , "querystring" , "objectparam" in the arcadegames table, and it solved the problem of adding the new game, but for some reason it is not passing the score variables now. The game is Asteroids, and it just loads the blank leaderboard after the game is completed.

Pseudomizer 11-29-2003 06:37 PM

Hmmm. Then it's either the wrong variable for the score OR the hash is wrong. Please check with the corresponding game thread and the description for this specific game.

Cheers,

Pseudomizer

SharronH 11-30-2003 01:20 AM

Any updates on v2.1 guys? Keep up the hard work guys. This is one of the best hacks I've seen.

PixelFx 11-30-2003 01:55 PM

I've worked out a lot of the template stuff and sent one update to future real, I'm hoping to get another done today. Although I haven't seen him online much this week, so not sure if we are just missing each other or not.

I have it setup here, the current version of 2.1 on the template side doesn't look much different, but how the arcade installs is much more stable and cleaner. I've tried to make the templates very easy to update for different colored layouts.

demo: http://www.orbsydia.com/forum/proarc...?action=arcade (vbproarcade 2.1 & vb2.3.3)

SharronH 11-30-2003 06:05 PM

It looks very nice.... looking forward for it to get released soon. Good job! :)

FinalAngel 12-01-2003 12:17 PM

hi,
i have an Error with Netscape after I play a Game then come Game Over and:
"vbProArcade Error: Invalid game name specified (todo: put something pretty here later)"
who can help me


All times are GMT. The time now is 11:35 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.02913 seconds
  • Memory Usage 1,843KB
  • 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
  • (14)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)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