Printable Version of Topic

Click here to view this topic in its original format

Heynow Software Forums _ General Discussion _ self defense triggers

Posted by: Dowd Dec 15 2005, 07:18 AM

Greetings all.
I've just switched from Rapscallion and I trying to extract how to transfer some of my self defense triggers into Savitar.
My old trigger would trigger on:
^%s starts casting a fireball at you!

my script would read something like:

kick %1

It would seem that I could do this in Savitar, but I'm unable to determine how.
The "^" would make it only trigger if the extracted string was the first word in the line so no one could set off this trigger simply by saying or telling me the phrase.

Would someone please give me a $1.25 and show me the way to the clue bus?

Posted by: Dowd Feb 19 2006, 02:47 PM

No one?



tongue.gif

Posted by: Dowd Mar 10 2006, 02:23 AM

I feel lonely.

Posted by: jay Mar 11 2006, 02:08 PM

Dowd,

If you use Savitar's regular expression matching option, the caret (^) will in fact match for start of line. Did you select "regular expression" as your match type?

If regex isn't your cup of joe, then you can use "Line starts with" and take out that caret.

See the manual for further examples.

/Jay

Posted by: Guest May 28 2006, 11:47 PM

First of all, the default macros on Savitar start with %%, not %. If you haven't changed the default macro trigger from %% (and I've found no reason to), then this is your problem.

To transfer this trigger to Savitar, write a trigger like so:

Output, Regular expression of

(^)(.*) starts casting a fireball at you

and in the trigger pane, put

kick %%2

The reason I didn't finish off that regex above is because I'm not sure if ! is a special character for regex. I know that if you want to use a period (.) in a regex, you have to put a backslash (\) before it, i.e. if you want to attack a trigger to going to sleep, the regex would look like this:

(^)You go to sleep\.($)

Because in regexes the . denotes any character. Most characters in regexes equal themselves, so 'Jake' wouldn't translate to anything special, but . denotes any character.

Powered by Invision Power Board (http://www.invisionboard.com)
© Invision Power Services (http://www.invisionpower.com)