Maar er zit geen uitleg bij mag ik die nu zelfs schrijven een dan de mod op mijn pagina zetten om te donwloaden?

Code: Selecteer alles
#################################################################
## Mod Title: Ranking Page.
## Mod Version: 1
## Author: http://www.fastfood-clan.de/
## Description: Make a ranking page that views all the ranks on the board
##
##
##
## Installation Level: easy
## Installation Time: 2 Minutes
## Files To Edit: /phpBB2/includes/page_header.php
## /phpBB2/language/lang_english/lang_main
## /phpBB2/templates/subsilver/overal_header.tlp
##
## Files to add //phpBB2/ranking.php
## //phpBB2/language/lang_english/lang_ranking.php
## //phpBB2/templates/subsilver/ranking.tlp
##
#################################################################
## Security Disclaimer: This MOD Cannot Be Posted To Or Added At Any Non-Official phpBB Sites
#################################################################
## TODO:
## Have to copy files and at little link in pageheader
##
#################################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
#################################################################
#
#-----[ OPEN ]------------------------------------------
#
/phpBB2/includes/page_header.php
#
#-----[ FIND ]------------------------------------------
#
'L_WHOSONLINE_MOD' => sprintf($lang['Mod_online_color'], '<span style="color:#' . $theme['fontcolor2'] . '">', '</span>'),
#
#-----[ AFTER, ADD ]--------------------------------
#
'L_RANK' => $lang['Ranks'],
#
#-----[ FIND ]------------------------------------------
#
'U_GROUP_CP' => append_sid('groupcp.'.$phpEx),
#
#-----[ AFTER, ADD ]--------------------------------
#
'U_RANK' => append_sid('ranking.'.$phpEx),
#
#-----[ OPEN ]------------------------------------------
#
/phpBB2/language/lang_english/lang_main
#
#-----[ FIND ]------------------------------------------
#
//
// That's all, Folks!
#
#-----[ BEFORE, ADD ]--------------------------------
#
$lang['Ranks'] = 'Ranks';
#
#-----[ OPEN ]------------------------------------------
#
/phpBB2/templates/subsilver/overal_header.tlp
#
#-----[ FIND ]------------------------------------------
#
&<a href="{U_GROUP_CP}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_groups.gif" width="12" height="13" border="0" alt="{L_USERGROUPS}" hspace="3" />{L_USERGROUPS}</a>&
#
#-----[ DIRECTLY, AFTER, ADD ]--------------------------------
#
&<a href="{U_RANK}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_members.gif" width="12" height="13" border="0" alt="{L_RANK}" hspace="3" />{L_RANK}</a>&
Copy the files whit this mod to here.
# Files to add //phpBB2/ranking.php
# //phpBB2/language/lang_english/lang_ranking.php
# //phpBB2/templates/subsilver/ranking.tlp
#
#-----[ SAVE/CLOSE ALL FILES ]----------------------------------------
#
EoM