Nukemods Forum  
» Log in
User Name:

Password:

Not a member yet?
Register Now!
» Online Users: 94
5 members and 89 guests
adv2oocarepostw, aucjpytio7yildn, den8xftalcas8ro, earmldnmonekq9a, limehohimsrrepe
Most users ever online was 611, 03-21-2008 at 11:10 PM.
» .::.
tattoo fonts
http://www.checkoutmyink.com/category/tattoo-fonts-tattoo

Go Back   Nukemods Forum > PHP-Nuke 7.x > Nuke 7.x - General

Reply
 
LinkBack Thread Tools Display Modes
How do I install Games (Arcade Center)
Old
  (#1 (permalink))
Junior Member
 
Status: Offline
Posts: 58
Join Date: Jun 2005
Location: Norway
How do I install Games (Arcade Center) - 06-06-2005, 03:01 PM

Right here we go

I have installed the Arcade and Arcade Center, were do I go from here?
I can see any games, I strobe around the forum admin but Im really lost.

Is there some games followed whit this mod?
Sorry about asking such and prolly lame questiong but im just got into this

Im running on:
PHP-Nuke-Platinum-7.6.0

My site is www.stonerclan.com
  Send a message via MSN to raiisak  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Re: How do I install Games (Arcade Center)
Old
  (#2 (permalink))
Member
 
Status: Offline
Posts: 450
Join Date: Jul 2004
Re: How do I install Games (Arcade Center) - 06-06-2005, 05:32 PM

Quote:
Originally Posted by raiisak
Right here we go

I have installed the Arcade and Arcade Center, were do I go from here?
I can see any games, I strobe around the forum admin but Im really lost.

Is there some games followed whit this mod?
Sorry about asking such and prolly lame questiong but im just got into this

Im running on:
PHP-Nuke-Platinum-7.6.0

My site is www.stonerclan.com
You have to search and upload your own games from the net, heres a link to help you get started http://www.nukemods.com/modules.php?...ewtopic&t=5291


Share4Gain.com- 80% Adsense Revenue Share, no website required
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#3 (permalink))
Junior Member
 
Status: Offline
Posts: 58
Join Date: Jun 2005
Location: Norway
06-06-2005, 05:48 PM

Own games ?? 8O

TY!
  Send a message via MSN to raiisak  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#4 (permalink))
Member
 
Status: Offline
Posts: 450
Join Date: Jul 2004
06-06-2005, 05:55 PM

Quote:
Originally Posted by raiisak
Own games ?? 8O

TY!
O come on you know what I mean


Share4Gain.com- 80% Adsense Revenue Share, no website required
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#5 (permalink))
Junior Member
 
Status: Offline
Posts: 58
Join Date: Jun 2005
Location: Norway
06-06-2005, 06:01 PM

aye

i know exactly what u mean.. I just dont know how .. lol
  Send a message via MSN to raiisak  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#6 (permalink))
Member
 
Status: Offline
Posts: 450
Join Date: Jul 2004
06-06-2005, 06:27 PM

Download any game from the suggested link above Read the readme or install file on how and where to ftp the game file & picture image.

Then goto your admin.php panel and select Forums, left hand side select Arcade Management to add game.

TIP: edit your "Cookie Settings" in Forums "Configuration" ie: leave the first two fields blank. Otherwise you will get problems when a game trys to store a score.


Share4Gain.com- 80% Adsense Revenue Share, no website required
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#7 (permalink))
Junior Member
 
Status: Offline
Posts: 58
Join Date: Jun 2005
Location: Norway
06-06-2005, 06:48 PM

Thanks man, im sorry about tis..
Im used to e107, just converted to nuke

Mainly because the support and endless solutions !!
  Send a message via MSN to raiisak  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#8 (permalink))
Junior Member
 
Status: Offline
Posts: 58
Join Date: Jun 2005
Location: Norway
06-07-2005, 01:07 PM

While on the subject,
Is ther a module or block who makes a "game overview"
in the middle on the site?

THe arcade and arcade center doesnt fit my site at all.
The cell spacing are to small for the left bar and i can change
it size (anyone??) ..
  Send a message via MSN to raiisak  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#9 (permalink))
Junior Member
 
Status: Offline
Posts: 58
Join Date: Jun 2005
Location: Norway
06-10-2005, 10:22 AM

Sorted !!


Code:
##
##-----[ OPEN ]----------------------------------------
##
modules/Forums/index.php   

##
##-----[ FIND ]----------------------------------------
##
if ( $is_auth_ary[$forum_id]['auth_view'] )
{

##
##-----[ AFTER, ADD ]----------------------------------
##
if ( $forum_data[$j]['forum_name'] == "Arcade" )
{
   $folder_image = "<img src=\"$phpbb_root_path/games/pics/arcade.gif\" alt=\"Arcade\" />";
   $template->assign_block_vars("catrow.arcaderow",array(
   'FORUM_NAME' => $forum_data[$j]['forum_name'],
   'FORUM_DESC' => $forum_data[$j]['forum_desc'],
   'U_VIEWFORUM' => append_sid("arcade.$phpEx"),
   'U_TOPARCADE' => append_sid("toparcade.$phpEx"),
   'BEST_SCORES' => $lang['best_scores'],
   'FOLDER' => $folder_image)
   );
                     
   
   // Recupération du dernier record aux jeux
   $sqlArcade = " SELECT g.* , u.username FROM " . GAMES_TABLE . " g left join " . USERS_TABLE . " u on g.game_highuser = u.user_id ORDER BY game_highdate DESC LIMIT 0,1 " ;
   if ( !($resultArcade = $db->sql_query($sqlArcade)) )
   {
      message_die(GENERAL_ERROR, 'Impossible d\'acceder aux tables games/users', '', __LINE__, __FILE__, $sqlArcade);
   }
   if ($rowArcade = $db->sql_fetchrow($resultArcade))
   {
     if ( $rowArcade['game_highuser']!=0 )
      {
      $template->assign_block_vars("catrow.arcaderow.bestscore",array(
      'LAST_SCOREGAME' => '' . $rowArcade['game_name'] . '',
      'LAST_SCOREDATE' => create_date($board_config['default_dateformat'], $rowArcade['game_highdate'] , $board_config['board_timezone']),
      'LAST_SCOREUSER' => '' . $rowArcade['username'] . '',
      'LAST_SCORE' => $rowArcade['game_highscore'])
      );
      }
   }
}                                                                                       
else
{

##
##-----[ FIND ]----------------------------------------
##
'U_VIEWFORUM' => append_sid("viewforum.$phpEx?" . POST_FORUM_URL . "=$forum_id"))
);

##
##-----[ AFTER, ADD ]----------------------------------
##
} // == "Arcade"

##
##-----[ OPEN ]----------------------------------------
##
modules/Forums/templates/subSilver/index_body.tpl 
or
themes/your-theme/forums/index_body.tpl 

##
##-----[ FIND ]----------------------------------------
##
  

##
##-----[ AFTER, ADD ]----------------------------------
##

  
  <tr>
   <td class="row1" align="center" valign="middle" height="75">{catrow.arcaderow.FOLDER}</td>
   <td class="row1" colspan="1" width="100%" height="50"><span class="forumlink"> {catrow.arcaderow.FORUM_NAME}

     </span> <span class="genmed">{catrow.arcaderow.FORUM_DESC}</span>

     <span class="forumlink"> {catrow.arcaderow.BEST_SCORES}
   </td>
   <td class="row2" colspan="3" width="100%" height="50" align="center">
     
      <span class="gensmall">
        {catrow.arcaderow.bestscore.LAST_SCOREDATE}
{catrow.arcaderow.bestscore.LAST_SCOREUSER}

      received a score of
{catrow.arcaderow.bestscore.LAST_SCORE} ÃÂÂÂ* {catrow.arcaderow.bestscore.LAST_SCOREGAME}
     </span>
         
   </td>
  </tr>
  

##
##-----[ ACTION ]--------------------------------------
##
Create a new forum "Arcade" by the administration panel.
 
##
##-----[ SAVE/CLOSE ALL FILES ]------------------------
##
## EoM
Source: http://www.origon.dk/

Great site, good support!!
  Send a message via MSN to raiisak  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Arcade scarfacecapone Nuke 7.x - General 1 11-11-2006 02:36 PM
Arcade Center 3.02 joe_momma Nuke 6.5 to 6.9 - Blocks 2 05-06-2006 07:51 PM
Need help with v3 arcade smith Nuke 7.x - Modules 2 06-12-2005 01:39 PM
Playable Games and Mods & Tweaks for Nuke! lqdd Showoff 0 02-06-2005 07:33 PM
Games Marty Other "stuff" 5 10-17-2004 04:54 PM




vBulletin Skin developed by: vBStyles.com


LinkBacks Enabled by vBSEO 3.3.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31