Log in

View Full Version : autowar / yowlp



jafo
06-16-2013, 02:58 PM
In my private copy (which doesnt do field reps at all, so i dont upload it), i added support for yowlp. Here is what you need.

@1746
warcry = "bellow" if line =~ /Bellow/
warcry = "yowlp" if line =~ /Yowlp/

@2131
$mastersWarcry = "bellow" if(line =~ /Let me show you how Bertrandt/i);
$mastersWarcry = "yowlp" if(line =~ /Let me show you how Yertie/i);

@2151
$beingInstructed = false if(line =~ /try it a few times/);
$beingInstructed = false if(line =~ /Now you try a few times/);

jafo
06-30-2013, 03:10 PM
added growl now too

around 1745


break if line =~ /Usage/
warcry = "bellow" if line =~ /Bellow/
warcry = "yowlp" if line =~ /Yowlp/
warcry = "growl" if line =~ /Growl/
# other warcries go here


around 2128


def defineWarcry # Identify warcry to use during skilled masters reps
$mastersWarcry = nil
start_exec_script( 'until($mastersWarcry);
line = get;
$mastersWarcry = "bellow" if(line =~ /Let me show you how Bertrandt/i);
$mastersWarcry = "yowlp" if(line =~ /Let me show you how Yertie/i);
$mastersWarcry = "growl" if(line =~ /Let me show you how Gerrelle/i);
end;', true )
end