TYL3R
Junior Member
MP!L Scripter =]
Posts: 24 Reputation: -4
31 / /
Joined: Oct 2006
|
O.P. RE: RE: I need some help
quote: Originally posted by xen0h
has it been finished?
Yea
code: var one = new Array();
one[0]="slyly";
one[1]="sneakingly";
one[2]="sloppily";
one[3]="menacingly";
one[4]="slowly";
one[5]="lovingly";
one[6]="aggressively";
one[7]="hopelessly";
one[8]="delightfully";
one[9]="enthusiastically";
one[10]="accidentally";
one[11]="boastfully";
one[12]="cautiously";
one[13]="cheerfully";
one[14]="courageously";
one[15]="fatally";
one[16]="loudly";
one[17]="frantically";
one[18]="nervously";
one[19]="obnoxiously";
one[20]="suspiciously";
var two = new Array();
two[0]="smacks";
two[1]="tickles";
two[2]="nudges";
two[3]="attacks";
two[4]="pokes";
two[5]="hits";
two[6]="slaps";
two[7]="mauls";
two[8]="gnaws at";
two[9]="mames";
two[10]="projectile vomits at";
var three = new Array();
three[0]="a 500-pound";
three[1]="a slippery";
three[2]="a wet";
three[3]="a smelly";
three[4]="a stinky";
three[5]="an obnoxious";
three[6]="a playful";
three[7]="a burning";
three[8]="a toxic";
three[9]="a purple";
three[10]="a yellow";
three[11]="an orange";
three[12]="a prickly";
three[13]="a sleepy";
three[14]="a bloody";
three[15]="a graceful";
three[16]="a fancy";
three[17]="a fragile";
three[18]="a cautious";
three[19]="a husky";
three[20]="a gigantic";
var four = new Array();
four[0]="unix manual";
four[1]="rubber chicken";
four[2]="keyboard";
four[3]="mailbox";
four[4]="ax";
four[5]="fish";
four[6]="walrus";
four[7]="duffle bag";
four[8]="iguana";
four[9]="windshield";
four[10]="snow cone";
four[11]="shark";
four[12]="cactus";
four[13]="tooth brush";
four[14]="tooth pick";
four[15]="crocodile";
four[16]="sock";
four[17]="printer";
four[18]="hydrant";
four[19]="bulldozer";
four[20]="pitchfork";
function generate()
{
random = Math.floor(Math.random()*one.length);
first = one[random];
random = Math.floor(Math.random()*two.length);
second = two[random];
random = Math.floor(Math.random()*three.length);
third = three[random];
random = Math.floor(Math.random()*four.length);
fourth = four[random];
}
function OnEvent_ChatWndSendMessage(ChatWnd, Message){
if(Message.substr(0,7)=="/random"){
generate()
Message = Messenger.MyName + " " + first + " " + second + " " + "(!N)" + " with " + third + " " + fourth + "!"
return Message
}
}
|
|