root/trunk/language/en/mods/help_arcade.php
| 761 | 812 | ||
|---|---|---|---|
75 | 1 => 'If you translate the phpBB Arcade to your language or create the template files for another style I would appreciate if you submitted them to me <a href="http://www.jeffrusso.net/forum/viewforum.php?f=25">here</a>. Keep in mind that many styles are based off of prosilver or subsilver2 so for the most part you can just upload the arcade template files from the style its based off of to the template folder of the style you are using.', | 75 | 1 => 'If you translate the phpBB Arcade to your language or create the template files for another style I would appreciate if you submitted them to me <a href="http://www.jeffrusso.net/forum/viewforum.php?f=25">here</a>. Keep in mind that many styles are based off of prosilver or subsilver2 so for the most part you can just upload the arcade template files from the style its based off of to the template folder of the style you are using.', |
76 | ), | 76 | ), |
77 | array( | 77 | array( |
78 | 0 => 'Can I use style specific images inside the arcade?', | ||
79 | 1 => 'Yes. Any image located inside the default image path can be style specific. All you have to do is place an image of the same name inside the “your_style\theme\images\arcade\” folder. If a style does not have a specific image the default image will be used. This also applies to category images. To use style specific category images first choose the default image while creating/editing the category and then upload an image with the same name to the “your_style\theme\images\arcade\cats\” folder.', | ||
80 | ), | ||
81 | array( | ||
78 | 0 => '--', | 82 | 0 => '--', |
79 | 1 => 'Installation/Updating', | 83 | 1 => 'Installation/Updating', |
80 | ), | 84 | ), |
... | ... | ||
118 | 1 => 'Even if you give the guest usergroup the correct permission they cannot submit scores to the arcade. This is by design.', | 122 | 1 => 'Even if you give the guest usergroup the correct permission they cannot submit scores to the arcade. This is by design.', |
119 | ), | 123 | ), |
120 | array( | 124 | array( |
125 | 0 => 'How do I enable "Test mode" for a category?', | ||
126 | 1 => 'Goto the "Manage arcade" ACP module. Click edit on the category you want to enable "Test mode" and then set the "Test mode" option to yes.', | ||
127 | ), | ||
128 | array( | ||
129 | 0 => 'What does "Test mode" do?', | ||
130 | 1 => 'This will now allow you to play games in a category and have no data or scores saved. This allows you to test out games to make sure they function correctly. Once finished with a game you will be displayed a message detailing what would have occured. If you are an administrator and DEBUG_EXTRA is enabled you will also see more detailed information.', | ||
131 | ), | ||
132 | array( | ||
121 | 0 => '--', | 133 | 0 => '--', |
122 | 1 => 'Games', | 134 | 1 => 'Games', |
123 | ), | 135 | ), |
... | ... | ||
364 | 0 => 'What points systems are supported?', | 376 | 0 => 'What points systems are supported?', |
365 | 1 => '<ul> | 377 | 1 => '<ul> |
366 | <li>Cash Mod</li> | 378 | <li>Cash Mod</li> |
379 | <li>Points System</li> | ||
367 | <li>Simple Points System</li> | 380 | <li>Simple Points System</li> |
368 | <li>Points System</li> | 381 | <li>Ultimate Points System</li> |
369 | </ul>', | 382 | </ul>', |
370 | ), | 383 | ), |
371 | array( | 384 | array( |
... | ... | ||
420 | $total_games = sprintf($user->lang[\'ARCADE_TOTAL_GAME\'], $arcade->number_format($total_games)); | 433 | $total_games = sprintf($user->lang[\'ARCADE_TOTAL_GAME\'], $arcade->number_format($total_games)); |
421 | } | 434 | } |
422 | 435 | ||
436 | $total_games_played = \'\'; | ||
437 | if ($arcade->totals[\'games_played\'] > 1) | ||
438 | { | ||
439 | $total_games_played = sprintf($user->lang[\'ARCADE_TOTAL_PLAYS\'], $arcade->number_format($arcade->totals[\'games_played\']), $arcade->time_format($arcade->totals[\'games_time\'])); | ||
440 | } | ||
441 | else if ($arcade->totals[\'games_played\'] == 1) | ||
442 | { | ||
443 | $total_games_played = sprintf($user->lang[\'ARCADE_TOTAL_PLAY\'], $arcade->number_format($arcade->totals[\'games_played\']), $arcade->time_format($arcade->totals[\'games_time\'])); | ||
444 | } | ||
445 | |||
423 | $template->assign_vars(array( | 446 | $template->assign_vars(array( |
424 | \'S_ARCADE_BLOCK\' => true, | 447 | \'S_ARCADE_BLOCK\' => true, |
425 | \'TOTAL_GAMES\' => $total_games, | 448 | \'TOTAL_GAMES\' => $total_games, |
426 | \'TOTAL_GAMES_PLAYED\' => ($arcade->totals[\'games_played\']) ? sprintf($user->lang[\'ARCADE_TOTAL_PLAYED\'], $arcade->number_format($arcade->totals[\'games_played\']), $arcade->time_format($arcade->totals[\'games_time\'])) : \'\', | 449 | \'TOTAL_GAMES_PLAYED\' => $total_games_played, |
427 | )); | 450 | )); |
428 | 451 | ||
429 | // Start of Lastest highscores | 452 | // Start of Lastest highscores |
... | ... | ||
467 | <span class="corners-bottom"><span></span></span></div> | 490 | <span class="corners-bottom"><span></span></span></div> |
468 | </div> | 491 | </div> |
469 | <!-- ENDIF --></textarea>', | 492 | <!-- ENDIF --></textarea>', |
470 | ), | 493 | ), |
471 | ); | 494 | ); |
472 | 495 | ||
473 | ?> | 496 | ?> |
Download diff