Ancordia_PRC8/_module/nss/explo_further.nss
Jaysyn904 102ba7dab6 Initial Commit
Initial Commit
2023-09-21 19:51:32 -04:00

63 lines
2.7 KiB
Plaintext

#include "x4_inc_functions"
#include "_sh_inc_list"
void main()
{
object oPC = GetPCSpeaker();
object oArea = GetArea(OBJECT_SELF);
//Halt if the PC is in a different area
if (GetLocalString(oPC, "AreaString") != GetLocalString(oArea, "AreaString")) return;
//A conditional check
float fDistance;
object oMember = GetFirstFactionMember(oPC);
while (GetIsObjectValid(oMember))
{
fDistance = GetDistanceBetween(oMember, oPC); //Get the distance between the PC and a party member
if (oPC != oMember && (fDistance == 0.0 || fDistance > 10.0)) //If they are in different areas or the distance is longer than 10 meters...
{
FloatingTextStringOnCreature("Your party wants to travel, but you are absent!", oMember, FALSE);
return;
}
oMember = GetNextFactionMember(oPC);
}
//Get area string
string sAreaString = GetLocalString(oArea, "AreaString");
string sRegionString = GetStringLeft(sAreaString, 1);
//Get the list of free areas
string sList = "sList"+sRegionString;
object oList = GetLocalObject(GetModule(), sList);
//Get the number of free areas
int nCount = ListGetElementCount(oList);
//Randomly select a free area
int nElementIndex = Random(nCount)+1;
string sRandomAreaString = ListGetString(oList, nElementIndex);
//Teleport the PC (and their party) to the southern entrance waypoint of the chosen area
object oWaypoint = GetWaypointByTag("exit_wp_"+sRandomAreaString+"_s");
int nDistance = GetLocalInt(GetFactionLeader(oPC), "Miles");
//Let's store the party leader on the area about to be entered
SetLocalObject(GetArea(oWaypoint), "PartyLeader", GetFactionLeader(oPC));
//Now let's move the party
object oParty = GetFirstFactionMember(oPC, FALSE);
while ( oParty != OBJECT_INVALID )
{
WriteTimestampedLogEntry(GetName(oParty)+" checked for travel"); //TEST
SetLocalInt(oParty, "Miles", nDistance); //Set everyone's distance travelled to that of the party leader
SetLocalInt(oParty, "CanDiscover", GetLocalInt(oParty, "CanDiscover")+1);
AssignCommand(oParty, ClearAllActions());
SetLocalInt(oParty, "Miles", GetLocalInt(oParty, "Miles")+1);
if (GetLocalString(GetModule(), "MODE") == "LOCAL" && GetIsPC(oParty)) SetCampaignInt(CharacterDB(oParty), "MILES", GetLocalInt(oParty, "Miles")); //store miles travelled in LOCAL mode
WriteTimestampedLogEntry(GetName(oParty)+" ready to jump"); //TEST
AssignCommand(oParty, JumpToObject(oWaypoint));
WriteTimestampedLogEntry(GetName(oParty)+" jumped"); //TEST
oParty = GetNextFactionMember(oPC, FALSE);
}
}