The problem is: I want a certain response if the player types anything, and I mean anything, if the line includes a certain word, no matter what stands left or right of that word ("tool" in this case). I've tried the following code already:
[code]If (Parser.Said("tool rol"))[/code]
Only works if nothing stands before 'tool'.
[code]If (Parser.Said("rol tool rol"))[/code]
Always gives the response, even if there's no 'tool' in the line.
[code]If ((Parser.Said("tool rol"))||(Parser.Said("rol tool")))[/code]
See above.
[code]If (Parser.Said("[anyword] [anyword] [anyword] tool rol"))[/code]
Never gives the response, as weird as it sounds.
Any idea how to get this working? This is quite urgent, as this is a vital and basic feature of my game... and this isn't covered by the manual and the ags wiki entry is just a copy of that manual section. The technical archive is no help, too.
/EDIT: Corrected about 1,000 typos
