Frame 1
bgSound = new Sound(this);
bgSound.attachSound("sound1");
stop();
Frame 2
stopAllSounds();
Frame 3
_root.pos = SharedObject.getLocal("insultsave4");
verb = new Array(this);
user = new Array(this);
adj = new Array(this);
noun = new Array(this);
if (_root.pos.data.blah == undefined) {
verb = ["gets high off of", "pisses on", "spills gravy on", "caresses", "bites into", "acts like", "smells like", "steps on", "regurgitates", "smears icecream on", "pile drives", "sniffs", "roasts", "poops out", "ignites", "watches", "loves", "grabs", "deep fries", "enjoys", "fucks", "molests", "licks", "spills gravy on", "jumps on top of", "slaps", "sits on top of", "eats", "strokes", "molests", "gang bangs", "sucks", "got molested by", "rapes", "ingests", "rubs dirt on", "destroys", "feasts on"];
user = ["Freemont", "riftmaster", "SaintShun", "ChtFreak64", "-Hellraiser-", "The_WalrusZ", "rtil", "Blackmarketkraig", "Mynamewontfitin", "Wario2k3", "SamBakZa", "The_Super_Flash_Bros", "Granfaloon", "Xionic_Demon", "El-Cid", "GAMECUBICLE", "just2pale", "MindChamber", "Frostedmuffins", "Starogre", "The Weebl", "Afro_Ninja", "Dan Paladin", "McBean", "Adam Phillips", "Krinkels", "James Farr", "Inglor", "_Luis_", "Wade Fulp", "Tom Fulp", "Bedn", "Glaiel_Gamer", "-Knox-", "Legendary Frog", "illwillpress", "Eddsworld", "David Firth", "Lifepoint1", "jotandjab", "Tomorows_Nobody", "Evil-Dog", "ramagi", "Joanime", "maus", "Wiesi_Mausland"];
adj = ["luscious", "exotic", "emo", "freaky", "deformed", "mutilated", "slimey", "wet", "crunchy", "sweaty", "spicy", "cinamon", "hairy", "wrinkly", "saggy", "floppy", "mushy", "shriveled", "smooth", "rough", "funny looking", "disgusting", "disturbing", "artificial", "chocolate", "putrid", "raunchy", "tender", "squishy", "mutant", "extrordinary", "salty", "watery", "juicy", "ridiculous", "freezing", "radioactive", "legendary", "razor-sharp"];
noun = ["pot plants", "foot fungus", "pubic hairs", "pussy", "camel tounge", "cockmuffins", "horse manure", "orphan infants", "goat shit", "children", "scrotum", "cow testacles", "anus", "armpit", "donkey dick", "penguin pussy", "rhino clit", "llama vagina", "third nipple", "monkey balls", "tapeworms", "aligator cunts", "peehole", "sperm", "utters", "man-boobs", "testacles", "vagina", "penis", "nipple", "hentai magazines", "playboys", "cat bed", "tuba", "trumbone", "cocktail", "transvestides", "rooster", "girlfriend", "boyfriend", "lightbulbs", "deodorant", "trophies", "kitten clit"];
_root.pos.data.blah = "zshjfuahfnhua";
_root.pos.data.verb = new Array();
_root.pos.data.verb = verb;
_root.pos.data.noun = new Array();
_root.pos.data.noun = noun;
_root.pos.data.adj = new Array();
_root.pos.data.adj = adj;
_root.pos.data.user = new Array();
_root.pos.data.user = user;
}
_root.verb = _root.pos.data.verb;
_root.adj = _root.pos.data.adj;
_root.user = _root.pos.data.user;
_root.noun = _root.pos.data.noun;
stop();
_root.username = "";
_root.name.username2 = "";
Frame 4
stop();
pname = _root.username;
if (username == "") {
pname = "he/she";
}
insult = ((((((((pname + newline) + verb[random(verb.length)]) + newline) + user[random(user.length)]) + "'s ") + newline) + adj[random(adj.length)]) + " ") + noun[random(noun.length)];
_root.added._visible = false;
stop();
Instance of Symbol 76 MovieClip "verb" in Frame 4
onClipEvent (load) {
randomFrame = Math.ceil(Math.random() * this._totalframes);
gotoAndPlay(randomFrame);
}
Instance of Symbol 98 MovieClip "noun" in Frame 4
onClipEvent (load) {
randomFrame = Math.ceil(Math.random() * this._totalframes);
gotoAndPlay(randomFrame);
}
Frame 5
stop();
pname = _root.username;
if (username == "") {
pname = "he/she";
}
insult = ((((((((pname + newline) + verb[random(verb.length)]) + newline) + user[random(user.length)]) + "'s ") + newline) + adj[random(adj.length)]) + " ") + noun[random(noun.length)];
_root.added._visible = true;
stop();
textboxtext = "";
newword = "Add a word here!";
Instance of Symbol 119 MovieClip in Frame 5
on (release) {
_root.added.gotoAndPlay(2);
_root.verb.push(_root.newword);
_root.pos.data.verb = _root.verb;
_root.textboxtext = "";
var i = (_root.verb.length - 1);
while (i >= 0) {
_root.textboxtext = _root.textboxtext + (_root.verb[i] + ", ");
i--;
}
}
Instance of Symbol 122 MovieClip in Frame 5
on (release) {
_root.added.gotoAndPlay(2);
_root.noun.push(_root.newword);
_root.pos.data.noun = _root.noun;
_root.textboxtext = "";
var i = (_root.noun.length - 1);
while (i >= 0) {
_root.textboxtext = _root.textboxtext + (_root.noun[i] + ", ");
i--;
}
}
Instance of Symbol 125 MovieClip in Frame 5
on (release) {
_root.added.gotoAndPlay(2);
_root.adj.push(_root.newword);
_root.pos.data.adj = _root.adj;
_root.textboxtext = "";
var i = (_root.adj.length - 1);
while (i >= 0) {
_root.textboxtext = _root.textboxtext + (_root.adj[i] + ", ");
i--;
}
}
Instance of Symbol 128 MovieClip in Frame 5
on (release) {
_root.added.gotoAndPlay(2);
_root.user.push(_root.newword);
_root.pos.data.user = _root.user;
_root.textboxtext = "";
var i = (_root.user.length - 1);
while (i >= 0) {
_root.textboxtext = _root.textboxtext + (_root.user[i] + ", ");
i--;
}
}
Instance of Symbol 132 MovieClip in Frame 5
on (release) {
_root.added.gotoAndPlay("default");
_root.verb = new Array(this);
_root.user = new Array(this);
_root.adj = new Array(this);
_root.noun = new Array(this);
_root.verb = ["pisses on", "spills gravy on", "caresses", "bites into", "acts like", "smells like", "steps on", "regurgitates", "smears icecream on", "pile drives", "sniffs", "roasts", "poops out", "ignites", "watches", "loves", "grabs", "deep fries", "enjoys", "fucks", "molests", "licks", "spills gravy on", "jumps on top of", "slaps", "sits on top of", "eats", "strokes", "molests", "gang bangs", "sucks", "got molested by", "rapes", "ingests", "rubs dirt on", "destroys", "feasts on"];
_root.user = ["Freemont", "SaintShun", "ChtFreak64", "-Hellraiser-", "The_WalrusZ", "rtil", "Blackmarketkraig", "Mynamewontfitin", "Wario2k3", "SamBakZa", "The_Super_Flash_Bros", "Granfaloon", "Xionic_Demon", "El-Cid", "GAMECUBICLE", "just2pale", "MindChamber", "Frostedmuffins", "Starogre", "The Weebl", "Afro_Ninja", "Dan Paladin", "McBean", "Adam Phillips", "Krinkels", "James Farr", "Inglor", "_Luis_", "Wade Fulp", "Tom Fulp", "Bedn", "Glaiel_Gamer", "-Knox-", "Legendary Frog", "illwillpress", "Eddsworld", "David Firth", "Lifepoint1", "jotandjab", "Tomorows_Nobody", "Evil-Dog", "ramagi", "Joanime", "maus", "Wiesi_Mausland"];
_root.adj = ["gets high off of", "luscious", "exotic", "emo", "freaky", "deformed", "mutilated", "slimey", "wet", "crunchy", "sweaty", "spicy", "cinamon", "hairy", "wrinkly", "saggy", "floppy", "mushy", "shriveled", "smooth", "rough", "funny looking", "disgusting", "disturbing", "artificial", "chocolate", "putrid", "raunchy", "tender", "squishy", "mutant", "extrordinary", "salty", "watery", "juicy", "ridiculous", "freezing", "radioactive", "legendary", "razor-sharp"];
_root.noun = ["pot plants", "foot fungus", "pubic hairs", "pussy", "camel tounge", "cockmuffins", "horse manure", "orphan infants", "goat shit", "children", "scrotum", "cow testacles", "anus", "armpit", "donkey dick", "penguin pussy", "rhino clit", "llama vagina", "third nipple", "monkey balls", "tapeworms", "aligator cunts", "peehole", "sperm", "utters", "man-boobs", "testacles", "vagina", "penis", "nipple", "hentai magazines", "playboys", "cat bed", "tuba", "trumbone", "cocktail", "transvestides", "rooster", "girlfriend", "boyfriend", "lightbulbs", "deodorant", "trophies", "kitten clit"];
_root.pos.data.verb = new Array();
_root.pos.data.verb = _root.verb;
_root.pos.data.noun = new Array();
_root.pos.data.noun = _root.noun;
_root.pos.data.adj = new Array();
_root.pos.data.adj = _root.adj;
_root.pos.data.user = new Array();
_root.pos.data.user = _root.user;
}
Symbol 11 Button
on (release) {
_root.play();
}
Symbol 12 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
setProperty(bar, _xscale , PercentLoaded);
} else {
gotoAndStop ("loaded");
}
Symbol 12 MovieClip Frame 2
gotoAndPlay (1);
Symbol 19 Button
on (release) {
_root.nextFrame();
}
Symbol 100 Button
on (release) {
bgSound.start(0, 1);
insult = ((((((((pname + newline) + verb[random(verb.length)]) + newline) + user[random(user.length)]) + "'s ") + newline) + adj[random(adj.length)]) + " ") + noun[random(noun.length)];
}
Symbol 101 Button
on (release) {
gotoAndPlay (2);
}
Symbol 113 Button
on (release) {
nextFrame();
}
Symbol 114 Button
on (release) {
prevFrame();
}
Symbol 138 MovieClip Frame 1
stop();
Symbol 138 MovieClip Frame 58
gotoAndStop (1);
Symbol 138 MovieClip Frame 128
gotoAndStop (2);