SphereCommunity
New Dialog after a Dialog - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: Script Help (/Forum-Script-Help)
+--- Thread: New Dialog after a Dialog (/Thread-New-Dialog-after-a-Dialog)



New Dialog after a Dialog - yopa - 04-05-2013 03:59 AM

I'm slowly learning, I hope my questions don't bother most of you. ;(

Code:
ON=*QUEST*
IF (<SRC.TAG.INQUEST> == 01)
DIALOG d_inquest
ELSEIF (<SRC.TAG.QUESTCOMPLETED> == 01)
DIALOG d_questdone
ELSE
DIALOG d_quest
ENDIF
Return 1

On d_quest, I have a button to accept the quest:

Code:
[DIALOG d_quest BUTTON]
ONBUTTON=10
IF (<SRC.TAG.INQUEST> == 01)
DIALOG d_inquest
ELSEIF (<SRC.TAG.QUESTCOMPLETED> == 01)
DIALOG d_questdone
ELSE DIALOG d_quest_accepted
SRC.TAG.INQUEST=1
ENDIF
Return 1

It is checking correctly, it tags me correctly (SRC.TAG.INQUEST=1) but the new dialog (d_quest_accepted) will not come.

Thanks!


RE: New Dialog after a Dialog - darksun84 - 04-05-2013 04:05 AM

I don't know if it's a formatting error for pasting the code on the forum, but shouldn't be this the proper formatting ?
PHP Code:
ELSE
dialog d_quest_accepted 



RE: New Dialog after a Dialog - yopa - 04-06-2013 03:28 PM

Okay, this is extremely embarrassing.

I really need to pay more attention on the things I write. Sad

Sorry about it and thanks for your help!

(you can't imagine how long I looked for this error... lol)