Seite 9 von 26
Verfasst: 21.06.2004 01:07
von Leuchte
Im Grunde genommen ist das nicht anderes als eine "normale" Gruppe. Erstell sie wie du das möchtest und steck' die User rein, die du da reinhaben willst.
Der Unterschied ist nur der, dass die User die ihnen zugewiesene Farbe haben (ála Admin Orange, Mod Grün, usw.)
Verfasst: 21.06.2004 01:48
von Kiss News
Danke für die Info. Also etwa so im Prinzip, wie in der "Wer is online" Box... da könnte man dann festlegen, dass die Usernamen dann überall in der Farbe erscheinen, also auch neben den Beiträgen, richtig?
Verfasst: 21.06.2004 22:35
von rabbit
neben den beiträgen, in pm's, auf dem index (last post spalte), in der userliste...

Verfasst: 30.06.2004 06:41
von danysahne333
habe nach nem mod gesucht wo nur die moderatoren und admin in der "wer ist online" leiste farbig angezeigt werden udn denke das diser mod der richtige ist.
kann man das auch so einstellen das der username bei beiträgen usw ncht farbig ist also normal schwarz???
möchte die farben nur bei "wer ist online "haben um admin bzw mod farbig angezeigt zu bekommen bzw hervorzuheben.
danke im voraus
danysahne333
Verfasst: 30.06.2004 12:03
von rabbit
wenn du nur das willst, versuch' mal diesen mod, sollte genau das richtige für dich sein:
Code: Alles auswählen
##############################################################
## Mod Title: Change administrator and moderator who's online colours
## MOD Author: chAos (phpBB Support Team) < admin (at) kaosfusion.com > http://www.kaosfusion.com
## MOD Description: This mod changes the color adminstrators and moderators appear in
## the who is online box.
##
## Mod Version: 1.0.1 - (18th Jan, 2003)
## Installation Level: Easy
## Installation Time: 3 Minutes
## Files To Edit: includes/page_header.php
## Included Files: (n/a)
##############################################################
## For Security Purposes, Please Check: http://www.phpbb.com/mods/downloads/ for the
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered
## in our MOD-Database, located at: http://www.phpbb.com/mods/downloads/
##############################################################
##
# ** The latest version of this mod will always be available from **
# ** http://www.kaosfusion.com - follow the links to the forum **
##
##############################################################
##
## Author Note:
## This is a small/easy mod. This is the way to change it, without it
## changing any other colours on your board. The normal way, would change
## other colours, which you might not want to do.
## This one does it, without that happening. :D
## Dont forget to fill in your custom colour!
##
#################################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD.
#################################################################
#
#-----[ Open ]------------------------------------------
#
includes/page_header.php
#
#-----[ Find ]------------------------------------------
# (around line 125)
if ( $row['user_level'] == ADMIN )
{
$row['username'] = '<b>' . $row['username'] . '</b>';
$style_color = 'style="color:#' . $theme['fontcolor3'] . '"';
}
#
#-----[ Replace With ]------------------------------------------
#
if ( $row['user_level'] == ADMIN )
{
$row['username'] = '<b>' . $row['username'] . '</b>';
$style_color = 'style="color:#FFA34F"'; /* Replace the #FFA34F with your font colour. eg: #FF0000 */
/* Dont forget the # before the hex colour. This will be the ADMIN's colour. */
}
#
#-----[ Find ]------------------------------------------
# (around line 130)
else if ( $row['user_level'] == MOD )
{
$row['username'] = '<b>' . $row['username'] . '</b>';
$style_color = 'style="color:#' . $theme['fontcolor2'] . '"';
}
#
#-----[ Replace with ]------------------------------------------
#
if ( $row['user_level'] == MOD )
{
$row['username'] = '<b>' . $row['username'] . '</b>';
$style_color = 'style="color:#006600"'; /* Replace the #006600 with your font colour. eg:#FF0000 */
/* Dont forget the # before the hex colour. This will be the MOD's colour. */
}
#
#-----[ Find ]------------------------------------------
# (around line 370)
'L_WHOSONLINE_ADMIN' => sprintf($lang['Admin_online_color'], '<span style="color:#' . $theme['fontcolor3'] . '">', '</span>'),
'L_WHOSONLINE_MOD' => sprintf($lang['Mod_online_color'], '<span style="color:#' . $theme['fontcolor2'] . '">', '</span>'),
#
#-----[ Replace With ]------------------------------------------
#
'L_WHOSONLINE_ADMIN' => sprintf($lang['Admin_online_color'], '<span style="color:#FFA34F">', '</span>'), /* Change the ###### to the SAME THING you did in the second step, with the ADMIN colour. This includes the # at the beginning. eg: #FF0000 */
'L_WHOSONLINE_MOD' => sprintf($lang['Mod_online_color'], '<span style="color:#006600">', '</span>'), /* Change the ###### to the SAME THING you did in the forth step, with the MODERATOR colour. This includes the # at the beginning. eg: #FF0000 */
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
für nette farben besuch' mal diese seite:
http://www.draac.com/colorconvert.html
Verfasst: 03.09.2004 21:54
von sploat
hi,ich will den mod jetzt auch einbauen,aber eins verstehe ich bzw. finde ich nicht
nivisec_install.php to /
nivisec_schema/*.* to nivisec_schema/
wo soll dieses nivisec_shema sein?
ich finds einfach nicht
Verfasst: 03.09.2004 22:00
von rabbit
im ordner des mods...

Verfasst: 03.09.2004 23:59
von sploat
aso,die datei mss ich garnicht hochladen,sondern nur in einen anderen ordner einfügen?
aha

Verfasst: 04.09.2004 00:11
von rabbit
du musst den gesamten ordner 'nivisec_schema' ins forum-root hochladen.

Verfasst: 04.10.2004 19:57
von Tyson
Ist dieser Mod "EAsy mod" kompatibel? Es wäre schön wenn das wäre.