PHPBB Money Mod

Okay, im 3/4 of the way through installation

it tells me to find

default:
$location = $user->lang['INDEX'];
$location_url = append_sid("{$phpbb_root_path}index.$phpEx");
break;

and add before

// Start Ultimate Points
case 'points':
$user->add_lang('mods/points');
$location = $user->lang['POINTS_VIEWING'];
$location_url = append_sid("{$phpbb_root_path}points.$phpEx");
break;
// End Ultimate Points


The problem is,
default:
$location = $user->lang['INDEX'];
$location_url = append_sid("{$phpbb_root_path}index.$phpEx");
break;

dosent exist, it works with out the default, should i just forget the default?
 
If you're talking about viewonline.php the find starts on line 318.
 
I just typed it out myself 🙂

then i had another problem with something then i missed one bracket so it didnt work - a 45 min mod turned out to be 2 hours, oh well, its one of my first mod installations 🙂
 
I'm a bit rusty on phpBB3 as I haven't used it since 3.0.4. (I think)

However, why not try using AutoMod? It can work well if you take time and use it properly. 🙂
 
I was going too, but then somebody warned me about it messing up the forum
 
iGimp said:
I was going too, but then somebody warned me about it messing up the forum

I'm no expert, but I installed Modifications on 3.0.4 via AutoMod and had absolutely no problems at all.

I'm not familiar with the newer version of phpBB3 though, sorry.
 
I warned him.

It can be safe if you backup before every installation. And editing manually will take forever :O
 
Back
Top Bottom