Keine Garantie, dass es funktioniert.
$time ist die Zeit für Stufe 1 und
$time_factor ist der Faktor, um die die Zeit pro Stufe erhöht wird.
LG
Molt
PHP Code:
$datei = fopen("include/configs/buildings.php", "r");
$inhalt = '';
while($zeile = fgets($datei))
{
$inhalt .= $zeile;
}
$haus = "main"; // Durch den Namen des Gebäudes ersetzen
$haus_pos = strpos($inhalt, $haus);
$time_pos = strpos($inhalt, "set_time(", $haus_pos);
$end_pos = strpos($inhalt, ");", $time_pos);
$time_all = substr($inhalt, $time_pos + 10, ($end_pos - $time_pos) - 10);
$time_arr = explode(',', $time_all, 2);
$time = $time_arr[0];
$time_factor = $time_arr[1];
$time_factor ist der Faktor, um die die Zeit pro Stufe erhöht wird.
LG
Molt