psj7759 Posted July 2, 2013 Share Posted July 2, 2013 (edited) i want my npc to say "why are you still here" or "what did you find" when quest start how do i not make my npc to saying same topic over and over? i used the getstage is not working. and i also want to know how to start the quest by reading hologram or note Edited July 2, 2013 by psj7759 Link to comment Share on other sites More sharing options...
psj7759 Posted July 2, 2013 Author Share Posted July 2, 2013 Nevermind the first problem cuz i solve it. now i want to know how to start the quest by reading note or hologram Link to comment Share on other sites More sharing options...
jazzisparis Posted July 2, 2013 Share Posted July 2, 2013 A quest can be started either by calling StartQuest or calling SetStage. If the note is added to the player by a terminal option, add this code in the result script box of that option: if GetQuestRunning YourQuestEditorID == 0 StartQuest YourQuestEditorID ; or, alternatively: SetStage YourQuestEditorID X ; where X is the stage number initializing the quest. endif Or, if the note is added by picking up an item, add a script to the item and use this code: scn AddYourQuestNoteScript begin OnAdd player AddNote YourNoteEditorID if GetQuestRunning YourQuestEditorID == 0 StartQuest YourQuestEditorID ; or, alternatively: SetStage YourQuestEditorID X ; where X is the stage number initializing the quest. endif RemoveMe end Oh, and friendly advice, to boot: Being a pottymouth can get you in trouble here. You might wanna edit your post before a moderator sees it. Link to comment Share on other sites More sharing options...
psj7759 Posted July 2, 2013 Author Share Posted July 2, 2013 Thanks you just save me and thanks for the advice. Link to comment Share on other sites More sharing options...
psj7759 Posted July 2, 2013 Author Share Posted July 2, 2013 Okay here's another questions how can you add script to hologram or note? They don't even have script menu. Link to comment Share on other sites More sharing options...
jazzisparis Posted July 2, 2013 Share Posted July 2, 2013 It is not done directly from the note. As I was saying, it depends on how you add the note to the player (item or terminal). I explained both ways. Link to comment Share on other sites More sharing options...
Recommended Posts