Thread Rating:
- 0 Votes - 0 Average
- 1
- 2
- 3
- 4
- 5
New Dialog after a Dialog
|
Author |
Message |
yopa
Apprentice
Posts: 7
Likes Given: 0
Likes Received: 0 in 0 posts
Joined: Mar 2013
Reputation: 0
|
New Dialog after a Dialog
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!
|
|
04-05-2013 03:59 AM |
|
|
yopa
Apprentice
Posts: 7
Likes Given: 0
Likes Received: 0 in 0 posts
Joined: Mar 2013
Reputation: 0
|
RE: New Dialog after a Dialog
Okay, this is extremely embarrassing.
I really need to pay more attention on the things I write.
Sorry about it and thanks for your help!
(you can't imagine how long I looked for this error... lol)
|
|
04-06-2013 03:28 PM |
|
|
User(s) browsing this thread: 1 Guest(s)