HoS_PRC8/_mod/_module/nss/rts_it_op4.nss
Jaysyn904 04165202c0 Initial upload
Initial upload
2024-11-25 19:36:07 -05:00

13 lines
392 B
Plaintext

// 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."); }
}