HoS_PRC8/_mod/_module/nss/rts_it_op4.nss

13 lines
392 B
Plaintext
Raw Normal View History

2024-11-25 19:36:07 -05:00
// rts_it_op4
void main()
{
object oPC=GetItemActivator();
object oWP=GetNearestObjectByTag("FLYING_CARPET",oPC,1);
if (GetIsObjectValid(oWP))
{ // can fly here
AssignCommand(oPC,ClearAllActions(TRUE));
AssignCommand(oPC,ActionStartConversation(oPC,"rts_it_op4",TRUE,FALSE));
} // can fly here
else { SendMessageToPC(oPC,"You cannot fly on the carpet here."); }
}