NWNDS/nwnds_module/ds_jumptointro.nss
Jaysyn904 de24f81734 Added NWN Dark Sun module contents
Added NWN Dark Sun module contents.
2021-07-12 21:24:46 -04:00

15 lines
309 B
Plaintext

void main()
{
object oPlayer = GetEnteringObject();
if (GetIsPC(oPlayer))
{
if (GetHitDice(oPlayer) ==3)
{
if (!GetIsDM(oPlayer))
{
AssignCommand(oPlayer, ActionJumpToObject(GetWaypointByTag("cut01way_enter")));
}
}
}
}