28 lines
680 B
Plaintext
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));
|
|
}
|