Home | Forum | Downloads | Videos | Artikel | Server-Stats | Impressum

Zurück   UTzone.de > News und Ankündigungen > Artikel > UT3

Antwort
 
Teilen Artikel Werkzeuge Diesen Artikel durchsuchen
Alt 02.06.2013, 18:06   #51
UTSnowCrash
Grünschnabel
 
Registriert seit: 30.05.2013
Beiträge: 12
Beigetretene Cups: 0
Cup Siege: 0
Downloads: 32
Uploads: 0
Standard

Hallo jeppo,

Danke super.

find LOGFILENAME-chat* | xargs cat >old-log-TIMSTAMP.txt

Das Ergebnis ist genau das was ich wollte.

Nun noch eine kleines Script basteln das mit cron einmal tälich ausgeführt wird.

Das geht hier ja schneller als beim IBM Support.

Gruß snowcrash
UTSnowCrash ist offline   Mit Zitat antworten
Alt 02.06.2013, 18:43   #52
jeppo.UTzone
Administrator
 
Benutzerbild von jeppo
 
Registriert seit: 13.11.2009
Ort: Neuss
Alter: 54
Beiträge: 2.084
Beigetretene Cups: 0
Cup Siege: 0
Downloads: 23
Uploads: 0
Standard

>> anstatt >
__________________
Wer von meiner kostenlosen Hilfe profitiert muss mit meinem, Sarkasmus leben.
dejeppo @ | Xbox Live | Twitter | Twitch.tv |
jeppo ist offline   Mit Zitat antworten
Alt 02.06.2013, 19:07   #53
UTSnowCrash
Grünschnabel
 
Registriert seit: 30.05.2013
Beiträge: 12
Beigetretene Cups: 0
Cup Siege: 0
Downloads: 32
Uploads: 0
Standard

Hallo jeppo,

>> anstatt > ???
Kapier ich nicht, kann aber auch an meinem alter liegen.

Trotzdem nochmal Danke.

Für alle die das gleiche Problem haben, anwesende natürlich ausgenommen, hier ein Script mit dem sich das von mir gewünschte Ergebnis erzielen läßt,mit freundlicher Unterstützung von jeppo.

Zitat:
#!/bin/sh
#
# chatlogs aufraeumen
#
LOGBASE="PFAD ZU DEN LOGS"
LOGFILE="LOG IDENTIFIER*"
ARCHNAME="ARCHIV NAME"
timestamp=$( date +%Y-%m-%d-%H%M )

find $LOGBASE/$LOGFILE >$LOGBASE/$ARCHNAME.tmp
cat $LOGBASE/$ARCHNAME.tmp | xargs cat >$LOGBASE/$ARCHNAME-"$timestamp".log
rm $(cat $LOGBASE/$ARCHNAME.tmp | xargs)

# end chatlogs aufraeumen

Gruß
Snowcrash

PS Bitte nicht als root und in / laufen lassen.
PPS Für die Benutzung, und aus den daraus entstehenden Problemen, übernehme ich keine Verantwortung.
UTSnowCrash ist offline   Mit Zitat antworten
Alt 02.06.2013, 19:38   #54
jeppo.UTzone
Administrator
 
Benutzerbild von jeppo
 
Registriert seit: 13.11.2009
Ort: Neuss
Alter: 54
Beiträge: 2.084
Beigetretene Cups: 0
Cup Siege: 0
Downloads: 23
Uploads: 0
Standard

> überschreibt >> hängt an

aber so wie oben gehts wahrscheinlich auch wobei mans auch mit einer zeile machen könnte

und das mit dem alter ist meine ausrede
__________________
Wer von meiner kostenlosen Hilfe profitiert muss mit meinem, Sarkasmus leben.
dejeppo @ | Xbox Live | Twitter | Twitch.tv |

Geändert von jeppo (02.06.2013 um 19:43 Uhr)
jeppo ist offline   Mit Zitat antworten
Alt 02.06.2013, 20:51   #55
UTSnowCrash
Grünschnabel
 
Registriert seit: 30.05.2013
Beiträge: 12
Beigetretene Cups: 0
Cup Siege: 0
Downloads: 32
Uploads: 0
Standard

ok jetzt hab ich´s verstanden.
ich dachte das sollte irgend ein religiöses Symbol (irgend was mit Fisch) sein.

Ich brauche schon den Kontext sonst steh ich im Wald.

Man kann es in eine Zeile Packen aber lesbarer ist es so. (für mich)
Wenn ich nach einiger Zeit reinkuck komme ich damit besser klar.

Nochmal Danke und Gruß
Snowcrash

Geändert von UTSnowCrash (02.06.2013 um 20:54 Uhr)
UTSnowCrash ist offline   Mit Zitat antworten
Alt 03.06.2013, 18:47   #56
UTSnowCrash
Grünschnabel
 
Registriert seit: 30.05.2013
Beiträge: 12
Beigetretene Cups: 0
Cup Siege: 0
Downloads: 32
Uploads: 0
Daumen runter Restart funktioniert jetzt

Hallo,

die Ursache liegt wohl an den einfachen Ampersand in der restart Sektion.
ich habe diese durch doppelte ersetzt.

Original
Zitat:
restart)
echo -e "Neustart $ACCID dedicated server... "
$0 stop & sleep 3 & $0 start
;;

Neu
Zitat:
restart)
echo -e "Neustart $ACCID dedicated server... "
$0 stop && sleep 3 && $0 start
;;

Ich habe ein Testscript gemacht
Zitat:
#!/bin/bash
#Test
###################################################
#


echo $0 & sleep 3 & echo $1 & sleep 3 & echo $2 & sleep 3 & echo $3 & sleep 3 & echo $4

echo $0 && sleep 3 && echo $1 && sleep 3 && echo $2 && sleep 3 && echo $3 && sleep 3 && echo $4
wenn man dieses mit
./test.sh 1 2 3 4 5
ausführt sieht man das sich das einfache & nicht so verhält wie erwartet.

Das könnt Ihr bestimmt besser erklären.

Außerdem lösche ich der Ordnung wegen noch das pidfile
Zitat:
if ! ps -ef |grep $SERVERDIR/$SERVERSTART|awk -F" " -v game=$SERVERDIR/$SERVERSTART 'BEGIN {status=1} ; $8 == game {status=0} ; END {exit status}' ; then
rm -f $PIDFILE
echo -e "gestoppt"
exit 0
else

Gruß

Snowcrash
UTSnowCrash ist offline   Mit Zitat antworten
Alt 03.06.2013, 19:02   #57
Donzi.UTzone
Der oberste Chaf
 
Benutzerbild von Donzi
 
Registriert seit: 13.11.2009
Ort: Wiesbaden
Alter: 48
Beiträge: 8.719
Beigetretene Cups: 10
Cup Siege: 2
Downloads: 1398
Uploads: 2697
Donzi eine Nachricht über ICQ schicken
Standard

nunja, das war 2007 ^^
da war ich noch nich janz so gut in der bash

&& gehört da immer hin, habs direkt auch angepasst, ebenso das Pidfile-removing.

Dankööö :>

(ewig nich mehr drum gekümmert, da wir UT3 nicht mehr starten/hosten/vermieten)
__________________
•• Alle Letsplays: https://wiki.Donzi.tv
• Discord: https://chat.Donzi.tv
• Twitch: https://Donzi.TV
• Youtube: https://Donzi.YT
• Twitter: https://Donzi.tv/twitter
• Steam: https://Donzi.tv/steam


• Mein Liebling: https://UTzone.de
• Twitter: https://twitter.com/UTzone
• Games kaufen: https://UTzone.de/shop/games
Donzi ist gerade online   Mit Zitat antworten
Alt 03.06.2013, 19:14   #58
jeppo.UTzone
Administrator
 
Benutzerbild von jeppo
 
Registriert seit: 13.11.2009
Ort: Neuss
Alter: 54
Beiträge: 2.084
Beigetretene Cups: 0
Cup Siege: 0
Downloads: 23
Uploads: 0
Standard

Code:
befehl &
schickt befehl in den hintergrund

Code:
befehl1 && befehl2
befehl2 wird nur ausgeführt wenn befehl1 einen exit status von 0 (wahr) zurückliefert
__________________
Wer von meiner kostenlosen Hilfe profitiert muss mit meinem, Sarkasmus leben.
dejeppo @ | Xbox Live | Twitter | Twitch.tv |
jeppo ist offline   Mit Zitat antworten
Alt 03.06.2013, 20:36   #59
UTSnowCrash
Grünschnabel
 
Registriert seit: 30.05.2013
Beiträge: 12
Beigetretene Cups: 0
Cup Siege: 0
Downloads: 32
Uploads: 0
Standard

@Donzi
Immer gerne aber eigentlich habe ich zu Danken.

@jeppo
Danke auch für die Erklärung zum Ampersand.

Gruß
Snowcarsh
UTSnowCrash ist offline   Mit Zitat antworten
Alt 30.08.2013, 09:58   #60
Sindbad79
Einmalposter
 
Registriert seit: 30.08.2013
Ort: Niedersachsen
Beiträge: 1
Beigetretene Cups: 0
Cup Siege: 0
Downloads: 4
Uploads: 0
Standard

Hallo

Euer Serverguide ist klasse. Ich hab meinen Server nach eurer Anleitung erstellt und er hat bisher wunderbar funktioniert.
Leider musste ich meinen Debian V-Server komplett neu machen und seitdem stürzt der UT3-Server immer ab, wenn er die nächste Map laden sollte oder man über das WebInterface eine Änderung in den Einstellungen vornimmt.
Er wird auch in der Ingame Serverliste nicht mehr angezeigt und in meiner Favoritenliste steht der immer mit Ping 9999 als offline drin. Wenn ich aber auf Verbinden klicke, verbindet sich das Spiel trotzdem mit meinen UT3-Server.

Ich habe mein altes Backup vom UT3-Server und auch einen komplett neuen erstellt, bei beiden ist das Problem da, dass der Server abstürzt, sobald sich die nächste Map laden will.

Die folgende log-File ist entstanden als ich versucht habe, eine Änderung im WebAdmin unter Chance Game zu speichern.

UT3-iDM.log
+/- Klappen
Code:
Init: Version: 3808
Init: Epic Internal: 0
Init: Compiled: Apr 22 2009 04:27:51
Init: Command line: server DM-ShangriLa?GameMode=0?Game=UTGame.UTDeathmatch?MinNetPlayers=0?MaxPlayers=16?Numplay=2?BotSkill=7?bShouldAdvertise=True?bIsLanMatch=False?bUsesStats=True?bIsDedicated=True?PureServer=1?ForceRespawn=0?GoalScore=25?TimeLimit=20?bAllowJoinInProgress=True?bAllowInvites=True?bUsesPresence=True?Mutator=?AdminPassword=gehmalbierholen?GamePassword= -configsubdir=iDM -login=ChrnoServer -password=UT3Server -port=7777 -queryport=6500 -multihome=91.250.113.20 -log=UT3-iDM.log -nohomedir -unattended
Init: Base directory: /home/ut3server/ut3-dedicated-neu/Binaries/
Init: Character set: Unicode
Log: GConfig::LoadFile has loaded file:  ../UTGame/Config/iDM/UTEditor.ini
Log: GConfig::LoadFile has loaded file:  ../UTGame/Config/iDM/UTEditorUserSettings.ini
Log: GConfig::LoadFile has loaded file:  ../UTGame/Config/iDM/UTEngine.ini
Log: GConfig::LoadFile has loaded file:  ../UTGame/Config/iDM/UTGame.ini
Log: GConfig::LoadFile has loaded file:  ../UTGame/Config/iDM/UTInput.ini
Log: GConfig::LoadFile has loaded file:  ../UTGame/Config/iDM/UTUI.ini
Log: GConfig::LoadFile has loaded file:  ../UTGame/Config/iDM/UTMapLists.ini
Log: GConfig::LoadFile has loaded file:  ../UTGame/Config/iDM/UTVote.ini
Init: File handle limit is soft=(1024), hard=(1024).
Init: Computer: unknown
Init: User: ut3server
Init: BSD Sockets initialized
Init: Presizing for 83221 objects not considered by GC, pre-allocating 0 bytes.
Init: Object subsystem initialized
Init: Startup System Settings:
Init: System Settings:
Init: 	StaticDecals=true
Init: 	DynamicDecals=true
Init: 	DynamicLights=true
Init: 	DynamicShadows=true
Init: 	LightEnvironmentShadows=true
Init: 	CompositeDynamicLights=false
Init: 	DirectionalLightmaps=true
Init: 	MotionBlur=false
Init: 	DepthOfField=true
Init: 	Bloom=true
Init: 	QualityBloom=true
Init: 	Distortion=true
Init: 	DropParticleDistortion=false
Init: 	SpeedTreeLeaves=true
Init: 	SpeedTreeFronds=true
Init: 	OnlyStreamInTextures=false
Init: 	LensFlares=true
Init: 	FogVolumes=true
Init: 	FloatingPointRenderTargets=true
Init: 	Trilinear=false
Init: 	OneFrameThreadLag=true
Init: 	UseVsync=false
Init: 	UpscaleScreenPercentage=true
Init: 	Fullscreen=false
Init: 	AllowD3D10=true
Init: 	EnableHighPolyChars=false
Init: 	SkeletalMeshLODBias=0
Init: 	ParticleLODBias=0
Init: 	DetailMode=2
Init: 	ShadowFilterQualityBias=0
Init: 	MaxAnisotropy=4
Init: 	MaxMultisamples=1
Init: 	MinShadowResolution=32
Init: 	MaxShadowResolution=512
Init: 	ResX=800
Init: 	ResY=600
Init: 	ScreenPercentage=100.000
Init: 	SceneCaptureStreamingMultiplier=1.000
Init: 	FoliageDrawRadiusMultiplier=1.000
Init: 	ShadowTexelsPerPixel=2.000
Log: 	TEXTUREGROUP_World: (MinLODSize=   1,MaxLODSize=4096,LODBias=0)
Log: 	TEXTUREGROUP_WorldNormalMap: (MinLODSize=   1,MaxLODSize=4096,LODBias=0)
Log: 	TEXTUREGROUP_WorldSpecular: (MinLODSize=   1,MaxLODSize=4096,LODBias=0)
Log: 	TEXTUREGROUP_Character: (MinLODSize=   1,MaxLODSize=4096,LODBias=0)
Log: 	TEXTUREGROUP_CharacterNormalMap: (MinLODSize=   1,MaxLODSize=4096,LODBias=0)
Log: 	TEXTUREGROUP_CharacterSpecular: (MinLODSize=   1,MaxLODSize=4096,LODBias=0)
Log: 	TEXTUREGROUP_Weapon: (MinLODSize=   1,MaxLODSize=4096,LODBias=0)
Log: 	TEXTUREGROUP_WeaponNormalMap: (MinLODSize=   1,MaxLODSize=4096,LODBias=0)
Log: 	TEXTUREGROUP_WeaponSpecular: (MinLODSize=   1,MaxLODSize=4096,LODBias=0)
Log: 	TEXTUREGROUP_Vehicle: (MinLODSize=   1,MaxLODSize=4096,LODBias=0)
Log: 	TEXTUREGROUP_VehicleNormalMap: (MinLODSize=   1,MaxLODSize=4096,LODBias=0)
Log: 	TEXTUREGROUP_VehicleSpecular: (MinLODSize=   1,MaxLODSize=4096,LODBias=0)
Log: 	TEXTUREGROUP_Effects: (MinLODSize=   1,MaxLODSize=4096,LODBias=0)
Log: 	TEXTUREGROUP_Skybox: (MinLODSize=   1,MaxLODSize=4096,LODBias=0)
Log: 	TEXTUREGROUP_UI: (MinLODSize=   1,MaxLODSize=4096,LODBias=0)
Log: 	TEXTUREGROUP_LightAndShadowMap: (MinLODSize=   1,MaxLODSize=4096,LODBias=0)
Log: 	TEXTUREGROUP_RenderTarget: (MinLODSize=   1,MaxLODSize=4096,LODBias=0)
Init: Friendly System Settings:
Init: 	TextureDetail=Level5
Init: 	WorldDetail=Level5
Init: 	bUseVSync=0
Init: 	bUseMSAA=0
Init: 	ScreenPercentage=100
Init: 	UpscaleScreenPercentage=1
Init: 	ResX= 800
Init: 	ResY= 600
Init: 	Fullscreen=0
Init: 	AllowMotionBlur=0
Log: Initializing FaceFX...
Log: FaceFX initialized:
Log:     version  1.710000
Log:     licensee Unreal Engine 3 Licensee
Log:     project  Unreal Engine 3 Project
Log: GConfig::Find has loaded file:  ..\Engine\Localization/int/Core.int
Log: GConfig::Find has loaded file:  ..\Engine\Localization/int/Engine.int
Log: Loaded shader cache RefShaderCache-PC-D3D-SM3.CacheObject: 27892 shaders(2 legacy, 0 redundant), 2950 materials
Log: GConfig::Find has loaded file:  ..\Engine\Localization/int/UnrealScriptTest.int
Log: GConfig::Find has loaded file:  ..\UTGame\Localization/int/UTGame.int
Log: GConfig::LoadFile has loaded file:  ../UTGame/Config/iDM/UTWeapon.ini
Log: GConfig::LoadFile has loaded file:  ../UTGame/Config/iDM/UTCustomChar.ini
Log: GConfig::LoadFile associated file:  ../UTGame/Config/iDM/UTMap.ini
Log: GConfig::LoadFile has loaded file:  ../UTGame/Config/iDM/UTWeb.ini
Log: GConfig::Find has loaded file:  ..\Engine\Localization/int/OnlineSubsystemGameSpy.int
Log: GConfig::Find has loaded file:  ..\UTGame\Localization/int/UTGameContent.int
Init: Version: 3808
Init: Epic Internal: 0
Init: Compiled: Apr 22 2009 04:34:47
Init: Command line:  DM-ShangriLa?GameMode=0?Game=UTGame.UTDeathmatch?MinNetPlayers=0?MaxPlayers=16?Numplay=2?BotSkill=7?bShouldAdvertise=True?bIsLanMatch=False?bUsesStats=True?bIsDedicated=True?PureServer=1?ForceRespawn=0?GoalScore=25?TimeLimit=20?bAllowJoinInProgress=True?bAllowInvites=True?bUsesPresence=True?Mutator=?AdminPassword=gehmalbierholen?GamePassword= -configsubdir=iDM -login=ChrnoServer -password=UT3Server -port=7777 -queryport=6500 -multihome=91.250.113.20 -log=UT3-iDM.log -nohomedir -unattended
Init: Base directory: /home/ut3server/ut3-dedicated-neu/Binaries/
Init: Character set: Unicode
Log: Executing Class Engine.ServerCommandlet
Log: Initializing Game Engine...
Init: UEngine initialized
Log: Looking for DLC...
Log: Object size..............: 60
Log: Actor size...............: 436
Log: ActorComponent size......: 88
Log: PrimitiveComponent size..: 448
Log: GConfig::Find has loaded file:  ../UTGame/Config/iDM/UTWebAdmin.ini
Log: Performing DNS lookup for stunserver.org
Log: Browse: DM-ShangriLa?Name=Player?team=255?GameMode=0?Game=UTGame.UTDeathmatch?MinNetPlayers=0?MaxPlayers=16?Numplay=2?BotSkill=7?bShouldAdvertise=True?bIsLanMatch=False?bUsesStats=True?bIsDedicated=True?PureServer=1?ForceRespawn=0?GoalScore=25?TimeLimit=20?bAllowJoinInProgress=True?bAllowInvites=True?bUsesPresence=True?Mutator=?AdminPassword=gehmalbierholen?GamePassword=
Log: Award progress has now been fully reenabled!
Log: LoadMap: DM-ShangriLa?Name=Player?team=255?GameMode=0?Game=UTGame.UTDeathmatch?MinNetPlayers=0?MaxPlayers=16?Numplay=2?BotSkill=7?bShouldAdvertise=True?bIsLanMatch=False?bUsesStats=True?bIsDedicated=True?PureServer=1?ForceRespawn=0?GoalScore=25?TimeLimit=20?bAllowJoinInProgress=True?bAllowInvites=True?bUsesPresence=True?Mutator=?AdminPassword=gehmalbierholen?GamePassword=
Log: Game class is 'UTDeathmatch'
Init: Sockets: Socket queue 262142 / 262142
Log: NetMode is now 1
Log: Primary PhysX scene will be in software.
Log: Creating Primary PhysX Scene.
Log: Novodex Terrain Creation (Terrain_0): 3.934000 ms
Log: Bringing World DM-ShangriLa.TheWorld up for play (30) at 2013.08.30-09.46.10
ScriptLog: MinNetPlayers:  0
ScriptLog: Current map is not the maplist's active map, updating maplist
UTVoting: Map voting is enabled
ScriptLog: Web Server Created http://91.250.113.20:8008 Port: 8008 MaxCon 18 ExpirationSecs 86400 Enabled True
Log: GConfig::Find has loaded file:  ..\UTGame\Localization/int/WebAdmin.int
WebAdmin: Starting UT3 WebAdmin v1.17 - 2009-09-13 20:13:18 +0000
WebAdmin: Creating IWebAdminAuth instance from: BasicWebAdminAuth
WebAdmin: Creating ISessionHandler instance from: SessionHandler
WebAdmin: Updating news...
Log: Bringing up level for play took: 0.643895
Log: ########### Finished loading level: 4.290034 seconds
Init: Game engine initialized
Log: Initializing Game Engine Completed
NetComeGo: Open TheWorld  31.19.32.37:57979
Log: FHttpDownload resolved gamecontent.unrealtournament3.com (199.255.40.77)
Log: FHttpDownload resolved gamecontent.unrealtournament3.com (199.255.40.77)
Log: FSTUNClient resolved stunserver.org (132.177.123.6)
Log: FSTUNClient starting test 1...
Log: Performing DNS lookup for stun.xten.com
Log: FSTUNClient resolved stun.xten.com (216.93.246.14)
Log: FSTUNClient starting test 1...
Log: FSTUNClient test timeout, NAT is strict.
ScriptLog: Attempting to re-register the game with the online service
ScriptLog: Cut down URL ?Name=Player?team=255?GameMode=0?Game=UTGame.UTDeathmatch?MinNetPlayers=0?MaxPlayers=16?Numplay=2?BotSkill=7?bShouldAdvertise=True?bIsLanMatch=False?bUsesStats=True?bIsDedicated=True?PureServer=1?ForceRespawn=0?GoalScore=25?TimeLimit=20?bAllowJoinInProgress=True?bAllowInvites=True?bUsesPresence=True?AdminPassword=gehmalbierholen?GamePassword=
ScriptLog: Cut down URL ?Name=Player?team=255?GameMode=0?MinNetPlayers=0?MaxPlayers=16?Numplay=2?BotSkill=7?bShouldAdvertise=True?bIsLanMatch=False?bUsesStats=True?bIsDedicated=True?PureServer=1?ForceRespawn=0?GoalScore=25?TimeLimit=20?bAllowJoinInProgress=True?bAllowInvites=True?bUsesPresence=True?AdminPassword=gehmalbierholen?GamePassword=
ScriptLog: Cut down URL ?Name=Player?GameMode=0?MinNetPlayers=0?MaxPlayers=16?Numplay=2?BotSkill=7?bShouldAdvertise=True?bIsLanMatch=False?bUsesStats=True?bIsDedicated=True?PureServer=1?ForceRespawn=0?GoalScore=25?TimeLimit=20?bAllowJoinInProgress=True?bAllowInvites=True?bUsesPresence=True?AdminPassword=gehmalbierholen?GamePassword=
ScriptLog: Cut down URL ?GameMode=0?MinNetPlayers=0?MaxPlayers=16?Numplay=2?BotSkill=7?bShouldAdvertise=True?bIsLanMatch=False?bUsesStats=True?bIsDedicated=True?PureServer=1?ForceRespawn=0?GoalScore=25?TimeLimit=20?bAllowJoinInProgress=True?bAllowInvites=True?bUsesPresence=True?AdminPassword=gehmalbierholen?GamePassword=
ScriptLog: Cut down URL ?GameMode=0?MinNetPlayers=0?MaxPlayers=16?Numplay=2?BotSkill=7?bShouldAdvertise=True?bIsLanMatch=False?bUsesStats=True?bIsDedicated=True?PureServer=1?ForceRespawn=0?GoalScore=25?TimeLimit=20?bAllowJoinInProgress=True?bAllowInvites=True?bUsesPresence=True?AdminPassword=gehmalbierholen?GamePassword=
ScriptLog: Cut down URL ?GameMode=0?MinNetPlayers=0?MaxPlayers=16?Numplay=2?BotSkill=7?bShouldAdvertise=True?bIsLanMatch=False?bUsesStats=True?bIsDedicated=True?PureServer=1?ForceRespawn=0?GoalScore=25?TimeLimit=20?bAllowJoinInProgress=True?bAllowInvites=True?bUsesPresence=True?AdminPassword=gehmalbierholen
ScriptLog: Cut down URL ?GameMode=0?MinNetPlayers=0?MaxPlayers=16?Numplay=2?BotSkill=7?bShouldAdvertise=True?bIsLanMatch=False?bUsesStats=True?bIsDedicated=True?PureServer=1?ForceRespawn=0?GoalScore=25?TimeLimit=20?bAllowJoinInProgress=True?bAllowInvites=True?bUsesPresence=True
ScriptLog: Cut down URL ?GameMode=0?MinNetPlayers=0?MaxPlayers=16?Numplay=2?BotSkill=7?bShouldAdvertise=True?bIsLanMatch=False?bUsesStats=True?bIsDedicated=True?PureServer=1?ForceRespawn=0?GoalScore=25?TimeLimit=20?bAllowJoinInProgress=True?bAllowInvites=True?bUsesPresence=True
ScriptLog: Cut down URL ?GameMode=0?MinNetPlayers=0?MaxPlayers=16?Numplay=2?BotSkill=7?bShouldAdvertise=True?bIsLanMatch=False?bUsesStats=True?bIsDedicated=True?PureServer=1?ForceRespawn=0?GoalScore=25?TimeLimit=20?bAllowJoinInProgress=True?bAllowInvites=True?bUsesPresence=True
Log: GConfig::Find has loaded file:  ..\UTGame\Localization/int/UTGameUI.int
ScriptLog: Cut down URL ?Name=Player?team=255?GameMode=0?Game=UTGame.UTDeathmatch?MinNetPlayers=0?MaxPlayers=16?Numplay=2?BotSkill=7?bShouldAdvertise=True?bIsLanMatch=False?bUsesStats=True?bIsDedicated=True?PureServer=1?ForceRespawn=0?GoalScore=25?TimeLimit=20?bAllowJoinInProgress=True?bAllowInvites=True?bUsesPresence=True?AdminPassword=gehmalbierholen?GamePassword=
ScriptLog: Cut down URL ?Name=Player?team=255?GameMode=0?MinNetPlayers=0?MaxPlayers=16?Numplay=2?BotSkill=7?bShouldAdvertise=True?bIsLanMatch=False?bUsesStats=True?bIsDedicated=True?PureServer=1?ForceRespawn=0?GoalScore=25?TimeLimit=20?bAllowJoinInProgress=True?bAllowInvites=True?bUsesPresence=True?AdminPassword=gehmalbierholen?GamePassword=
ScriptLog: Cut down URL ?Name=Player?GameMode=0?MinNetPlayers=0?MaxPlayers=16?Numplay=2?BotSkill=7?bShouldAdvertise=True?bIsLanMatch=False?bUsesStats=True?bIsDedicated=True?PureServer=1?ForceRespawn=0?GoalScore=25?TimeLimit=20?bAllowJoinInProgress=True?bAllowInvites=True?bUsesPresence=True?AdminPassword=gehmalbierholen?GamePassword=
ScriptLog: Cut down URL ?GameMode=0?MinNetPlayers=0?MaxPlayers=16?Numplay=2?BotSkill=7?bShouldAdvertise=True?bIsLanMatch=False?bUsesStats=True?bIsDedicated=True?PureServer=1?ForceRespawn=0?GoalScore=25?TimeLimit=20?bAllowJoinInProgress=True?bAllowInvites=True?bUsesPresence=True?AdminPassword=gehmalbierholen?GamePassword=
ScriptLog: Cut down URL ?GameMode=0?MinNetPlayers=0?MaxPlayers=16?Numplay=2?BotSkill=7?bShouldAdvertise=True?bIsLanMatch=False?bUsesStats=True?bIsDedicated=True?PureServer=1?ForceRespawn=0?GoalScore=25?TimeLimit=20?bAllowJoinInProgress=True?bAllowInvites=True?bUsesPresence=True?AdminPassword=gehmalbierholen?GamePassword=
ScriptLog: Cut down URL ?GameMode=0?MinNetPlayers=0?MaxPlayers=16?Numplay=2?BotSkill=7?bShouldAdvertise=True?bIsLanMatch=False?bUsesStats=True?bIsDedicated=True?PureServer=1?ForceRespawn=0?GoalScore=25?TimeLimit=20?bAllowJoinInProgress=True?bAllowInvites=True?bUsesPresence=True?AdminPassword=gehmalbierholen
ScriptLog: Cut down URL ?GameMode=0?MinNetPlayers=0?MaxPlayers=16?Numplay=2?BotSkill=7?bShouldAdvertise=True?bIsLanMatch=False?bUsesStats=True?bIsDedicated=True?PureServer=1?ForceRespawn=0?GoalScore=25?TimeLimit=20?bAllowJoinInProgress=True?bAllowInvites=True?bUsesPresence=True
ScriptLog: Cut down URL ?GameMode=0?MinNetPlayers=0?MaxPlayers=16?Numplay=2?BotSkill=7?bShouldAdvertise=True?bIsLanMatch=False?bUsesStats=True?bIsDedicated=True?PureServer=1?ForceRespawn=0?GoalScore=25?TimeLimit=20?bAllowJoinInProgress=True?bAllowInvites=True?bUsesPresence=True
ScriptLog: Cut down URL ?GameMode=0?MinNetPlayers=0?MaxPlayers=16?Numplay=2?BotSkill=7?bShouldAdvertise=True?bIsLanMatch=False?bUsesStats=True?bIsDedicated=True?PureServer=1?ForceRespawn=0?GoalScore=25?TimeLimit=20?bAllowJoinInProgress=True?bAllowInvites=True?bUsesPresence=True
ScriptLog: Add GameMode at 0
ScriptLog: Add MinNetPlayers at 1
ScriptLog: Add MaxPlayers at 2
ScriptLog: Add Numplay at 3
ScriptLog: Add BotSkill at 4
ScriptLog: Add bShouldAdvertise at 5
ScriptLog: Add bIsLanMatch at 6
ScriptLog: Add bUsesStats at 7
ScriptLog: Add bIsDedicated at 8
ScriptLog: Add PureServer at 9
ScriptLog: Add ForceRespawn at 10
ScriptLog: Add GoalScore at 11
ScriptLog: Add TimeLimit at 12
ScriptLog: Add bAllowJoinInProgress at 13
ScriptLog: Add bAllowInvites at 14
ScriptLog: Add bUsesPresence at 15
ScriptLog: Add mutator at 16
ScriptLog: Add game at 17
ScriptLog: ProcessServerTravel: DM-ShangriLa?GameMode=0?MinNetPlayers=0?MaxPlayers=16?Numplay=2?BotSkill=7?bShouldAdvertise=True?bIsLanMatch=False?bUsesStats=True?bIsDedicated=True?PureServer=1?ForceRespawn=0?GoalScore=25?TimeLimit=20?bAllowJoinInProgress=True?bAllowInvites=True?bUsesPresence=True?mutator=UTGame.UTMutator_SuperBerserk?game=UTGame.UTDeathmatch?GamePassword?AdminPassword=gehmalbierholen
Log: URL: Adding default option Name=Player
Log: URL: Adding default option team=255
Log: SeamlessTravel to: DM-ShangriLa
Log: ClearAllAnimSetLinkupCaches - Took 8.57ms
Uninitialized: 
Developer Backtrace:
Uninitialized: Exiting.
Uninitialized: Name subsystem shutting down
Signal: SIGIOT [iot trap]
Aborting.


Crash information will be saved to your logfile.



Bin dankbar für Ideen

LG
Sindbad79 ist offline   Mit Zitat antworten
Antwort


Im Moment aktive Benutzer, die diesen Artikel betrachten: 1 (0 Registrierte Benutzer und 1 Gäste)
 
Artikel Werkzeuge Diesen Artikel durchsuchen
Diesen Artikel durchsuchen:

Erweiterte Suche

Forumregeln
Es ist Ihnen nicht erlaubt, neue Themen zu verfassen.
Es ist Ihnen nicht erlaubt, auf Beiträge zu antworten.
Es ist Ihnen nicht erlaubt, Anhänge hochzuladen.
Es ist Ihnen nicht erlaubt, Ihre Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist an.

Gehe zu


Alle Zeitangaben in WEZ +1. Es ist jetzt 16:24 Uhr.

Powered by vBulletin® Version 3.8.11 (Deutsch)
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
CopyRight-Licence © 1999 - 2024 by UTzone.de