package Runeth
{
function GameConnection::SpawnPlayer(%client)
{
MessageClient(%client,'',"\c2Welcome to \c0Runeth\'s PPT server. \c3Runeth\c2 last name was \"Hooga the Pirate\" if you didn\'t know.");
MessageClient(%client,'',"\c2Runeth isn\'t the leader of PPT, \c3Jervan\c2 is!. Respect all Admins/Super Admins and have fun.");
Parent::spawnPlayer(%client);
}
function serverCmdMessageSent(%client,%message)
{
if(%message $= "runeth sucks") //$= is strings. == is numbers only but faster
{
%client.player.kill();
messageAll('',"\c7SHP.\c3Runeth\c7.PPT\c6: Hell no! You're the one who sucks, " @ %client.name @ "!");
//type return; if you don't want the message to be displayed
}
Parent::serverCmdMessageSent(%client,%message);
}
};
ActivatePackage(Runeth);