NWNDS/_notes_/Areas/random encounter psuedocode.txt
Jaysyn904 da1f16aac2 Uploaded notes
Uploaded notes sitting around on my HD.
2024-01-13 12:48:22 -05:00

32 lines
1.5 KiB
Plaintext

Psuedocode
Encounter Setup (trigger's onExit event)
Create instanced encounter area from existing template.
Move player to instanced encounter area.
Create new marker placable on overland.
Change tag of marker placable to "ENC_playerUUID+arearesref".
Set new tag of marker placeable on instanced area as a string var for onAreaExit. (i.e. ENC_MARKER = "ENC_playerUUID+arearesref")
Area's onEnter
Run spawn as normal
Area's onExit
Get value of string var ENC_MARKER from the Area
If area is empty
Delete the placable with the tag of the value of ENC_MARKER with a delay
Run item cleanup
Run the DestroyAreaIfEmpty function to remove the empty area.
I need a set of nwscript scripts or functions that will do the following:
1.) Moves the PC from "Area A" to "Area B"
2.) Places a placeable with the resref of "enc_marker" at the spot in "Area A" that the PC was originally. I think this placeable will need to be be saved as an object on the module to track it. A waypoint that is uniquely tagged in relation to the PC should be created somewhere within 3 meters of the new placeable. This waypoint should probably be stored on the module as well.
3.) an existing placeable in "Area B" with the resref of "exit_plc" is used to exit "Area B", this needs to be linked to the new waypoint in "Area A". When anyone in "Area B" uses the placeable, it should send them back to the new waypoint in "Area A"
4.) when "Area B" is completely empty of players, destroy it and then destroy the placeable with the resref "enc_marker" in "Area A"