Error Messages

Discussions about UT99
User avatar
EvilGrins
Godlike
Posts: 9668
Joined: Thu Jun 30, 2011 8:12 pm
Personal rank: God of Fudge
Location: Palo Alto, CA
Contact:

Re: Bat1.PlayDeathHit

Post by EvilGrins »

Barbie wrote: Wed Sep 01, 2021 1:07 pmI used class'Bird1' from UnrealShare.u instead and set the MultiSkin manually.
That's what I usually do... though I'm still clearing up the background on that bottom one.
Attachments
KasarullDragon.png
KasarullDragon.png (17.53 KiB) Viewed 1104 times
Jangel0.png
Jangel0.png (20.52 KiB) Viewed 1104 times
Bird2.png
Bird2.png (17.05 KiB) Viewed 1104 times
batz.png
batz.png (39.12 KiB) Viewed 1104 times
http://unreal-games.livejournal.com/
Image
medor wrote:Replace Skaarj with EvilGrins :mrgreen:
Smilies · viewtopic.php?f=8&t=13758
User avatar
Barbie
Godlike
Posts: 2792
Joined: Fri Sep 25, 2015 9:01 pm
Location: moved without proper hashing

Re: Error Messages (solved)

Post by Barbie »

Whow, it is the first time I got this error:
---------------------------
Critical Error
---------------------------
General protection fault!


History: UGameEngine::LoadMap <- AttemptLoadPending <- TickPending <- UGameEngine::Tick <- UpdateWorld <- MainLoop
GPF.jpg
GPF.jpg (19.19 KiB) Viewed 1097 times
It happens when I try to connect to my test server running a new map. It happens with v436 as well as v469c. Ther are no concerning messages in the server log, the maps runs fine on server. If I start other maps on server, I can connect without problems.
Client's UnrealTournament.log ends with this
...
DevNet: PendingLevel received: WELCOME LEVEL=MH-Malus_Keep+SBMod(beta) LONE=1
DevNet: Welcomed by server: LEVEL=MH-Malus_Keep+SBMod(beta) LONE=1
Log: LoadMap: myUT99Server.office.local/MH-Malus_Keep+SBMod(beta)?Name=Barbie?Class=BotPack.TFemale1?team=0?skin=FCommandoSkins_Negaverse_Titus.ttus?Face=FCommandoSkins_Negaverse_Titus.titus?Voice=BotPack.VoiceFemaleTwo?OverrideClass=
DevAudio: Cluster SetViewport: WindowsViewport0
Init: Shut down moving brush tracker for Level CityIntro.MyLevel
Critical: UGameEngine::LoadMap
Critical: AttemptLoadPending
Critical: TickPending
Critical: UGameEngine::Tick
Critical: UpdateWorld
Critical: MainLoop
Exit: Executing UObject::StaticShutdownAfterError
Exit: Executing UWindowsClient::ShutdownAfterError
Exit: Cluster shut down after error.
Log: DirectDraw End Mode
Exit: UD3D9RenderDevice::ShutdownAfterError
Exit: Exiting.
Log: Log file closed, 09/01/21 20:54:49
<EDIT>
Forgot to mention: the map runs local without problems.
</EDIT>
<EDIT 2>
Found the mistake: LevelInfo.bLonePlayer was set tor TRUE
Stock code says:

Code: Select all

var() bool           bLonePlayer;     // No multiplayer coordination, i.e. for entranceways.
</EDIT 2>
"Multiple exclamation marks," he went on, shaking his head, "are a sure sign of a diseased mind." --Terry Pratchett
User avatar
EvilGrins
Godlike
Posts: 9668
Joined: Thu Jun 30, 2011 8:12 pm
Personal rank: God of Fudge
Location: Palo Alto, CA
Contact:

Re: Error Messages

Post by EvilGrins »

This is one of those little things that doesn't happen all the time, just like every other time I play. Sometimes only once every few plays.

What does it mean and any ideas on how to make it happen less often?
Attachments
Clip0019.png
Clip0019.png (11.29 KiB) Viewed 935 times
http://unreal-games.livejournal.com/
Image
medor wrote:Replace Skaarj with EvilGrins :mrgreen:
Smilies · viewtopic.php?f=8&t=13758
User avatar
Barbie
Godlike
Posts: 2792
Joined: Fri Sep 25, 2015 9:01 pm
Location: moved without proper hashing

Re: Error Messages

Post by Barbie »

EvilGrins wrote: Sat Jun 18, 2022 6:23 am FatSkaarjZombie
What package is it in?
"Multiple exclamation marks," he went on, shaking his head, "are a sure sign of a diseased mind." --Terry Pratchett
User avatar
OjitroC
Godlike
Posts: 3605
Joined: Sat Sep 12, 2015 8:46 pm

Re: Error Messages

Post by OjitroC »

Barbie wrote: Sat Jun 18, 2022 8:43 am What package is it in?
MUPawns.u

EvilGrins wrote: Sat Jun 18, 2022 6:23 am This is one of those little things that doesn't happen all the time, just like every other time I play. Sometimes only once every few plays.

What does it mean and any ideas on how to make it happen less often?
I think that that error has been fixed in 469 but I'm not sure.

I can't reproduce it (playing for about 20 minutes with the FatSkaarjZombie spawned by MonsterSpawn) - though I'm not playing the map you're using it in of course.

The MUPawns package is buggy - huge skaarj pawn, marine with no mesh, Skrag with no anims, gizmo as a sprite, etc, etc - or unfinished - so there may well be coding and other errrors in it.

If that crash keeps on happening then the only real way to stop it is not to use that particular pawn.
User avatar
Barbie
Godlike
Posts: 2792
Joined: Fri Sep 25, 2015 9:01 pm
Location: moved without proper hashing

Re: Error Messages

Post by Barbie »

It looks looks the runaway loop happens when a FatSkaarjZombie sees a ScriptedPawn with AttitudeToEnemy == ATTITUDE_Friendly that is first found in Level.PawnList. The function FatSkaarjZombie.WhatToDoNext() calls ScriptedPawn.Attacking.ChooseAttackMode() what calls WhatToDoNext() then -> endless loop.

Try setting FatSkaarjZombie.bIgnoreFriends to TRUE in property section "AI" to avoid that endless loop.
"Multiple exclamation marks," he went on, shaking his head, "are a sure sign of a diseased mind." --Terry Pratchett
User avatar
EvilGrins
Godlike
Posts: 9668
Joined: Thu Jun 30, 2011 8:12 pm
Personal rank: God of Fudge
Location: Palo Alto, CA
Contact:

Re: Error Messages

Post by EvilGrins »

OjitroC wrote: Sat Jun 18, 2022 10:23 amI can't reproduce it (playing for about 20 minutes with the FatSkaarjZombie spawned by MonsterSpawn) - though I'm not playing the map you're using it in of course.
You'll likely get a chance soon... I may move them from the main path to one of the corner towers, so less will be spawned and hopefully that'll limit the chances of it happening again.
http://unreal-games.livejournal.com/
Image
medor wrote:Replace Skaarj with EvilGrins :mrgreen:
Smilies · viewtopic.php?f=8&t=13758
User avatar
OjitroC
Godlike
Posts: 3605
Joined: Sat Sep 12, 2015 8:46 pm

Re: Error Messages

Post by OjitroC »

EvilGrins wrote: Sat Jun 18, 2022 5:46 pm
OjitroC wrote: Sat Jun 18, 2022 10:23 amI can't reproduce it (playing for about 20 minutes with the FatSkaarjZombie spawned by MonsterSpawn) - though I'm not playing the map you're using it in of course.
You'll likely get a chance soon... I may move them from the main path to one of the corner towers, so less will be spawned and hopefully that'll limit the chances of it happening again.
If you are doing an XVehicles version and the FatSkaarjZombies are only spawned if someone goes into one of the towers, then it may not happen at all if players don't need to go into those towers.

I've got FSZs in MonsterSpawn and have not encountered any issues with them after quite a few plays - I did what Barbie suggested and set bIgnoreFriends to True. In fact I have all of the useable MUPawns in MonsterSpawn and they're all fine - the GhostSkaarj is problematic but only because it is invisible basically and only noticeable by the sound it makes when attacking one!
User avatar
OjitroC
Godlike
Posts: 3605
Joined: Sat Sep 12, 2015 8:46 pm

Re: Error Messages

Post by OjitroC »

Got the following error (in DM-AmericanSuburbsDaylight) - any idea what might cause it?
Log wrote:Critical: FLightManager::SetupForActor
Critical: URender::DrawLodMesh
Critical: (LodMesh Botpack.BioGelm)
Critical: DrawMesh
Critical: URender::DrawActorSprite
Critical: URender::DrawFrame
Critical: URender::DrawWorld
Critical: UGameEngine::Draw
Critical: UWindowsViewport::Repaint
Critical: UWindowsClient::Tick
Critical: ClientTick
Critical: UGameEngine::Tick
Critical: UpdateWorld
Critical: MainLoop
Exit: Executing UObject::StaticShutdownAfterError
Exit: Executing UWindowsClient::ShutdownAfterError
Exit: UGalaxyAudioSubsystem::ShutdownAfterError
Log: DirectDraw End Mode
Exit: UOpenGLRenderDevice::ShutdownAfterError
Exit: Exiting.
In 469b, using the EXUOpenGLDrv renderer and playing MonsterSpawn - none of the ScriptedPawns has a weapon that fires the Botpack.UT_BioGel/BioGlob projectiles that use the BioGelm mesh and there are no default UT weapons in the map, everything being replaced (by StuffSwapper) with CounterStrike weapons - these are all bullet-firing weapons.

I recall getting this error before so I don't think it is related to the map - actually got it in this map (viewtopic.php?f=5&t=14420).
User avatar
EvilGrins
Godlike
Posts: 9668
Joined: Thu Jun 30, 2011 8:12 pm
Personal rank: God of Fudge
Location: Palo Alto, CA
Contact:

Re: Error Messages

Post by EvilGrins »

OjitroC wrote: Wed Jul 20, 2022 10:57 pmplaying MonsterSpawn - none of the ScriptedPawns has a weapon that fires the Botpack.UT_BioGel/BioGlob projectiles
What monsters do you have in your selection of MonsterSpawn? Maybe it's not a projectile.

I know the keekalien.alienpawn, for example, when it dies it sprays the area near where it died with that projectile; for the alien acid effect.
http://unreal-games.livejournal.com/
Image
medor wrote:Replace Skaarj with EvilGrins :mrgreen:
Smilies · viewtopic.php?f=8&t=13758
User avatar
OjitroC
Godlike
Posts: 3605
Joined: Sat Sep 12, 2015 8:46 pm

Re: Error Messages

Post by OjitroC »

EvilGrins wrote: Thu Jul 21, 2022 4:08 am What monsters do you have in your selection of MonsterSpawn? Maybe it's not a projectile.

I know the keekalien.alienpawn, for example, when it dies it sprays the area near where it died with that projectile; for the alien acid effect.
At the moment, mostly ScriptedHumans, subclassed from Skaarj - along with some actual Skaarj-warrior types. So I don't think it's that but that's not something I had thought about.

Yes, that got me thinking - I use NWUltraGoreSSEb and this uses the BioGelm mesh (though I don't know where as there are a lot of classes to look through) - so this is where that mesh comes from.

What remains unclear is why that should cause the fatal error.
User avatar
OjitroC
Godlike
Posts: 3605
Joined: Sat Sep 12, 2015 8:46 pm

Re: Error Messages

Post by OjitroC »

Got the same error again - this time in DM-(LAGG)MountainCity - with a different renderer (D3D9) and a different set of ScriptedPawns, none of which uses a weapon with, or fires, a projectile with the BioGelm mesh. So still no idea about what causes the error beyond the possibility that it is linked to NWUltraGoreSSEb.
Forum|User
Experienced
Posts: 98
Joined: Fri Aug 08, 2014 6:07 pm

Re: Error Messages

Post by Forum|User »

Having an error message in UnrealEd 2.2 after "Build All". The problem came out of nowhere, it suddenly broke down.
Probléma-aláírás:
Problémaesemény neve: AppHangB1
Alkalmazásnév: UnrealEd.exe
Alkalmazás verziója: 2.2.0.0
Alkalmazás időbélyegzője: 62ed4246
Lefagyási aláírás: 3175
Lefagyás típusa: 0
Operációs rendszer verziója: 6.1.7601.2.1.0.256.1
Területibeállítás-azonosító: 1038
1. további lefagyási aláírás: 3175451f4de4d8218bee313b06f6c9d0
2. további lefagyási aláírás: d4ba
3. további lefagyási aláírás: d4ba50f80716623b8531547da1ce4057
4. további lefagyási aláírás: 3175
5. további lefagyási aláírás: 3175451f4de4d8218bee313b06f6c9d0
6. további lefagyási aláírás: d4ba
7. további lefagyási aláírás: d4ba50f80716623b8531547da1ce4057
Image
Buggie
Godlike
Posts: 2697
Joined: Sat Mar 21, 2020 5:32 am

Re: Error Messages

Post by Buggie »

Need more info. If this each time on build particular map - need attach this map with all assets to post.
Or show any other way for reproduce it.
User avatar
sektor2111
Godlike
Posts: 6403
Joined: Sun May 09, 2010 6:15 pm
Location: On the roof.

Re: Error Messages

Post by sektor2111 »

227 is now a mix with 469 ? Interesting "backward compatibility"...
Post Reply