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)

trackpads 08-11-2004 01:13 AM

Quote:

Originally Posted by armkbdotcom
Still not what we wanted. Lot of space from the right is wasted.

**bump** :-)

Areku 08-11-2004 10:34 AM

176 pages! Holy cow!

Has any1 work around a "bug"? that displays "g:ia M j" on the TIME column (not the LENGTH one) instead of the time?

Thanks!

Areku 08-12-2004 05:59 AM

I've just installed this AWESOMELYGREAT hack and I'd like to make note to John about certain things we'd love to see in the package:

- Game setup instructions: once you have arcade up and running, how do you add new games? that's not covered on the .txts on the package ;)

- the fact of multilingual boards, ie. ease of translations, ie. keep languages off of the arcade.php file ;)

- some way of challenge your users from profile or list of members or direct input of some sort. If u set it up with default values, the arcade won't let you challenge any1 unless he has played on some game before, righT?

Areku 08-12-2004 06:00 AM

Quote:

Originally Posted by Socrate
hello all :)

everything works well except only one thing, I have always the date like this in the scores:

PHP Code:

g:ia M J 

it is not posted, have an idea please?


Same problem here, and i just installed it!

Did u solve it Socrate?

Any1?

Thanks!

jpt62089 08-12-2004 06:28 PM

Quote:

Originally Posted by jpt62089
just installed on my fresh VB... I dont have permission to access the arcade... I checked the group settings and they are go...

Please be easy on my :p this is my first VB mod! :ninja:

nvm i got it fixed...

Battle_Ring 08-13-2004 03:37 AM

Very Easily Installed...Great Hack...

Areku 08-13-2004 05:10 AM

Quote:

Originally Posted by jpt62089
nvm i got it fixed...

how did u fix it, jpt62089?

trackpads 08-15-2004 09:13 AM

I had an idea about adding regular (unconverted) games to the arcade. I think this would be a great idea and would open the Arcade to thousands of legal games like the ones from miniclip which cant be converted.

http://www.v3arcade.com/play/showthread.php?p=12045

What do you guys think?

Swanny231 08-15-2004 08:09 PM

I am having problems with the group premissions
here is what I did.
(Parse error: parse error in /var/www/html/forums/admincp/usergroup.php on line 846)
usergroup.php
PHP Code:

print_table_header($vbphrase['general_permissions']);
    
print_yes_no_row($vbphrase['can_see_invisible_users'], 'usergroup[canseehidden]'$ug_bitfield['canseehidden']);
    
print_yes_no_row($vbphrase['can_view_member_info'], 'usergroup[canviewmembers]'$ug_bitfield['canviewmembers']);
    
print_yes_no_row($vbphrase['can_edit_own_profile'], 'usergroup[canmodifyprofile]'$ug_bitfield['canmodifyprofile']);
    
print_yes_no_row($vbphrase['can_set_self_invisible'], 'usergroup[caninvisible]'$ug_bitfield['caninvisible']);
    
print_yes_no_row($vbphrase['show_edited_by_note_on_edited_messages'], 'usergroup[showeditedby]'$ug_bitfield['showeditedby']);
    
print_yes_no_row($vbphrase['can_use_custom_title'], 'usergroup[canusecustomtitle]'$ug_bitfield['canusecustomtitle']);
    
print_yes_no_row($vbphrase['can_use_signatures'], 'usergroup[canusesignature]'$ug_bitfield['canusesignature']);
    
print_yes_no_row($vbphrase['can_view_others_profile_pictures'], 'usergroup[canseeprofilepic]'$ug_bitfield['canseeprofilepic']);
    
print_yes_no_row($vbphrase['can_view_hidden_custom_fields'], 'usergroup[canseehiddencustomfields]'$ug_bitfield['canseehiddencustomfields']);
    
print_table_break();
    
print_column_style_code(array('width: 70%''width: 30%'));

    
print_table_header("Arcade Permissions");
    
print_yes_no_row("Can View the Arcade? <dfn>Allows usergroup to view the arcade, including high scores and leaderboards</dfn>"'usergroup[canviewarcade]'$ug_bitfield['canviewarcade']);
    
print_yes_no_row("Can Play Games in the Arcade? <dfn>Allows usergroup to play arcade games</dfn>"'usergroup[canplayarcade]'$ug_bitfield['canplayarcade']);
    
print_yes_no_row("Can Post Comments? <dfn>Allows usergroup to post comments when they achieve a high score</dfn>"'usergroup[canmakecomments]'$ug_bitfield['canmakecomments']);
    
print_yes_no_row("Can Edit Leaderboard Comments? <dfn>Allows usergroup to edit comments left by other members</dfn>"'usergroup[caneditscores]'$ug_bitfield['caneditscores']);
    
print_yes_no_row("Can Delete Leaderboard Scores? <dfn>Allows usergroup to delete scores and comments left by other members</dfn>"'usergroup[candelscores]'$ug_bitfield['candelscores']);
    
print_table_break();
        
print_column_style_code(array('width: 70%''width: 30%'));

    
print_table_header($vbphrase['forum_viewing_permissions']);
    
print_yes_no_row($vbphrase['can_view_board'], 'usergroup[canview]'$ug_bitfield['canview']);
    
print_yes_no_row($vbphrase['can_view_others_threads'], 'usergroup[canviewothers]'$ug_bitfield['canviewothers']);
    
print_yes_no_row($vbphrase['can_see_deletion_notices'], 'usergroup[canseedelnotice]'$ug_bitfield['canseedelnotice']);
    
print_yes_no_row($vbphrase['can_search_forums'], 'usergroup[cansearch]'$ug_bitfield['cansearch']);
    
print_yes_no_row($vbphrase['can_use_email_to_friend'], 'usergroup[canemail]'$ug_bitfield['canemail']);
    
print_yes_no_row($vbphrase['can_download_attachments'], 'usergroup[cangetattachment]'$ug_bitfield['cangetattachment']);
    
print_table_break();
    
print_column_style_code(array('width: 70%''width: 30%')); 


Swanny231 08-15-2004 09:39 PM

How to install new games ????? I dont have the install games tab in the arcade settings ?

As for my above post I just removed the hack on the usergroup and went into my sql and did the permissions manually :(


All times are GMT. The time now is 08:54 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
  • Page Generation 0.05100 seconds
  • Memory Usage 1,776KB
  • 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
  • (2)bbcode_php_printable
  • (4)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