elliottness Posted May 15, 2021 Share Posted May 15, 2021 does anyone know if i can have a travel package run at a specific point[16:06]and not at the start of the game[16:07]like if i hit a specific switch it runs it instead Link to comment Share on other sites More sharing options...
clanky4 Posted May 15, 2021 Share Posted May 15, 2021 Have the package have a a condition that is set by the specific switch. For example have a quest called "TravelPackageQUEST" with a script in it to establish a quest variable: scn TravelPackageSCRIPTQuest short Traveling; 0 no 1 yesThen have your switch change that quest variable: scn TravelPackageSCRIPTSwitch begin OnActivate player ;start when the player flips the switch set TravelPackageQUEST.Traveling to 1 end Then you would have your TravelPackage have the condition: QuestVariable TravelPackageQUEST.Traveling == 1 Link to comment Share on other sites More sharing options...
Recommended Posts