Jump to content

War of the Commonwealth 2.0


SMB92

Recommended Posts

  • Replies 261
  • Created
  • Last Reply

Top Posters In This Topic

Yeah its getting quite large now. I just tidied up the quest script, added a number of menu functions, well over 2000 lines in there. By the time I'm done tonight it should be closer to 5000, not including the fragment script. Mostly properties.

 

Made a fairly big optimization today in that I'm no longer using GlobalVariables but instead direct properties on the script. With the amount of variables this should result in a fair bit faster processing and initialization.

Link to comment
Share on other sites

Wouldn't know where to begin on the animation front :D. They should be able to use the synth ones though
Link to comment
Share on other sites

No. My system is way different, I only have one xmarker as opposed to a metric tonne of actorbase markers around an xmarker ;)
Link to comment
Share on other sites

Update before I go off to sleep and then work tomorrow :sad:

 

Wasn't joking about 5000 lines, in fact got up to 5367 lmao. Had to do a fair bit of refactoring though to change over from using Globals to just properties on the quest. Not to mention the menu/fragment script. Anyhow most of the primary functions are there now, some still need filling as I start to add more actors/npcs (currently only 4 that I used for testing)

 

Anyhow just to put the money where my mouth is, here is the Quest script alone so far:

 

 

  Reveal hidden contents

 

 

Enjoy reading that :D

Link to comment
Share on other sites

  On 6/17/2017 at 10:41 AM, SMB92 said:

 

I seen some information online that states that quests don't work properly when going back stages, but so far I've moved the primary menus over to this system and they work just fine, excatly as I pictured and I can also manage everything a bit better :smile:

 

I have been playing a lot with quest and stages lately so I can give couple examples, I'll try to explain it simple as possible:

 

Example 1. Quest with stages 10, 50, 100 and 200. Allow repeated stages is NOT selected in ck window. Let's assume every stage has a fragment on it.

 

You start the quest by doing Quest.SetStage(100). The quest starts and you do GetCurrentStageID(), it will return 100. Now, you do SetStage(50), the fragment in that stage runs. You do GetCurrentStageID() it will return 100. It will always return the HIGHEST stage the quest has ever been. Now you do SetStage(50) again, it does NOT run the fragments because "Allow repeated stages" was not selected.

 

Now you do IsStageDone(50) and it will return true. You do IsStageDone(10) and it will return false. As you can see, you can still use stages for controlling stuff. For example, player picks up a quest item and we set stage 10, to track if it's picked or not. So, now we can use condition IsStageDone(10) in our dialogue to see if the player picked the item. We also can't "undo" the stage 10, so we want to make our item not-droppable.

 

Example 2. Same thing but we have "Allow repeated stages" checked. The only difference is that we can run any stage any amount of time and it will always run the fragment on it. If we run SetStage(10), it will run. We do SetStage(10), and it will run again. From now on, IsStageDone(10) will always return true after the first time we ran it. If we started our quest by running stage 200, GetCurrentStageID will always return 200.

 

The only way to "reset" all stages, so CurrentStageID goes to 0 is to do this:

Reset()
Stop()

and in that order. It won't work right the otherway around. Hope this helps. It will require then to Start() the quest again and you want to give it couple seconds atleast before starting again to make sure it's shut down and can actually start.

Link to comment
Share on other sites

Thanks for the info. Very much glad that doesn't apply to me and what I'm using it for :D

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.

×
×
  • Create New...