ich habe das Spiel Tic Tac Toe als Mod installiert. Es läuft auch alles ist wunderbar, ABER......
Da ich den Style Black and White benutze sehe ich die Schriftfarbe der Buttons im Spiel nicht.
Kann mir jemand sagen wo ich die Schriftfarbe dafür ändern kann ?
Ich musste das hier machen laut Mod-Installation :
#
#-----[ COPY ]------------------------------------------
#
copy /tictactoe.php to /tictactoe.php
copy /tictactoe_body.tpl to templates/subSilver/tictactoe_body.tpl
copy images/blank.jpg to /images/blank.jpg
copy images/o.jpg to /images/o.jpg
copy images/x.jpg to /images/x.jpg
#
#-----[ 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>
#
#-----[ AFTER, ADD ]------------------------------------------
#
<a href="tictactoe.php" class="mainmenu"><img src="templates/subSilver/images/icon_mini_t.gif" width="12" height="13" border="0" alt="TicTacToe" hspace="3" />TicTacToe</a>
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_main.php
#
#-----[ FIND ]------------------------------------------
#
//
// That's all, Folks!
// -------------------------------------------------
#
#-----[ BEFORE, ADD ]------------------------------------------
#
// Start Tic Tac Toe
$lang['tic_title'] = "Tic-Tac-Toe";
$lang['tic_ties'] = "Ties";
$lang['tic_you'] = "You";
$lang['tic_computer'] = "Computer";
$lang['tic_again'] = "Play Again!";
$lang['tic_help'] = "Help";
$lang['tic_end'] = "The game has already ended. To play a new game click the Play Again button.";
$lang['tic_iwin'] = "Gotcha! I won!";
$lang['tic_uwin'] = "Congratulations! You win!";
$lang['tic_welcome'] = "Welcome to Tic-Tac-Toe! You play as 'X' and the Computer as 'O'. Select the square you want to put your X into by clicking them. You cannot occupy a square that is already occupied. The first player to get three squares in a row wins. Good Luck!!";
$lang['tic_occupied'] = "That square is already occupied. Please select another square.";
$lang['tic_reset'] = "This will restart the game and clear all the current scores. OK?";
// End Tic Tac Toe
#
#-----[ OPEN ]------------------------------------------
#
language/lang_german/lang_main.php
#
#-----[ FIND ]------------------------------------------
#
//
// That's all, Folks!
// -------------------------------------------------
#
#-----[ BEFORE, ADD ]------------------------------------------
#
// Start Tic Tac Toe
$lang['tic_title'] = "Tic-Tac-Toe";
$lang['tic_ties'] = "Unentschieden";
$lang['tic_you'] = "Du";
$lang['tic_computer'] = "Computer";
$lang['tic_again'] = "Nochmal spielen!";
$lang['tic_help'] = "Hilfe";
$lang['tic_end'] = "Dieses Spiel ist bereits zu Ende. Klicke auf den 'Nochmal Spielen' Button.";
$lang['tic_iwin'] = "Gotcha! Ich habe gewonnen!";
$lang['tic_uwin'] = "Gratulation! Du hast gewonnen!";
$lang['tic_welcome'] = "Wilkommen bei Tic-Tac-Toe! Du spielst als 'X' und der Computer als 'O'. Wähle ein Feld und setze Dein 'X' indem Du klickst. Auf ein belegtes Feld kannst Du nicht setzen. Der erste Spieler, der drei Felder in einer Reihe hat, hat gewonnen. Viel Glück!!";
$lang['tic_occupied'] = "Dieses Feld ist bereits belegt. Bitte wähle en anderes Feld.";
$lang['tic_reset'] = "Das Spiel wird neu gestartet und die Punkte zurückgesetzt. OK?";
// End Tic Tac Toe
#
#-----[ SAVE/CLOSE ALL FILES ]-----
#
# EoM
Vielen Dank im voraus
