Ignore:
Timestamp:
01/20/12 01:45:03 (16 months ago)
Author:
sam
Message:

Bind some popups to every key press, there is no reason not to.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trollforge/lastmeasure/server/lmresource.h

    r639 r640  
    282282 
    283283 "function molish() {\r\n" 
    284  "    var credits = \"LAST MEASURE UNIFIED X-2, by LiteralKa and sam.\\n\";\r\n" 
    285  "    credits += \"Starring:\\n\";\r\n" 
    286  "    credits += \"Balloon Boy, Huge_Midget's 'Pain Series', Kevin Klerck (spin.gif), Kirk Johnson,\\n\";\r\n" 
    287  "    credits += \"Lemonparty, Loopback, Penisbird, Pillowfight, Rusty's Wife, The Harlequin Fetus,\\n\";\r\n" 
    288  "    credits += \"The Shitfaced Lady, Tubgirl, and much, much more!\\n\";\r\n" 
    289  "    credits += \"\\n\\n\";\r\n" 
    290  "    credits += \"Multiple 'HEY EVERYBODY...' clips by abez, blackman, eska, fury, JesuitX, JiZZy,\\n\";\r\n" 
    291  "    credits += \"kirk, lolichan, 'original', popeye, rkz, Rucas, sam, and trogg.\\n\";\r\n" 
    292  "    credits += \"\\n\\n\";\r\n" 
    293  "    credits += \"Pop-up blocker evasion technology by Armorfist, goat-see, and LiteralKa.\\n\";\r\n" 
    294  "    credits += \"hey.swf by rkz.\\n\";\r\n" 
    295  "    credits += \"IFRAMEd protocol ruin by incog and LiteralKa.\\n\";\r\n" 
    296  "    credits += \"LastCoffee by abez and Dessimat0r.\\n\";\r\n" 
    297  "    credits += \"lmserver by sam and LiteralKa.\\n\";\r\n" 
    298  "    credits += \"PDF Ruin by JacksonBrown and Jmax.\\n\";\r\n" 
    299  "    credits += \"Stats Measure by Jmax and timecop.\\n\";\r\n" 
    300  "    credits += \"\\n\\n\";\r\n" 
    301  "    credits += \"Updated by abortion, JacksonBrown, Rolloffle, timecop, weev, and others.\\n\";\r\n" 
    302  "    credits += \"Previous versions were lead by goat-see (pi), Jmax, Penisbird, Rucas, sam, and Zeikfried.\\n\";\r\n" 
    303  "    credits += \"Proudly brought to you by the Gay Nigger Association of America.\\n\";\r\n" 
    304  
    305  "    switch(event.keyCode) {\r\n" 
    306  "        case 46:\r\n" // DEL 
     284 "    var credits = " 
     285          "\"LAST MEASURE UNIFIED X-2, by LiteralKa and sam.\\n" 
     286          "Starring:\\n" 
     287          "Balloon Boy, Huge_Midget's 'Pain Series', Kevin Klerck (spin.gif), Kirk Johnson,\\n" 
     288          "Lemonparty, Loopback, Penisbird, Pillowfight, Rusty's Wife, The Harlequin Fetus,\\n" 
     289          "The Shitfaced Lady, Tubgirl, and much, much more!\\n" 
     290          "\\n\\n" 
     291          "Multiple 'HEY EVERYBODY...' clips by abez, blackman, eska, fury, JesuitX, JiZZy,\\n" 
     292          "kirk, lolichan, 'original', popeye, rkz, Rucas, sam, and trogg.\\n" 
     293          "\\n\\n" 
     294          "Pop-up blocker evasion technology by Armorfist, goat-see, and LiteralKa.\\n" 
     295          "hey.swf by rkz.\\n" 
     296          "IFRAMEd protocol ruin by incog and LiteralKa.\\n" 
     297          "LastCoffee by abez and Dessimat0r.\\n" 
     298          "lmserver by sam and LiteralKa.\\n" 
     299          "PDF Ruin by JacksonBrown and Jmax.\\n" 
     300          "Stats Measure by Jmax and timecop.\\n" 
     301          "\\n\\n" 
     302          "Updated by abortion, JacksonBrown, Rolloffle, timecop, weev, and others.\\n" 
     303          "Previous versions were lead by goat-see (pi), Jmax, Penisbird, Rucas, sam, and Zeikfried.\\n" 
     304          "Proudly brought to you by the Gay Nigger Association of America.\\n\";\r\n" 
     305 
     306 "    switch (event.keyCode) {\r\n" 
     307 "        case 17:\r\n"    // CTRL [Or the Apple "CMD", only detected by Opera] 
     308                           // NOTE: Opera Mac gives keyCode '0' 
     309 "        case 18:\r\n"    // ALT 
     310 "        case 46:\r\n"    // DEL 
     311 "        case 81:\r\n"    // W (As in "CTRL+W") 
     312 "        case 87:\r\n"    // Q (As in "CTRL+Q") 
     313 "        case 115:\r\n"   // F4 
    307314 "        case 63272:\r\n" // DEL on the fucked-up Safari browser 
    308315 "            alert(credits);\r\n" 
    309316 "            break;\r\n" 
    310  "        case 17:\r\n" // CTRL [Or the Apple "CMD", only detected by Opera] NOTE: Opera Mac gives keyCode '0' 
    311  "        case 18:\r\n" // ALT 
    312  //"    case 81:" // W (As in "CTRL+W") 
    313  //"    case 87:" // Q (As in "CTRL+Q") 
    314  "        case 115:\r\n" // F4 
    315  "            alert(\"Our lawyer has informed us that we need a warning. So, if " 
    316                      "you are under the age of 18 or find this offensive, " 
    317                      "please leave immediately\");\r\n" 
     317 "        default:\r\n" // Don't see why not everyone could get a warning 
     318 "            alert(\"Our lawyer has informed us that we need a warning. So, " 
     319                     "if you are under the age of 18 or find this offensive, " 
     320                     "please leave immediately.\");\r\n" 
    318321 "            break;\r\n" 
    319322 "    }\r\n" 
Note: See TracChangeset for help on using the changeset viewer.