[BETA] Integrated Color groups in Sudoku Mod 1.0.6

Zelf bezig aan een modificatie? Wij kijken graag mee..
Forumregels

Sinds 1 januari 2009 wordt phpBB2 niet meer ondersteund.
Onderstaande informatie is verouderd en dient uitsluitend als archief.
phpBB2.0.x
Gesloten
Gebruikersavatar
brandsrus
Berichten: 1966
Lid geworden op: 01 jul 2005, 19:38
Locatie: r. Лeувapдeн
Contacteer:

[BETA] Integrated Color groups in Sudoku Mod 1.0.6

Bericht door brandsrus » 17 mei 2006, 18:42

Code: Selecteer alles

##############################################################
## MOD Title: Untitled Mod
## MOD Author: UserName < invalid@invalid.invalid > (RealName) http://invalid.invalid/
## MOD Description: 
## MOD Version: 0.0.0
## 
## Installation Level: Easy
## Installation Time: 6 minutes
## Files To Edit: sudoku.php
##                sudoku.php
## Included Files: 
## License: http://opensource.org/licenses/gpl-license.php GNU General Public License v2
## Generator: MOD Studio [ ModTemplateTools 1.0.2288.38406 ]
##############################################################
## For security purposes, please check: http://www.phpbb.com/mods/
## for the latest version of this MOD. Although MODs are checked
## before being allowed in the MODs Database there is no guarantee
## that there are no security problems within the MOD. No support
## will be given for MODs not found within the MODs Database which
## can be found at http://www.phpbb.com/mods/
##############################################################
## Author Notes: 
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
##############################################################

#
#-----[ OPEN ]------------------------------------------
#
sudoku.php
#
#-----[ FIND ]------------------------------------------
#
include($phpbb_root_path . 'common.'.$phpEx); 
#
#-----[ AFTER, ADD ]------------------------------------------
#
include_once($phpbb_root_path.'includes/functions_color_groups.'.$phpEx);
#
#-----[ FIND ]------------------------------------------
#
'USERNAME' => '<a href=' . append_sid("profile.$phpEx?mode=viewprofile&u=$stat_userid") . ' class="nav">' . $stat_username . '</a>',
#
#-----[ REPLACE WITH ]------------------------------------------
#
'USERNAME' => color_group_colorize_name ($row['user_id']),
#
#-----[ FIND ]------------------------------------------
#
$s_users_today_names[]='<a href=' . append_sid("profile.$phpEx?mode=viewprofile&u=$disp_userid") . '>' . $name[$disp_userid] . '</a>';
#
#-----[ REPLACE WITH ]------------------------------------------
#
$s_users_today_names[]= color_group_colorize_name($disp_userid);
#
#-----[ FIND ]------------------------------------------
#
$s_users_active_names[]='<a href=' . append_sid("profile.$phpEx?mode=viewprofile&u=$disp_userid") . '>' . $active_name[$disp_userid] . '</a>';
#
#-----[ REPLACE WITH ]------------------------------------------
#
$s_users_active_names[]= color_group_colorize_name($disp_userid);
#
#-----[ DIY INSTRUCTIONS ]------------------------------------------
#
This are changes when Leaderboard mod is installed
#
#-----[ OPEN ]------------------------------------------
#
sudoku.php
#
#-----[ FIND ]------------------------------------------
#
'USERNAME' => '<a href=' . append_sid("profile.$phpEx?mode=viewprofile&u=$stat_userid") . ' class="nav">' . $stat_username . '</a>',
#
#-----[ REPLACE WITH ]------------------------------------------
#
'USERNAME' => color_group_colorize_name ($row['user_id']),
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM

Gesloten