GuerillaWarlord Posted April 14, 2011 Share Posted April 14, 2011 This is the script i am using for it, is this right? scn GWSQ1stage20SCRIPTBegin OnActivate playerif Getstage GWSQ1 == 10setObjectiveCompleted GWSQ1 10 1setObjectiveDisplayed GWSQ1 20 1endifEnd I have also tried this scn GWSQ1stage20SCRIPTBegin OnActivate playerif Getstage GWSQ1 == 10setstage GWSQ1 20endifEnd But no matter what it just wont activate in game, can anybody see what i am doing wrong, this is really annoying me, so help would be very much appreciated Link to comment Share on other sites More sharing options...
majinshinsa Posted April 14, 2011 Share Posted April 14, 2011 try this: scn GWSQ1stage20SCRIPT Begin OnActivate player if (Getstage GWSQ1 == 10) setObjectiveCompleted GWSQ1 10 1 setObjectiveDisplayed GWSQ1 20 1 endif End Link to comment Share on other sites More sharing options...
GuerillaWarlord Posted April 14, 2011 Author Share Posted April 14, 2011 Just tried it still didint work, thanks for trying anyway Link to comment Share on other sites More sharing options...
majinshinsa Posted April 14, 2011 Share Posted April 14, 2011 how is it activated in the game? what is it and what do you want it to do? a little more info might help some Link to comment Share on other sites More sharing options...
GuerillaWarlord Posted April 14, 2011 Author Share Posted April 14, 2011 It is a primitive cube, which you walk in the area to activate the script which ideally should finish the last quest stage and start the next updating in the pipboy aswell Link to comment Share on other sites More sharing options...
majinshinsa Posted April 14, 2011 Share Posted April 14, 2011 scn GWSQ1stage20SCRIPT Begin onTriggerEnter player if getstage GWSQ1 == 10 setObjectiveCompleted GWSQ1 10 1 setStage GWSQ1 20 setObjectiveDisplayed GWSQ1 20 1 endif End try that and set the activator to run the script Link to comment Share on other sites More sharing options...
GuerillaWarlord Posted April 14, 2011 Author Share Posted April 14, 2011 I love you man seriously haha, it worked i have been going through the tutorials this last week and totally forgot it was ontriggerenter.Thanks for all the help and kudos to you Link to comment Share on other sites More sharing options...
majinshinsa Posted April 15, 2011 Share Posted April 15, 2011 your welcome glad to help Link to comment Share on other sites More sharing options...
Recommended Posts