Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

<Var/String> = Das Format, das du für deine Nachricht nutzen möchtest. 
<Value1 - 5> = Die Werte, die in deine Nachricht eingegeben werden. 


Formatiert und schreibt eine Nachricht ins Spieler Logbuch. 
Die Formatierung wird genauso wie der 'beim "sprintf'"-Befehl durchgeführt. 

Info
titleBeispiel

$station.credits = $station get money 
$station.credits.string = convert number $station.credits to string 
$station.name = $station get name 
$station.sector = $station get sector 

write to player logbook: printf: fmt = 'Ihre Station, %s, im Sektor %s, hat %scr auf ihrem Konto.' , $station.name$station.sector, $station.credits.stringnullnull 

...