PoA_PRC8/_module/nss/jumpstart.nss

11 lines
237 B
Plaintext
Raw Normal View History

2022-10-07 14:20:31 -04:00
#include "nw_i0_tool"
void main()
{
object oPC = GetPCSpeaker();
location voy = GetLocation(GetWaypointByTag("voyage"));
if (!HasItem(oPC, "emotewand")){
GiveGoldToCreature(oPC, 10000);
}
AssignCommand(oPC, ActionJumpToLocation(voy));
}