I’ve been using the game’s load mod for years now to easily travel between campaigns; however, I always use a book to do it. I have a few instances where I want to do it directly from a script. If the mod name is “zlaunch” and the preferred waypoint is “testing”, how would I insert that into the script below?:
void main( string sModule, string sWaypoint )
{
SaveRosterLoadModule( sModule, sWaypoint );
}
From where do you run this script? You said you used a book before, from where are you running it now? If you use it as it is at the moment you could run it from a conversation by just adding the “zlaunch” and “testing”. Otherwise I guess you just do it like this:
void main()
{
SaveRosterLoadModule( "zlaunch", "testing");
}
1 Like
I typed book when I should have typed ‘conversation’ (I put most of my game action control convos in books…lol). Thanks! As I thought I had done it b4 just couldn’t find the script. It’s attached to a lever disguised as a direct to waypoint portal, so saving the create a convo step makes it easier.