Battledale_PRC8/_module/nss/fr_statue02.nss
Jaysyn904 7b9e44ebbb Initial upload
Initial upload.  PRC8 has been added.  Module compiles, PRC's default AI & treasure scripts have been integrated.  Started work on top hak for SLA / Ability / Scripting modifications.
2024-03-11 23:44:08 -04:00

27 lines
855 B
Plaintext

#include "nw_i0_tool"
void main()
{
object oPlayer = GetEnteringObject();
object oPC=GetLastUsedBy();
if(!GetIsObjectValid(GetItemPossessedBy(GetPCSpeaker(), "jw_token_bane")))
{
SendMessageToPC(oPlayer, "You apply token of Bane on the Statue, and it lets you pass trough a hidden tunnel." );
DelayCommand(0.7,AssignCommand(oPC,JumpToObject(GetWaypointByTag("fr_cave_exit_01"),FALSE)));
}
else if(!GetIsObjectValid(GetItemPossessedBy(GetPCSpeaker(), "jw_token_cyric")))
{
SendMessageToPC(oPlayer, "You apply token of Cyric on the Statue, and it lets you pass trough a hidden tunnel." );
DelayCommand(0.7,AssignCommand(oPC,JumpToObject(GetWaypointByTag("fr_cave_exit_01"),FALSE)));
}
else
{
}
}