Post Reply 
 
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



Post: #1
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
Find all posts by this user Like Post Quote this message in a reply
darksun84
Sir Spamalot
****

Posts: 1,687
Likes Given: 246
Likes Received: 162 in 151 posts
Joined: Mar 2012
Reputation: 35



Post: #2
RE: New Dialog after a Dialog
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 
04-05-2013 04:05 AM
Find all posts by this user Like Post Quote this message in a reply
yopa
Apprentice
*

Posts: 7
Likes Given: 0
Likes Received: 0 in 0 posts
Joined: Mar 2013
Reputation: 0



Post: #3
RE: New Dialog after a Dialog
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)
04-06-2013 03:28 PM
Find all posts by this user Like Post Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)