NWNDS/nwnds_module/at_kledinnroompa.nss

10 lines
243 B
Plaintext
Raw Normal View History

void main()
{
TakeGoldFromCreature(100, GetPCSpeaker(), TRUE);
object oPC = GetPCSpeaker();
object oWayPoint = GetWaypointByTag("WP_KLEDINNROOM");
location lLoc = GetLocation(oWayPoint);
AssignCommand(oPC,JumpToLocation(lLoc));
}