• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

Freespace 2 installieren

mic77

Newbie
Hallo Leute
Freespace 2 ist bekanntliche eine sehr gute Weltraumsimulation mit einer packenden Story. Und vorallem GROSSEN Raumschiffen die im Gefecht aktiv mitwirken. Kurz gesagt, das wohl beste Spiel aus diesem Genre IMO.

Der Sourcecode wurde freigegben und wird unter http://scp.indiegames.us/news.php weiter entwickelt.

Nur klappt es bei mir mit dem installieren nicht. Den code habe ich erfolgreich kompeliert, nur starten tut er nicht. Hatte schon mal jemand hier erfolg? Gibt es eine einfach Anleitung?

Danke
Michael
 
OP
M

mic77

Newbie
Upps
Klar das ist immer gut ;-)

Unrecognized command line parameter "-pcx32". Exiting...

ich hatte aber auch schon die Meldung mit "-jpegtga"

Das sind ja Parameter die man zum Aufrufen verwenden soll, aber ich gebe keine ein.

mit dem Start-Skrip funktioniert es leider auch nicht

#!/bin/bash
# Graphics
CMDLINE="-spec -env -glow -jpgtga -mipmap -2d_poof -missile_lighting"
CMDLINE="$CMDLINE -ambient_factor 75 -spec_exp 11 -spec_point 0.6"
CMDLINE="$CMDLINE -spec_static 0.8 -spec_tube 0.4"
#CMDLINE="$CMDLINE -pcx32 -cell -nomotiondebris -noscalevid -rlm -clipdist"
# Game Speed
CMDLINE="$CMDLINE -cache_bitmaps"
#CMDLINE=$CMDLINE -img2dds -no_vsync"
# HUD
CMDLINE="$CMDLINE -targetinfo -orbradar -ballistic_gauge -rearm_timer"
#CMDLINE="$CMDLINE -dualscanlines"
# Gameplay
CMDLINE="$CMDLINE -ship_choice_3d -3dwarp -warp_flash -fov 0.39"
#CMDLINE="$CMDLINE -UseNewAI -tbp -wcsaga"
# Audio
CMDLINE="$CMDLINE -snd_preload"
#CMDLINE="$CMDLINE -nosound -nomusic"
# Multiplayer
#CMDLINE="$CMDLINE -standalone -startgame -closed -restricted"
#CMDLINE="$CMDLINE -multilog -clientdamage -mpnoreturn"
# Troubleshooting
#CMDLINE="$CMDLINE -oldfire -nohtl -no_set_gamma -nomovies -noparseerrors"
#CMDLINE="$CMDLINE -safeloading -query_speech -d3d_bad_tsys -novbo -noibx -loadallweps"
# Experimental
CMDLINE="$CMDLINE -alpha_env"
#CMDLINE="$CMDLINE -decals -ingame_join"
# Development Tools
CMDLINE="$CMDLINE -fps"
#CMDLINE="$CMDLINE -pos -window -timerbar -coords -pofspew -tablecrcs -missioncrcs"
#CMDLINE="$CMDLINE -dis_collisions -dis_weapons -output_sexps"
#CMDLINE="$CMDLINE -output_scripting -nograb -show_mem_usage -stats"
# Mod
CMDLINE="$CMDLINE -mod mv368zeta"
./fs2_open_r $CMDLINE
 
Oben