Easygoing Eyebeast Xaiya Posted April 20, 2008 Posted April 20, 2008 I am having a problem with the script, but nothing seems wrong. Code: message_dialog("_You dare insult me! Minions, attack!_",""); The game says "t3thirdfloor error: Unknown coomand _you in line 39." Quote
Well-Actually War Trall Niemand Posted April 20, 2008 Posted April 20, 2008 Let's see the portion of the script surrounding that line, particularly before it. As far as I or Alint can tell, there's nothing inherently wrong with the line you posted. Quote
Easygoing Eyebeast Xaiya Posted April 20, 2008 Author Posted April 20, 2008 POSSIBLE SPOILER - - - - - - Code: beginstate 12; reset_dialog(); add_dialog_str(0,"_Here is a riddle. What has four legs and talks riddles?_",0); add_dialog_choice(0,"YOU!"); add_dialog_choice(1,"I don't know.); choice = run_dialog(0); if (choice == 1) set_state_continue(13); if (choice == 2) set_state_continue(14); break; beginstate 13; message_dialog("_You dare insult me! Minions, attack!_",""); break; beginstate 14; message_dialog("_Really? I don't know either. Oh well, just leave through the secret door behind me.",""); break; Quote
Magnificent Ornk nikki. Posted April 20, 2008 Posted April 20, 2008 You are missing a quotation mark: add_dialog_choice(1,"I don't know."); BoA treats everything up to the next quotation mark (which is in the line you posted initally) as one string, and the next symbol is the "_", which it doesn't like. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.