Files
HeroesStone_PRC8/_module/nss/corpse_found.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

25 lines
707 B
Plaintext

//::///////////////////////////////////////////////
//:: Name corpse_found
//:: FileName
//::
//:://////////////////////////////////////////////
/*
Tests if the player has found something in the
corpse so that the right text is displayed.
*/
//:://////////////////////////////////////////////
//:: Created By: Alexandre Brunel
//:: Created On: 21/04/2003
//:://////////////////////////////////////////////
#include "corpse_lib"
int StartingConditional()
{
int iResult;
iResult = GetCorpseDialogFound();
SetCustomToken(600,IntToString(GetCorpseDialogFoundNumber()));
SetCustomToken(601,GetName(GetOriginalCorpse(OBJECT_SELF)));
SetCorpseDialogFound(FALSE);
return iResult;
}