NWNDS/nwnds_module/at_attopcdocks.nss
Jaysyn904 de24f81734 Added NWN Dark Sun module contents
Added NWN Dark Sun module contents.
2021-07-12 21:24:46 -04:00

19 lines
587 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName at_attopcdocks
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 10/6/2002 5:12:08 PM
//:://////////////////////////////////////////////
void main()
{
// Remove some gold from the player
TakeGoldFromCreature(500, GetPCSpeaker(), TRUE);
object oPC = GetPCSpeaker();
object oWayPoint = GetWaypointByTag("WP_PCDOCKS");
location lLoc = GetLocation(oWayPoint);
AssignCommand(oPC,JumpToLocation(lLoc));
}