This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
////////////////////////////////////////////////////////////////////// | |
// Shakespeare Insult. Written by Antony Fairport after seeing | |
// http://www.pangloss.com/seidel/shake_rule.html and feeling that it | |
// needed to be made into a script, fast. | |
////////////////////////////////////////////////////////////////////// | |
// The three columns of parts of the insults. | |
list COLUMN1 = [ | |
"artless", | |
"bawdy", | |
"beslubbering", | |
"bootless", | |
"churlish", | |
"cockered", | |
"clouted", | |
"craven", | |
"currish", | |
"dankish", | |
"dissembling", | |
"droning", | |
"errant", | |
"fawning", | |
"fobbing", | |
"froward", | |
"frothy", | |
"gleeking", | |
"goatish", | |
"gorbellied", | |
"impertinent", | |
"infectious", | |
"jarring", | |
"loggerheaded", | |
"lumpish", | |
"mammering", | |
"mangled", | |
"mewling", | |
"paunchy", | |
"pribbling", | |
"puking", | |
"puny", | |
"qualling", | |
"rank", | |
"reeky", | |
"roguish", | |
"ruttish", | |
"saucy", | |
"spleeny", | |
"spongy", | |
"surly", | |
"tottering", | |
"unmuzzled", | |
"vain", | |
"venomed", | |
"villainous", | |
"warped", | |
"wayward", | |
"weedy", | |
"yeasty", | |
"cullionly", | |
"fusty", | |
"caluminous", | |
"wimpled", | |
"burly-boned", | |
"misbegotten", | |
"odiferous", | |
"poisonous", | |
"fishified", | |
"Wart-necked" | |
]; | |
list COLUMN2 = [ | |
"base-court", | |
"bat-fowling", | |
"beef-witted", | |
"beetle-headed", | |
"boil-brained", | |
"clapper-clawed", | |
"clay-brained", | |
"common-kissing", | |
"crook-pated", | |
"dismal-dreaming", | |
"dizzy-eyed", | |
"doghearted", | |
"dread-bolted", | |
"earth-vexing", | |
"elf-skinned", | |
"fat-kidneyed", | |
"fen-sucked", | |
"flap-mouthed", | |
"fly-bitten", | |
"folly-fallen", | |
"fool-born", | |
"full-gorged", | |
"guts-griping", | |
"half-faced", | |
"hasty-witted", | |
"hedge-born", | |
"hell-hated", | |
"idle-headed", | |
"ill-breeding", | |
"ill-nurtured", | |
"knotty-pated", | |
"milk-livered", | |
"motley-minded", | |
"onion-eyed", | |
"plume-plucked", | |
"pottle-deep", | |
"pox-marked", | |
"reeling-ripe", | |
"rough-hewn", | |
"rude-growing", | |
"rump-fed", | |
"shard-borne", | |
"sheep-biting", | |
"spur-galled", | |
"swag-bellied", | |
"tardy-gaited", | |
"tickle-brained", | |
"toad-spotted", | |
"unchin-snouted", | |
"weather-bitten", | |
"whoreson", | |
"malmsey-nosed", | |
"rampallian", | |
"lily-livered", | |
"scurvy-valiant", | |
"brazen-faced", | |
"unwash'd", | |
"bunch-back'd", | |
"leaden-footed", | |
"muddy-mettled", | |
"pigeon-liver'd", | |
"bscale-sided" | |
]; | |
list COLUMN3 = [ | |
"apple-john", | |
"baggage", | |
"barnacle", | |
"bladder", | |
"boar-pig", | |
"bugbear", | |
"bum-bailey", | |
"canker-blossom", | |
"clack-dish", | |
"clotpole", | |
"coxcomb", | |
"codpiece", | |
"death-token", | |
"dewberry", | |
"flap-dragon", | |
"flax-wench", | |
"flirt-gill", | |
"foot-licker", | |
"fustilarian", | |
"giglet", | |
"gudgeon", | |
"haggard", | |
"harpy", | |
"hedge-pig", | |
"horn-beast", | |
"hugger-mugger", | |
"joithead", | |
"lewdster", | |
"lout", | |
"maggot-pie", | |
"malt-worm", | |
"mammet", | |
"measle", | |
"minnow", | |
"miscreant", | |
"moldwarp", | |
"mumble-news", | |
"nut-hook", | |
"pigeon-egg", | |
"pignut", | |
"puttock", | |
"pumpion", | |
"ratsbane", | |
"scut", | |
"skainsmate", | |
"strumpet", | |
"varlot", | |
"vassal", | |
"whey-face", | |
"wagtail", | |
"knave", | |
"blind-worm", | |
"popinjay", | |
"scullian", | |
"jolt-head", | |
"malcontent", | |
"devil-monk", | |
"toad", | |
"rascal", | |
"Basket-Cockle" | |
]; | |
////////////////////////////////////////////////////////////////////// | |
// Return a random integer. | |
integer IntRand( integer iMin, integer iMax ) | |
{ | |
return iMin + (integer) llFrand( iMax - iMin + 1 ); | |
} | |
////////////////////////////////////////////////////////////////////// | |
// Default state. | |
default | |
{ | |
////////////////////////////////////////////////////////////////// | |
// Respond to a touch. | |
touch_start(integer total_number) | |
{ | |
// Get random parts of the insult. | |
string s1 = llList2String( COLUMN1, IntRand( 0, llGetListLength( COLUMN1 ) - 1 ) ); | |
string s2 = llList2String( COLUMN2, IntRand( 0, llGetListLength( COLUMN2 ) - 1 ) ); | |
string s3 = llList2String( COLUMN3, IntRand( 0, llGetListLength( COLUMN3 ) - 1 ) ); | |
// Say the insult. | |
llSay( 0, "Thou " + s1 + " " + s2 + " " + s3 + "!" ); | |
} | |
} |
No comments:
Post a Comment