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

12 lines
490 B
Plaintext

void main()
{
object oPC = GetEnteringObject();
object oSpeaker = GetNearestCreature(CREATURE_TYPE_PLAYER_CHAR, PLAYER_CHAR_IS_PC);
string sString = "Ahead of you the road stretches endlessly through a desolate, empty landscape. The next village is days away. Clearly this direction would take you beyond the scope of your current quest.";
if (GetIsPC(oPC))
{
FloatingTextStringOnCreature(sString, oSpeaker, TRUE);
}
DestroyObject(OBJECT_SELF, 1.5);
}