If the player kills the NPC, it crashes

Hi, Iโ€™m trying to pop up a UI that says I won if the player killed the NPC.
But now I have a problem. Crash has occurred.
Let me show you the crash first.

LoginId:c94d24654bb053080c17c2ad5040f05a
EpicAccountId:fccedefcd3d646a6a9f2c9f009701903

Unhandled Exception: EXCEPTION_ACCESS_VIOLATION reading address 0x0000000000000458

UnrealEditor_LifeOfLuck!UE::CoreUObject::Private::ResolveObjectHandleNoRead() [D:\UE_5.3\Engine\Source\Runtime\CoreUObject\Public\UObject\ObjectHandle.h:256]
UnrealEditor_LifeOfLuck!AOLGameMode::DeadCheck() [D:\Project\LifeOfLuck\Source\LifeOfLuck\GameMode\OLGameMode.cpp:35]
UnrealEditor_LifeOfLuck!AOLCharacterBase::TakeDamage() [D:\Project\LifeOfLuck\Source\LifeOfLuck\Character\OLCharacterBase.cpp:182]
UnrealEditor_LifeOfLuck!AOLCharacterBase::AttackHitCheck() [D:\Project\LifeOfLuck\Source\LifeOfLuck\Character\OLCharacterBase.cpp:153]
UnrealEditor_Engine
UnrealEditor_Engine
UnrealEditor_Engine
UnrealEditor_Engine
UnrealEditor_Engine
UnrealEditor_Engine
UnrealEditor_Engine
UnrealEditor_Engine
UnrealEditor_Engine
UnrealEditor_Engine
UnrealEditor_Core
UnrealEditor_Core
UnrealEditor_Engine
UnrealEditor_Engine
UnrealEditor_Engine
UnrealEditor_Engine
UnrealEditor_UnrealEd
UnrealEditor_UnrealEd
UnrealEditor
UnrealEditor
UnrealEditor
UnrealEditor
UnrealEditor
UnrealEditor
kernel32
ntdll

And now Iโ€™m going to show you my code.

float AOLCharacterBase::TakeDamage(float DamageAmount, struct FDamageEvent const& DamageEvent, AController* EventInstigator, AActor* DamageCauser)
{
	Super::TakeDamage(DamageAmount, DamageEvent, EventInstigator, DamageCauser);

	Hp = FMath::Clamp(Hp - DamageAmount, 0.0f, MaxHp);	// ์ฒด๋ ฅ  ์—…๋ฐ์ดํŠธ

	UE_LOG(LogTemp, Warning, TEXT("Damage = %f"), DamageAmount);
	UE_LOG(LogTemp, Warning, TEXT("Hp = %f"), Hp);

	// ์ฒด๋ ฅ์ด 0 ์ดํ•˜์ธ ๊ฒฝ์šฐ
	if (Hp <= 0.0f)
	{
		AOLGameMode* GameMode = Cast<AOLGameMode>(GetWorld()->GetAuthGameMode());	// ๊ฒŒ์ž„๋ชจ๋“œ ๊ฐ€์ ธ์˜ค๊ธฐ
		if (GameMode)
		{
			GameMode->DeadCheck(this);	// ์–ด๋–ค ์บ๋ฆญํ„ฐ๊ฐ€ ์ฃฝ์—ˆ๋Š”์ง€ ํ™•์ธ
		}

		Dead();	// ์ฃฝ์—ˆ์œผ๋‹ˆ ํ•จ์ˆ˜ ํ˜ธ์ถœ

		UE_LOG(LogTemp, Error, TEXT("Dead!"));
	}

	return DamageAmount;
}
AOLGameMode::AOLGameMode()
{
	NPCs = 0;
}

void AOLGameMode::BeginPlay()
{
	Super::BeginPlay();

	GameStart();
}

void AOLGameMode::GameStart()
{
	NPCs = NPCCount();	// ์›”๋“œ์— ์žˆ๋Š” NPC ์ˆ˜ ์ดˆ๊ธฐํ™”

	UE_LOG(LogTemp, Warning, TEXT("NPC is %d"), NPCs);
}

void AOLGameMode::DeadCheck(ACharacter* Character)
{
	// ์บ๋ฆญํ„ฐ๋กœ ํ™•์ธ
	Player = Cast<AOLCharacterPlayer>(Character);
	NPC = Cast<AOLNPCBasic>(Character);

	// ํ”Œ๋ ˆ์ด์–ด๊ฐ€ ์ฃฝ์€ ๊ฒฝ์šฐ
	if (Character == Player)
	{
		AOLPlayerController* PlayerController = Cast<AOLPlayerController>(Player->GetController());	// ํ”Œ๋ ˆ์ด์–ด์˜ ์ปจํŠธ๋กค๋Ÿฌ ๊ฐ€์ ธ์˜ค๊ธฐ

		if (PlayerController)
		{
			PlayerController->GameOver();
		}
	}
	// NPC๊ฐ€ ์ฃฝ์€ ๊ฒฝ์šฐ
	else if (Character == NPC)
	{
		NPCs--;	// NPC๊ฐ€ ์ฃฝ์œผ๋ฉด 1 ๋นผ์ฃผ๊ธฐ(NPC ์ˆ˜ ์ฐจ๊ฐ)

		AOLPlayerController* PlayerController = Cast<AOLPlayerController>(Player->GetController());	// ํ”Œ๋ ˆ์ด์–ด์˜ ์ปจํŠธ๋กค๋Ÿฌ ๊ฐ€์ ธ์˜ค๊ธฐ

		// ์›”๋“œ์— ์žˆ๋Š” ๋ชจ๋“  NPC๊ฐ€ ์ฃฝ์€ ๊ฒฝ์šฐ
		if (NPCs == 0)
		{
			if (PlayerController != nullptr)
			{
				PlayerController->GameClear();
			}
			else
			{
				UE_LOG(LogTemp, Error, TEXT("No PlayerController"));
			}
		}
	}

}

int32 AOLGameMode::NPCCount()
{
	TArray<AActor*> AllNPC;	// ์›”๋“œ์— ์žˆ๋Š” ๋ชจ๋“  NPC๋ฅผ ๋‹ด์„ ๋ฐฐ์—ด

	// ์›”๋“œ์— NPC ํด๋ž˜์Šค๋กœ ๋˜์–ด์žˆ๋Š” ๋ชจ๋“  ์•กํ„ฐ๋“ค์„ ๋ฐฐ์—ด์— ๋„ฃ์–ด์ฃผ๊ธฐ
	UGameplayStatics::GetAllActorsOfClass(GetWorld(), AOLNPCBasic::StaticClass(), AllNPC);
	UE_LOG(LogTemp, Display, TEXT("ALLNPC: %d"), AllNPC.Num());

	return AllNPC.Num();	// ์›”๋“œ์— ์žˆ๋Š” ๋ชจ๋“  NPC ์ˆ˜ ๋ฐ˜ํ™˜
}

The problem with this code now is that even if there are multiple NPCs, just kill the NPCs, the crash like above occurs.
I left one NPC in the world now. But when the NPCโ€™s stamina goes to zero, it suddenly crashes. Whatโ€™s the problem?

For your information, it works fine when the player dies. Instead, the problem only happens when the player kills the NPC.

And I declared NPC as UPROPERTY. But when I check it with Unreal Engine, NPCs are fixed to 0, and the value does not change.

Please help me

Hi, the error message shows the call stack leading to the crash. So in your case the problem is in OLGameMode.cpp in line 35. So you very likely try to run something on a nullptr in that line.

From skipping through your code below, there is at least one issue that will lead to a crash. In the OLGameMode::DeadCheck if the Character is not a AOLCharacterPlayer but an AOLNPCBasic, the code will crash, since Player will be nullptr and you then later in the else if Character == NPC branch do: Player โ†’ GetController() which will crash since Player is a nullptr at that point.

Thank you so much for your answer!! If the NPC dies as chrudimer says, the Player is null (because Character is coming over to the NPC)
I donโ€™t have a clue how to write the code..

The language may not be natural because of the use of a translator.

For accessing the PlayerController, you could use

UGameplayStatics::GetPlayerController(GetWorld(), 0);

So in your code you would likely do:

AOLPlayerController* PlayerController = Cast<AOLPlayerController>(UGameplayStatics::GetPlayerController(GetWorld(), 0));

That way you do not need to access the player controller from the Character.

1 Like

Doing what chrudimer said made it really easy to get PlayerController. Thank you so much. I solved it thanks to you!
And thank you so much for telling me the problem with my code. It was an honor to learn!