Help - Search - Members - Calendar
Full Version: self defense triggers
Heynow Software Forums > Savitar Software Application > General Discussion
Dowd
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?
Dowd
No one?



tongue.gif
Dowd
I feel lonely.
jay
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
Guest
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.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2024 Invision Power Services, Inc.