Unterminated!!!

The place to post your WML questions and answers.

Moderator: Forum Moderators

Forum rules
  • Please use [code] BBCode tags in your posts for embedding WML snippets.
  • To keep your code readable so that others can easily help you, make sure to indent it following our conventions.
dark_cleou
Posts: 22
Joined: January 4th, 2006, 11:31 am

Post by dark_cleou »

ok!!! :D i'm working for your suggestions...so the unterminated is difficult to find and my Arimatheans.cfg is working so the errors are in the scenarios....! Maybe I should make 2 or 3 because I have only 1 scenario in the folder. But can somebody tell me why is zookeper saying that the turns=unlimited is invalid and the objectives descriptions of defeat is wrong???? :o
here is a helper and a Helpless...Pls. help the helpless...like me...
scott
Posts: 5243
Joined: May 12th, 2004, 12:35 am
Location: San Pedro, CA

Post by scott »

WML doesn't recognize turns=unlimited. Try turns=-1 for infinite turns.

Each defeat condition needs its own [objective] tag.

This is what you have:

Code: Select all

     [objective] 
     description= _ "Death of Absel" 
              "Death of Numrif" 
              "Death of Keilenz" 
     condition=lose 
     [/objective] 
This is what it should be:

Code: Select all

     [objective] 
     description= _ "Death of Absel" 
     condition=lose 
     [/objective] 
     [objective] 
     description= _ "Death of Numrif" 
     condition=lose 
     [/objective] 
     [objective] 
     description= _ "Death of Keilenz" 
     condition=lose 
     [/objective] 
Hope springs eternal.
Wesnoth acronym guide.
Post Reply