Shargast_PRC8/_module/Chapter 1/nss/dwarf_hael_enter.nss
Jaysyn904 66a0a3e043 Initial commit
Initial commit.
2024-08-03 14:13:18 -04:00

28 lines
680 B
Plaintext

/* Script generated by
Lilac Soul's NWN Script Generator, v. 2.2
For download info, please visit:
Click Here */
//Put this script OnClick or OnFailToOpen
#include "prc_inc_racial"
void main()
{
object oDeny;
string sDeny;
object oPC = GetClickingObject();
if (!GetIsPC(oPC)) return;
if ((MyPRCGetRacialType(oPC)!=RACIAL_TYPE_DWARF)&&
(MyPRCGetRacialType(oPC)!=RACIAL_TYPE_GNOME))
{
sDeny="You're not wanted, go away.";
oDeny = GetWaypointByTag("WP_UNLOVED");
}
else
{
sDeny="Welcome beloved";
oDeny = GetWaypointByTag("WP_BELOVED");
}
SendMessageToPC(oPC, sDeny);
AssignCommand(oPC, JumpToObject(oDeny));
}