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

12 lines
386 B
Plaintext

void main()
{
object oPC = GetEnteringObject();
object oSpeaker = GetNearestCreature(CREATURE_TYPE_PLAYER_CHAR, PLAYER_CHAR_IS_PC);
string sString = "Ahead of you looms the uneven crags and steep canyons of the treacherous Troll Claws.";
if (GetIsPC(oPC))
{
FloatingTextStringOnCreature(sString, oSpeaker, TRUE);
}
DestroyObject(OBJECT_SELF, 1.5);
}