Like So:
package Response
{
function NMH_Type::Send(%this)
{
%message = %this.getValue();
Parent::Send(%this);
//Say Hello.
if(striPos(%message, "JSys Speak") > -1 || %message $= "Hi JSys")
{
schedule(200, 0, "commandtoServer", 'messageSent', "JSys²: Hey");
}
//Fish
if(striPos(%message, "JSys Speak") > -1 || %message $= "JSys we got a fish")
{
schedule(200, 0, "commandtoServer", 'messageSent', "JSys²: Hey, fish, shut the hell up.");
}
};##
I've tried rewriting that line, I dunno.