onurb
07-11-2022, 10:26 PM
I grew up with the wizardFE and the language used there. I am used to matches and matchwaits that look like this:
start:
match west Person says, "go west"
match east Person says, "go east"
matchwait
west:
move west
goto start
east:
move east
goto start
But I been slowly learning lich & ruby and getting away from wizardFE and I am now trying to figure out how matches work. Here are the examples from the Lich Scripting Reference wiki page. I don't understand the examples. To me, a match has always been if the string matches, it sends you do a different area of the script (wherever you put the label). Can anyone give better examples, explanations, or maybe paste a part of your script that has a match section so I can see how it works?
matchwait
example: (none)
Returns: a string
Description: If used without any arguments, 100% identical to Wizard 'matchwait' commands. You can optionally give it arguments, in which case it acts identically to 'waitfor' in all ways except one: matches are case sensitive (for instance, matchwait "shaelun" will not match if the word "Shaelun" is seen from the game).
so on this one, if I do like...
matchwait "red", "green", "blue"
that means the script completely stops until it sees red, green, or blue? What if I wanted red to do this, or green to do that, or blue to do something else?
match
example: match 'label', 'line to watch for'
example: match "gameline", "gameline", "some other gameline", "so on and so forth"
Returns: a string
Description: If given exactly two arguments, identical to the Wizard 'match' command. If given *any* other number of arguments, it's a case sensitive version of 'waitfor' but instead of returning the entire matching game line, it returns only the portion of the string you asked it to watch for.
And on this one, I am not understanding the label part. What good is a label, what does it do? In my mind, a label would be "start:" "west:" and "east:" like in my wizardFE example.
Any help would be appreciated.
start:
match west Person says, "go west"
match east Person says, "go east"
matchwait
west:
move west
goto start
east:
move east
goto start
But I been slowly learning lich & ruby and getting away from wizardFE and I am now trying to figure out how matches work. Here are the examples from the Lich Scripting Reference wiki page. I don't understand the examples. To me, a match has always been if the string matches, it sends you do a different area of the script (wherever you put the label). Can anyone give better examples, explanations, or maybe paste a part of your script that has a match section so I can see how it works?
matchwait
example: (none)
Returns: a string
Description: If used without any arguments, 100% identical to Wizard 'matchwait' commands. You can optionally give it arguments, in which case it acts identically to 'waitfor' in all ways except one: matches are case sensitive (for instance, matchwait "shaelun" will not match if the word "Shaelun" is seen from the game).
so on this one, if I do like...
matchwait "red", "green", "blue"
that means the script completely stops until it sees red, green, or blue? What if I wanted red to do this, or green to do that, or blue to do something else?
match
example: match 'label', 'line to watch for'
example: match "gameline", "gameline", "some other gameline", "so on and so forth"
Returns: a string
Description: If given exactly two arguments, identical to the Wizard 'match' command. If given *any* other number of arguments, it's a case sensitive version of 'waitfor' but instead of returning the entire matching game line, it returns only the portion of the string you asked it to watch for.
And on this one, I am not understanding the label part. What good is a label, what does it do? In my mind, a label would be "start:" "west:" and "east:" like in my wizardFE example.
Any help would be appreciated.