ich hab die datei garnet gefunden...
Und das hier hab ich auch gerad gemacht:
Aber ich hab ja nicht SubSilver als Style, doch im chunkstyle-style find ich diese Dinge nicht wie z.B.#################################################################
## Title: Add ChatBox link into overall header
## Author: Smartor <smartor_xp@hotmail.com> - http://smartor.is-root.com
##
## Installation Level: Easy
## Installation Time: 5 Minutes
##
## Files To Edit: 2
## includes/page_header.php
## templates/subSilver/overall_header.tpl
##
## Included Files: N/A
##
#################################################################
## Author Notes:
##
#################################################################
#
#-----[ OPEN ]--------------------------------------------------
#
templates/subSilver/overall_header.tpl
#
#-----[ FIND ]----------------------------------------
#
<a href="{U_FAQ}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_faq.gif" width="12" height="13" border="0" alt="{L_FAQ}" hspace="3" />{L_FAQ}</a></span>
#
#-----[ BEFORE, ADD ]---------------------------------
# begin a new line first
<!-- BEGIN switch_user_logged_in -->
<a href="javascript:void(0);" onClick="window.open('{S_JOIN_CHAT}','{CHATBOX_NAME}','scrollbars=no,width=540,height=450')" class="mainmenu"><img src="templates/subSilver/images/icon_mini_login.gif" width="12" height="13" border="0" hspace="3" />Chat</a></span>
<!-- END switch_user_logged_in -->
#
#-----[ OPEN ]--------------------------------------------------
#
includes/page_header.php
#
#-----[ FIND ]----------------------------------------
#
$template->assign_vars(array(
#
#-----[ AFTER, ADD ]----------------------------------
#
'S_JOIN_CHAT' => append_sid("chatbox_mod/chatbox.$phpEx"),
'CHATBOX_NAME' => $userdata['user_id'] . '_ChatBox',
#
#-----[ SAVE/UPLOAD ALL FILES ]---------------------------------
#
und so sieht jetzt die chatbox_config aus:#-----[ FIND ]----------------------------------------
#
<a href="{U_FAQ}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_faq.gif" width="12" height="13" border="0" alt="{L_FAQ}" hspace="3" />{L_FAQ}</a></span>
<?php
/***************************************************************************
* chatbox_config.php
* -------------------
* begin : Sun July 08 2002
* copyright : (C) 2004 Wooly Spud
* email : phpbb@xgmag.com
*
* $Id: chatbox_config.php,v 3.0.2 01/12/2004, 20:06:21 hnt Exp $
*
***************************************************************************/
/***************************************************************************
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
***************************************************************************/
if ( !defined('IN_PHPBB') )
{
die("Hacking attempt");
}
error_reporting(E_ERROR | E_WARNING | E_PARSE);
include_once($phpbb_root_path . './chatbox_mod/chatbox_function.'.$phpEx);
define("_CHATBOX_VERSION", "3.0.2 sp1"); // DO NOT CHANGE THIS
define("_CHATBOX_SYSTEM_MSG", "System Msg");
$cfg_chatname = "Black Dragon Syndicate";
$chatbox_config = array (
'refresh_time' => '10',
'delete_time' => '300',
'offline_time' => '300',
'away_time' => '150',
'stylesheet' => 'chatbox.css',
'show_amount' => '100', // amount of chats to show
'max_msg_len' => '120',
'direction' => '1', // 1 = new posts at bottom, others = new posts at the top
'vietuni' => 'http://www.xlpartys.de/forum/vietuni.js', change this with yours
);
?>