I got a pretty simple script down here, currently my main quest ID is 80003 and the problem now is, the quest status doesn't show the right one. it works for the matthias#tutorial script though.
Example once im done with the quest with 80003 == 2, the 2nd npc doesn't show complete but shows inactive still.
Currently my end goal is to show which quest is active and which is not for easier troubleshooting from my own end. Would be great if someone could guide me through on what i went wrong
currently the one below shows the 1 quest that i'm looking at one quest, but in the future i plan to put more and more quests in.
splendide_n,139,178,3 script Matthias#Tutorial 507,{ if(checkquest(80003) == 2){ mes ""+.npc_name$+""; mes ".......huh? You talkin' to me?"; } mes ""+.npc_name$+""; mes "Hello!"; setquest 80003; completequest 80003; close; OnInit: // Configuration for names. .npc_name$ = "[^993300 Tester 1 ^000000]"; //NPC Name .npc_name2$ = "[^003333 Tester 2^000000]"; //NPC2 Name end; } //ending bracket splendide_n,144,178,3 script quest#status 507,{ mes "I display your quest status"; next; if(checkquest(80003 == 0)){ mes "Quest 80003: ^FF4848Inactive^000000";} else if(checkquest(80003 == 1)){ mes "Quest 80003: ^5757FFActive^000000";} else if(checkquest(80003 == 2)){ mes "Quest 80003: ^01F33ECompleted^000000"; } close; } //ending bracket
Hi Guys,
I got a pretty simple script down here, currently my main quest ID is
80003 and the problem now is, the quest status doesn't show the right
one. it works for the matthias#tutorial script though.
Example once im done with the quest with 80003 == 2, the 2nd npc doesn't show complete but shows inactive still.
Currently my end goal is to show which quest is active and which is
not for easier troubleshooting from my own end. Would be great if
someone could guide me through on what i went wrong
currently the one below shows the 1 quest that i'm looking at one
quest, but in the future i plan to put more and more quests in.
my end goal would be like
80003 = Completed
80004 = In progress
80005 = Completed
80006 = Inactive
Edited by ToiletMasterShare this post
Link to post
Share on other sites