View Single Post
  #12  
Old 03-25-2018, 09:31 PM
nocalora29's Avatar
nocalora29 nocalora29 is offline
¯\_ ͯ‿ ͯ_/¯
 
Join Date: Dec 2011
Posts: 517
Default

Thanks for posting the code, and you could just (in theory) make ifs that "simulate" the current Mission, you would just have to find out what those are.

Example:
Code:
ClearQuests();

if (GetQuestLabel("CurrentQuest") == "mission_18a") then
   QuestStart("mission_18a");

   Long_Jump("earth");
end;

if (GetQuestLabel("CurrentQuest") == "mission_XX") then
   SetQuestLabel("SpecialRequirement", "True");
   QuestStart("mission_XX")

  Long_Jump("somewhere_else");
end;
__________________
Discord: Nocalora#6847 | SW3.Expansion Thread | SWX.MouseMovementFix | SWX.TUVMark+Src (.tuv editing Tool) | SWX.SLOTMark+Src (.ini Slots editing Tool)
Reply With Quote