1. This forum is in read-only mode.

Press CTRL+V

Discussion in 'Forum Games, Jokes & Random' started by fuselight, May 20, 2009.

  1. Jonez001

    Jonez001 Well-Known Member

    (names are private) divorced
     
  2. ace1o1

    ace1o1 Well-Known Member

    http://www.4shared.com/file/180509988/f46d486a/heifndid.html
     
  3. Jonez001

    Jonez001 Well-Known Member

    STILL I WANT THE MONEY BACK J**** (name private)
    I AM NOT GOING TO LEND YOU ANYMORE MONEY UNTIL YOU PAYED ME BACK!

    (why I copied this?)
     
  4. rock91

    rock91 Well-Known Member

    SUCKAAAAAAAAAA' YOU TRIPPIN'
     
  5. ybom

    ybom Well-Known Member

    Achelous
     
  6. MLWW

    MLWW Member

    OH GOD NO, ANYTHING BUT THAT!!!!1! *kills self*
     
  7. GhanaChris

    GhanaChris Well-Known Member

    http://failbooking.com/wp-content/uploads/2010/01/facebook-fail-osama.png
     
  8. Suiseiseki

    Suiseiseki Well-Known Member

    Has anyone really been far even as decided to use even go want to do look more like?
     
  9. ace1o1

    ace1o1 Well-Known Member

    http://www.mozilla.com/en-US/firefox/central/
     
  10. phscarface

    phscarface Well-Known Member

    http://www.youtube.com/watch?v=0KfSp3bGAus

    Yeah...for those people that don't have an' don't wanna buy a nintendo wii, there's a way to play the newest resident evil: Resident Evil The Dark Side Chronicles on thew emulator dolphin....lol
    Cuz I won't gonna waste any money buyin' another console...
    PC : the universal console.
     
  11. corprlfish

    corprlfish Well-Known Member

  12. titen96

    titen96 Well-Known Member

    function ajaxBusy(button_id) {
    if ($chk(button_id)) {
    $(button_id).disabled = true;
    }

    $('loading').removeClass('hide');
    $('loading').setStyle('top', window.getScroll().y);
    }
    function ajaxDone(button_id) {
    if ($chk(button_id)) {
    $(button_id).disabled = false;
    }

    $('loading').addClass('hide');
    }

    window.addEvent('domready', function() {
    var status = {
    'true': 'open',
    'false': 'close'
    };

    //SEARCH
    $('options_search').addEvent('click', function(e){
    e.stop();
    clearOptions();
    $('options_search').set('class', 'hide main searchsel');
    $('sec_search').set('class', 'sec searchsel');
    });

    //SHARE
    $('options_share').addEvent('click', function(e){
    e.stop();
    clearOptions();
    $('options_share').set('class', 'hide main sharesel');
    $('sec_share').set('class', 'sec sharesel');
    });

    });

    var clearOptions = function(){
    $('options_share').set('class', 'hide main share');
    $('options_search').set('class', 'hide main search');
    $('sec_share').set('class', 'sec share');
    $('sec_search').set('class', 'sec search');
    };

    var evilMenu = new Class({

    Implements: [Options,Fx.Styles],

    options: {
    index: 'home'
    },

    initialize: function(options) {
    this.setOptions(options);
    this.build();
    },

    build: function() {
    var self = this;

    this.tabs = $$('.mainmenu a.main');
    this.areas = $$('.mainmenu div.sec');

    //this.reset();
    this.activateArea(this.options.index)
    this.activateTab(this.options.index)

    this.tabs.each(function(el) {
    el.addEvent('click', function(e) {
    e.stop();
    self.reset();
    self.activateArea(this.id.substr(5));
    self.activateTab(this.id.substr(5))
    });
    });
    },

    reset: function() {
    this.tabs.each(function(el) {
    el.removeClass(el.id.substr(5)+'sel');
    el.addClass(el.id.substr(5));
    })
    this.areas.each(function(el) {
    el.removeClass(el.id.substr(9)+'sel');
    el.addClass(el.id.substr(9));
    })
    },

    activateArea: function(id) {
    $('menu_sec_'+id).removeClass(id);
    $('menu_sec_'+id).addClass(id+'sel');
    $('menu_sec_'+id).highlight('#FFF38F');
    },

    activateTab: function(id) {
    $('menu_'+id).removeClass(id);
    $('menu_'+id).addClass(id+'sel');
    }
    });

    var evilTabs = new Class({

    Implements: [Options],

    options: {
    tabs: 'tabs-nav',
    content: 'tabs-content',
    name: 'tab'
    },

    initialize: function(options) {
    this.setOptions(options);
    this.build();
    },

    build: function() {
    var self = this;
    this.tabs = $$('#' + this.options.tabs + ' .' + this.options.name);
    this.areas = $$('#' + this.options.content + ' .' + this.options.name);

    this.reset();

    this.tabs[0].addClass('active');
    this.areas[0].removeClass('hide');

    this.tabs.each(function(el) {
    el.addEvent('click', function(e) {
    e.stop();
    self.reset();
    self.activate(this.id);
    this.addClass('active');
    });
    });
    },

    reset: function() {
    this.tabs.removeClass('active');
    this.areas.addClass('hide');
    },

    activate: function(id) {
    this.reset();
    $('tab-' + id).removeClass('hide');
    $('tabtop-' + id).addClass('active');
    }
    });
    function magnify(table, size, size2, normal) {
    var romTable = $(table);

    if (romTable == null)
    return

    romTable.getElements('tbody > tr').each(function (row, meh, array) {

    row.addEvent('mouseover', function() {

    // Reset All
    array.setStyle('font-size', normal);

    // Apply
    if (row.getPrevious() !== null)
    row.getPrevious().setStyle('font-size', size2);

    row.setStyle('font-size', size);

    if (row.getNext() !== null)
    row.getNext().setStyle('font-size', size2);
    })
    });
    }
    function autoScroll()
    {
    var winScroller = new Scroller(window, {
    area: Math.round(window.getHeight() / 15),
    velocity: 0.6
    });

    (function(){
    this.stop();
    this.start();
    }).periodical(1000, winScroller);
    }

    var evilCounter = new Class({

    Implements: [Options],

    options: {
    element: 'counter',
    message: 'Updating Now!',
    restart: false,
    hours: 0,
    minutes: 0,
    seconds: 0
    },

    initialize: function(options) {
    this.setOptions(options);

    this.hours = this.options.hours;
    this.minutes = this.options.minutes;
    this.seconds = this.options.seconds;

    this.timer = this.decreaseSecond.periodical(1000, this);
    },

    decreaseSecond: function() {
    if (this.seconds == 0) {
    this.seconds = 59;
    this.decreaseMinute();
    }

    this.checkTime();

    this.seconds--;
    },

    decreaseMinute: function() {
    if (this.minutes == 0) {
    this.minutes = 59;
    this.decreaseHour();
    }

    this.minutes--;
    },

    decreaseHour: function() {
    this.hours--;
    },

    checkTime: function() {
    if (this.hours == 0 && this.minutes == 0 && this.seconds == 1) {
    $(this.options.element).innerHTML = this.hours + ' hours, ' + this.minutes + ' minutes & ' + this.seconds + ' seconds';

    var echo = function(){ $(this.options.element).innerHTML = this.options.message; }
    echo.delay(1000, this);

    if (this.options.restart) {
    this.hours = 23;
    this.minutes = 59;
    this.seconds = 59;
    } else {
    $clear(this.timer);
    }
    } else {
    $(this.options.element).innerHTML = this.hours + ' hours, ' + this.minutes + ' minutes & ' + this.seconds + ' seconds';
    }
    }
    });

    var evilFilter = new Class({

    Implements: [Options],

    options: {
    addElement: 'addFilter',
    container: 'filterContainer',
    filtersTemplate: 'filters',
    removeIcon: 'images/remove.png'
    },

    initialize: function(options) {
    this.setOptions(options);
    var self = this;

    self.count = 1;

    $(this.options.addElement).addEvent('click', function() {
    self.addElement();
    });
    },

    addElement: function(type, value) {
    var self = this;
    var container = new Element('div');

    var select = $(this.options.filtersTemplate).clone();
    select.set('name', 'filters[]');
    select.set('id', 'filter' + self.count);
    select.value = type;
    select.inject(container, 'bottom');

    if ( !$chk(type) )
    type = select.getChildren()[0].value;

    var option = this.addOption(type, self.count, value)
    option.inject(container, 'bottom');

    // Delete Icon
    var remove = new Element('img');
    remove.set('src', this.options.removeIcon);
    remove.addClass('clickable');
    remove.addEvent('click', function() {
    self.removeElement(container);
    });

    select.addEvent('change', function() {
    var id = this.id.substr(6);
    $('option'+id).destroy();
    var option = self.addOption(this.value, id);

    option.inject(remove, 'before');
    });

    remove.inject(container);

    container.inject($(this.options.container), 'bottom');

    ++self.count;
    },

    addOption: function(type, count, value) {
    var option = $(type).clone();
    option.set('name', 'options[]');
    option.set('id', 'option' + count);

    if ($chk(value))
    option.value = value;

    return option;
    },

    removeElement: function(element) {
    element.destroy();
    }
    });

    /*!
    Slimbox v1.7 - The ultimate lightweight Lightbox clone
    (c) 2007-2009 Christophe Beyls <http://www.digitalia.be>
    MIT-style license.
    */

    var Slimbox = (function() {

    // Global variables, accessible to Slimbox only
    var win = window, ie6 = Browser.Engine.trident4, options, images, activeImage = -1, activeURL, prevImage, nextImage, compatibleOverlay, middle, centerWidth, centerHeight,

    // Preload images
    preload = {}, preloadPrev = new Image(), preloadNext = new Image(),

    // DOM elements
    overlay, center, image, sizer, prevLink, nextLink, bottomContainer, bottom, caption, number,

    // Effects
    fxOverlay, fxResize, fxImage, fxBottom;

    /*
    Initialization
    */

    win.addEvent("domready", function() {
    // Append the Slimbox HTML code at the bottom of the document
    $(document.body).adopt(
    $$(
    overlay = new Element("div", {id: "lbOverlay", events: {click: close}}),
    center = new Element("div", {id: "lbCenter"}),
    bottomContainer = new Element("div", {id: "lbBottomContainer"})
    ).setStyle("display", "none")
    );

    image = new Element("div", {id: "lbImage"}).injectInside(center).adopt(
    sizer = new Element("div", {styles: {position: "relative"}}).adopt(
    prevLink = new Element("a", {id: "lbPrevLink", href: "#", events: {click: previous}}),
    nextLink = new Element("a", {id: "lbNextLink", href: "#", events: {click: next}})
    )
    );

    bottom = new Element("div", {id: "lbBottom"}).injectInside(bottomContainer).adopt(
    new Element("a", {id: "lbCloseLink", href: "#", events: {click: close}}),
    caption = new Element("div", {id: "lbCaption"}),
    number = new Element("div", {id: "lbNumber"}),
    new Element("div", {styles: {clear: "both"}})
    );
    });


    /*
    Internal functions
    */

    function position() {
    var scroll = win.getScroll(), size = win.getSize();
    $$(center, bottomContainer).setStyle("left", scroll.x + (size.x / 2));
    if (compatibleOverlay) overlay.setStyles({left: scroll.x, top: scroll.y, width: size.x, height: size.y});
    }

    function setup(open) {
    ["object", ie6 ? "select" : "embed"].forEach(function(tag) {
    Array.forEach(document.getElementsByTagName(tag), function(el) {
    if (open) el._slimbox = el.style.visibility;
    el.style.visibility = open ? "hidden" : el._slimbox;
    });
    });

    overlay.style.display = open ? "" : "none";

    var fn = open ? "addEvent" : "removeEvent";
    win[fn]("scroll", position)[fn]("resize", position);
    document[fn]("keydown", keyDown);
    }

    function keyDown(event) {
    var code = event.code;
    // Prevent default keyboard action (like navigating inside the page)
    return options.closeKeys.contains(code) ? close()
    : options.nextKeys.contains(code) ? next()
    : options.previousKeys.contains(code) ? previous()
    : false;
    }

    function previous() {
    return changeImage(prevImage);
    }

    function next() {
    return changeImage(nextImage);
    }

    function changeImage(imageIndex) {
    if (imageIndex >= 0) {
    activeImage = imageIndex;
    activeURL = images[imageIndex][0];
    prevImage = (activeImage || (options.loop ? images.length : 0)) - 1;
    nextImage = ((activeImage + 1) % images.length) || (options.loop ? 0 : -1);

    stop();
    center.className = "lbLoading";

    preload = new Image();
    preload.onload = animateBox;
    preload.src = activeURL;
    }

    return false;
    }

    function animateBox() {
    center.className = "";
    fxImage.set(0);
    image.setStyles({backgroundImage: "url(" + activeURL + ")", display: ""});
    sizer.setStyle("width", preload.width);
    $$(sizer, prevLink, nextLink).setStyle("height", preload.height);

    caption.set("html", images[activeImage][1] || "");
    number.set("html", (((images.length > 1) && options.counterText) || "").replace(/{x}/, activeImage + 1).replace(/{y}/, images.length));

    if (prevImage >= 0) preloadPrev.src = images[prevImage][0];
    if (nextImage >= 0) preloadNext.src = images[nextImage][0];

    centerWidth = image.offsetWidth;
    centerHeight = image.offsetHeight;
    var top = Math.max(0, middle - (centerHeight / 2)), check = 0, fn;
    if (center.offsetHeight != centerHeight) {
    check = fxResize.start({height: centerHeight, top: top});
    }
    if (center.offsetWidth != centerWidth) {
    check = fxResize.start({width: centerWidth, marginLeft: -centerWidth/2});
    }
    fn = function() {
    bottomContainer.setStyles({width: centerWidth, top: top + centerHeight, marginLeft: -centerWidth/2, visibility: "hidden", display: ""});
    fxImage.start(1);
    };
    if (check) {
    fxResize.chain(fn);
    }
    else {
    fn();
    }
    }

    function animateCaption() {
    if (prevImage >= 0) prevLink.style.display = "";
    if (nextImage >= 0) nextLink.style.display = "";
    fxBottom.set(-bottom.offsetHeight).start(0);
    bottomContainer.style.visibility = "";
    }

    function stop() {
    preload.onload = $empty;
    preload.src = preloadPrev.src = preloadNext.src = activeURL;
    fxResize.cancel();
    fxImage.cancel();
    fxBottom.cancel();
    $$(prevLink, nextLink, image, bottomContainer).setStyle("display", "none");
    }

    function close() {
    if (activeImage >= 0) {
    stop();
    activeImage = prevImage = nextImage = -1;
    center.style.display = "none";
    fxOverlay.cancel().chain(setup).start(0);
    }

    return false;
    }


    /*
    API
    */

    Element.implement({
    slimbox: function(_options, linkMapper) {
    // The processing of a single element is similar to the processing of a collection with a single element
    $$(this).slimbox(_options, linkMapper);

    return this;
    }
    });

    Elements.implement({
    /*
    options: Optional options object, see Slimbox.open()
    linkMapper: Optional function taking a link DOM element and an index as arguments and returning an array containing 2 elements:
    the image URL and the image caption (may contain HTML)
    linksFilter: Optional function taking a link DOM element and an index as arguments and returning true if the element is part of
    the image collection that will be shown on click, false if not. "this" refers to the element that was clicked.
    This function must always return true when the DOM element argument is "this".
    */
    slimbox: function(_options, linkMapper, linksFilter) {
    linkMapper = linkMapper || function(el) {
    return [el.href, el.title];
    };

    linksFilter = linksFilter || function() {
    return true;
    };

    var links = this;

    links.removeEvents("click").addEvent("click", function() {
    // Build the list of images that will be displayed
    var filteredLinks = links.filter(linksFilter, this);
    return Slimbox.open(filteredLinks.map(linkMapper), filteredLinks.indexOf(this), _options);
    });

    return links;
    }
    });

    return {
    open: function(_images, startImage, _options) {
    options = $extend({
    loop: false, // Allows to navigate between first and last images
    overlayOpacity: 0.8, // 1 is opaque, 0 is completely transparent (change the color in the CSS file)
    overlayFadeDuration: 400, // Duration of the overlay fade-in and fade-out animations (in milliseconds)
    resizeDuration: 400, // Duration of each of the box resize animations (in milliseconds)
    resizeTransition: false, // false uses the mootools default transition
    initialWidth: 250, // Initial width of the box (in pixels)
    initialHeight: 250, // Initial height of the box (in pixels)
    imageFadeDuration: 400, // Duration of the image fade-in animation (in milliseconds)
    captionAnimationDuration: 400, // Duration of the caption animation (in milliseconds)
    counterText: "Image {x} of {y}", // Translate or change as you wish, or set it to false to disable counter text for image groups
    closeKeys: [27, 88, 67], // Array of keycodes to close Slimbox, default: Esc (27), 'x' (88), 'c' (67)
    previousKeys: [37, 80], // Array of keycodes to navigate to the previous image, default: Left arrow (37), 'p' (80)
    nextKeys: [39, 78] // Array of keycodes to navigate to the next image, default: Right arrow (39), 'n' (78)
    }, _options || {});

    // Setup effects
    fxOverlay = new Fx.Tween(overlay, {property: "opacity", duration: options.overlayFadeDuration});
    fxResize = new Fx.Morph(center, $extend({duration: options.resizeDuration, link: "chain"}, options.resizeTransition ? {transition: options.resizeTransition} : {}));
    fxImage = new Fx.Tween(image, {property: "opacity", duration: options.imageFadeDuration, onComplete: animateCaption});
    fxBottom = new Fx.Tween(bottom, {property: "margin-top", duration: options.captionAnimationDuration});

    // The function is called for a single image, with URL and Title as first two arguments
    if (typeof _images == "string") {
    _images = [[_images, startImage]];
    startImage = 0;
    }

    middle = win.getScrollTop() + (win.getHeight() / 2);
    centerWidth = options.initialWidth;
    centerHeight = options.initialHeight;
    center.setStyles({top: Math.max(0, middle - (centerHeight / 2)), width: centerWidth, height: centerHeight, marginLeft: -centerWidth/2, display: ""});
    compatibleOverlay = ie6 || (overlay.currentStyle && (overlay.currentStyle.position != "fixed"));
    if (compatibleOverlay) overlay.style.position = "absolute";
    fxOverlay.set(0).start(options.overlayOpacity);
    position();
    setup(1);

    images = _images;
    options.loop = options.loop && (images.length > 1);
    return changeImage(startImage);
    }
    };

    })();
    Slimbox.scanPage = function() {
    $$(document.links).filter(function(el) {
    return el.rel && el.rel.test(/^lightbox/i);
    }).slimbox({/* Put custom options here */}, null, function(el) {
    return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel));
    });
    };
    window.addEvent("domready", Slimbox.scanPage);
    window.addEvent("load", function() {

    var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
    var s = document.createElement('script');
    s.src = gaJsHost + "google-analytics.com/ga.js";
    s.type = "text/javascript";
    document.getElementsByTagName("head")[0].appendChild(s);

    var i = 0;
    run_ga();

    function run_ga() {
    if (typeof _gat == "object") {
    var pageTracker = _gat._getTracker("UA-443126-1");
    pageTracker._initData();
    pageTracker._trackPageview();
    } else if (i < 20) {
    i++;
    setTimeout(run_ga, 500);
    }
    }
    });
     
  13. gx280

    gx280 Guest

    who knows how but, Dog Balls
     
  14. iluvgtavcs

    iluvgtavcs Guest

    RomUlation Community
    *

    * Hello iluvgtavcs
    * Show unread posts since last visit.
    * Show new replies to your posts.
    * January 06, 2010, 10:12:02 AM



    * Home
    * Help
    * Search
    * Profile
    o Summary
    o Account Settings
    o Forum Profile
    * My Messages
    o Read your messages
    o Send a message
    * Logout
    * Return to RomUlation


    * RomUlation Community »
    * General Category »
    * Forum Games, Jokes & Random (Moderators: Anandjones, Moderasian, Cahos Rahne Veloza, Remnoca, TirithRR) »
    * Topic: Press CTRL+V

    « previous next »

    * Reply
    * Notify
    * Mark unread
    * Send this topic
    * Print

    Pages: 1 ... 17 18 19 [20] Go Down
    Author Topic: Press CTRL+V (Read 4315 times)
    Offline nhi_po

    * Professional Gamer
    * ****
    *
    * Gender: Female
    * You stole my heart, and made it your own. ily©
    *
    o MSN Messenger - [email protected]
    o AOL Instant Messenger - [email protected]
    o Yahoo Instant Messenger - [email protected]
    *
    o View Profile
    o Personal Message (Offline)

    Re: Press CTRL+V
    « Reply #475 on: Yesterday at 01:54:53 AM »

    * Quote

    http://www.explorelearning.com/index.cfm?method=cResource.dspView&ResourceID=273&ClassID=633368

    o_O
    that was my hw assignment... why the heck do i have that copied?
    Report to moderator Logged
    Offline ace1o1

    * Professional Gamer
    * ****
    *
    * Gender: Male
    * I don't deal the cards around here.
    *
    o View Profile
    o
    o Email
    o Personal Message (Offline)

    Re: Press CTRL+V
    « Reply #476 on: Yesterday at 02:01:25 AM »

    * Quote

    http://www.4shared.com/file/170199525/368817f2/uloader_v32.html
    Report to moderator Logged
    Offline DrPappyPhD

    * Hopeful
    * *
    *
    * Gender: Male
    * That's funny, this wasn't here before.
    *
    o MSN Messenger - [email protected]
    *
    o View Profile
    o Email
    o Personal Message (Offline)

    Re: Press CTRL+V
    « Reply #477 on: Yesterday at 03:51:16 AM »

    * Quote









    Nothin'.
    Oh Well.
    Report to moderator Logged
    Offline Jonez001

    * Console Gamer
    * **
    *
    * Gender: Male
    * I am a happy Ez-Flash Vi user! Questions:MAIL ME!
    *
    o View Profile
    o http://failblog.org
    o Email
    o Personal Message (Offline)

    Re: Press CTRL+V
    « Reply #478 on: Yesterday at 06:59:52 PM »

    * Quote

    http://vdownloader.com/
    Report to moderator Logged
    Online GhanaChris

    * Console Gamer
    * **
    *
    * Gender: Male
    * What tha' Hell?
    *
    o View Profile
    o Personal Message (Online)

    Re: Press CTRL+V
    « Reply #479 on: Yesterday at 07:35:31 PM »

    * Quote

    http://en.wikipedia.org/wiki/Chrononhotonthologos
    Report to moderator Logged
    Offline Jonez001

    * Console Gamer
    * **
    *
    * Gender: Male
    * I am a happy Ez-Flash Vi user! Questions:MAIL ME!
    *
    o View Profile
    o http://failblog.org
    o Email
    o Personal Message (Offline)

    Re: Press CTRL+V
    « Reply #480 on: Yesterday at 07:57:14 PM »

    * Quote

    (names are private) divorced
    Report to moderator Logged
    Offline ace1o1

    * Professional Gamer
    * ****
    *
    * Gender: Male
    * I don't deal the cards around here.
    *
    o View Profile
    o
    o Email
    o Personal Message (Offline)

    Re: Press CTRL+V
    « Reply #481 on: Yesterday at 07:57:34 PM »

    * Quote

    http://www.4shared.com/file/180509988/f46d486a/heifndid.html
    Report to moderator Logged
    Offline Jonez001

    * Console Gamer
    * **
    *
    * Gender: Male
    * I am a happy Ez-Flash Vi user! Questions:MAIL ME!
    *
    o View Profile
    o http://failblog.org
    o Email
    o Personal Message (Offline)

    Re: Press CTRL+V
    « Reply #482 on: Yesterday at 08:06:41 PM »

    * Quote

    STILL I WANT THE MONEY BACK J**** (name private)
    I AM NOT GOING TO LEND YOU ANYMORE MONEY UNTIL YOU PAYED ME BACK!

    (why I copied this?)
    Report to moderator Logged
    Offline rock91

    * Premium Member
    * ****
    *
    * Gender: Male
    * www.animerockzone.co.cc/forums/ Join ARZ Now ^^
    *
    o MSN Messenger - [email protected]
    o Yahoo Instant Messenger - [email protected]
    *
    o View Profile
    o Anime Rock Zone
    o Email
    o Personal Message (Offline)

    Re: Press CTRL+V
    « Reply #483 on: Yesterday at 08:13:50 PM »

    * Quote

    SUCKAAAAAAAAAA' YOU TRIPPIN'
    Report to moderator Logged
    Offline ybom

    * Hopeful
    * *
    *
    o View Profile
    o Email
    o Personal Message (Offline)

    Re: Press CTRL+V
    « Reply #484 on: Yesterday at 08:45:28 PM »

    * Quote

    Achelous
    Report to moderator Logged
    Offline MLWW

    * Hopeful
    * *
    *
    *
    o View Profile
    o Email
    o Personal Message (Offline)

    Re: Press CTRL+V
    « Reply #485 on: Yesterday at 08:47:06 PM »

    * Quote

    OH GOD NO, ANYTHING BUT THAT!!!!1! *kills self*
    Report to moderator Logged
    Online GhanaChris

    * Console Gamer
    * **
    *
    * Gender: Male
    * What tha' Hell?
    *
    o View Profile
    o Personal Message (Online)

    Re: Press CTRL+V
    « Reply #486 on: Yesterday at 08:57:00 PM »

    * Quote

    http://failbooking.com/wp-content/uploads/2010/01/facebook-fail-osama.png
    Report to moderator Logged
    Offline Suiseiseki

    * Retro Gamer
    * ***
    *
    *
    o View Profile
    o Personal Message (Offline)

    Re: Press CTRL+V
    « Reply #487 on: Yesterday at 10:05:42 PM »

    * Quote

    Has anyone really been far even as decided to use even go want to do look more like?
    Report to moderator Logged
    Offline ace1o1

    * Professional Gamer
    * ****
    *
    * Gender: Male
    * I don't deal the cards around here.
    *
    o View Profile
    o
    o Email
    o Personal Message (Offline)

    Re: Press CTRL+V
    « Reply #488 on: Yesterday at 10:11:55 PM »

    * Quote

    http://www.mozilla.com/en-US/firefox/central/
    Report to moderator Logged
    Offline phscarface

    * Casual Gamer
    * *
    *
    * Gender: Male
    *
    o View Profile
    o Email
    o Personal Message (Offline)

    Re: Press CTRL+V
    « Reply #489 on: Yesterday at 11:14:02 PM »

    * Quote

    http://www.youtube.com/watch?v=0KfSp3bGAus

    Yeah...for those people that don't have an' don't wanna buy a nintendo wii, there's a way to play the newest resident evil: Resident Evil The Dark Side Chronicles on thew emulator dolphin....lol
    Cuz I won't gonna waste any money buyin' another console...
    PC : the universal console.
    Report to moderator Logged
    Offline corprlfish

    * Casual Gamer
    * *
    *
    * Gender: Male
    * im you'r worst nightmare, only, you can't wake up.
    *
    o View Profile
    o Email
    o Personal Message (Offline)

    Re: Press CTRL+V
    « Reply #490 on: Yesterday at 11:57:54 PM »

    * Quote

    meow
    Report to moderator Logged

    Offline gx280

    * Casual Gamer
    * *
    *
    * ROMs On ROMulation!
    *
    o View Profile
    o Email
    o Personal Message (Offline)

    Re: Press CTRL+V
    « Reply #492 on: Today at 03:45:21 AM »

    * Quote

    who knows how but, Dog Balls
    Report to moderator Logged

    * Reply
    * Notify
    * Mark unread
    * Send this topic
    * Print

    Pages: 1 ... 17 18 19 [20] Go Up
    « previous next »

    * RomUlation Community »
    * General Category »
    * Forum Games, Jokes & Random (Moderators: Anandjones, Moderasian, Cahos Rahne Veloza, Remnoca, TirithRR) »
    * Topic: Press CTRL+V

    Jump to:
    + Quick Reply

    With Quick-Reply you can write a post when viewing a topic without loading a new page. You can still use bulletin board code and smileys as you would in a normal post.

    * Powered by SMF 2.0 RC2 | SMF © 2006–2009, Simple Machines LLC
    * XHTML
    * RSS
    * WAP2
     
  15. titen96

    titen96 Well-Known Member

    RomUlation Community

    Hello titen96
    Show unread posts since last visit.
    Show new replies to your posts.
    January 06, 2010, 06:55:52 AM

    Home
    Help
    Search
    Profile
    My Messages
    Logout
    Return to RomUlation

    RomUlation Community » General Category » Forum Games, Jokes & Random (Moderators: Anandjones, Moderasian, Cahos Rahne Veloza, Remnoca, TirithRR) » Topic: Press CTRL+V
    « previous next »
    REPLY
    UNNOTIFY
    MARK UNREAD
    SEND THIS TOPIC
    PRINT
    Pages: 1 ... 7 8 9 [10] Go Down
    AuthorTopic: Press CTRL+V (Read 4323 times)
    johncarl
    Premium Member


    Gender:
    The sixth sick sheik's sixth sheep's sick.



    Re: Press CTRL+V
    « Reply #450 on: January 01, 2010, 07:21:06 AM »
    Quote
    Avira Anti Virus Avira Anti Virus
    Report to moderator Logged
    http://mangazone.smfforfree3.com/index.php/topic,150.0.html



    also, if you want a RANDOM FORUM....
    visit here! be sure to be active!

    http://acronesden.freeforums.org/index.php
    uni1246777
    Hopeful




    Re: Press CTRL+V
    « Reply #451 on: January 01, 2010, 01:26:16 PM »
    Quote
    honolulu, HI
    Report to moderator Logged

    Kiekoes
    Pink Army


    Gender:
    ~Tales of Hearts <3



    Re: Press CTRL+V
    « Reply #452 on: January 01, 2010, 01:46:07 PM »
    Quote
    http://www.panzerbaer.de/helper/pix/nl_pkw_5sitze_vw_t4_kmar-001.jpg
    Report to moderator Logged
    DS Collection: Nintendo DS, Nintendo DS Lite, 3 R4's, TTDS, 1GB MSD, 2GB MSD, 4GB MSD, Ez-Flash 3 in 1 Expansion Pack.
    Jonez001
    Console Gamer


    Gender:
    I am a happy Ez-Flash Vi user! Questions:MAIL ME!


    Re: Press CTRL+V
    « Reply #453 on: January 01, 2010, 01:54:06 PM »
    Quote
    BreakDance Project
    Report to moderator Logged
    NekoHennuli
    Next-Gen Gamer


    Gender:
    ~Life's a bitch, so am I~



    Re: Press CTRL+V
    « Reply #454 on: January 01, 2010, 04:00:31 PM »
    Quote
    jonin kans syömäs ja päikkärit
    Report to moderator Logged

    Meow
    Without you the poet within me is dead

    Remnoca
    Moderator


    I like to lock things.



    Re: Press CTRL+V
    « Reply #455 on: January 01, 2010, 04:02:08 PM »
    Quote
    Quote from: NekoHennuli on January 01, 2010, 04:00:31 PM
    jonin kans syömäs ja päikkärit

    Although this thread is about pasting things, it should at least be translated if in a foreign language to English as to allow moderators to see if the message needs moderating or not.
    Report to moderator Logged
    01001100 01001111 01000011 01001011 01000101 01000100 00101110

    rock91
    Premium Member


    Gender:
    www.animerockzone.co.cc/forums/ Join ARZ Now ^^



    Re: Press CTRL+V
    « Reply #456 on: January 01, 2010, 04:03:38 PM »
    Quote
    http://www.imagechicken.com/
    Report to moderator Logged


    My site:
    http://www.animerockzone.co.cc/forums/

    Join us now ^^
    BugsyV
    Casual Gamer


    Gender:
    Hmmhmmhmm. ^p^


    Re: Press CTRL+V
    « Reply #457 on: January 01, 2010, 04:03:52 PM »
    Quote
    Lady Ajay Marie MY definition of 2O1O:Me &&:you &&: VEGASS!!!!!!!(:)♥♥


    Hahahha.. xP
    Report to moderator Logged
    Remnoca
    Moderator


    I like to lock things.



    Re: Press CTRL+V
    « Reply #458 on: January 01, 2010, 04:06:56 PM »
    Quote
    http://www.youtube.com/watch?v=nlmir_PQwFQ

    It's got a good message there.
    Report to moderator Logged
    01001100 01001111 01000011 01001011 01000101 01000100 00101110

    rock91
    Premium Member


    Gender:
    www.animerockzone.co.cc/forums/ Join ARZ Now ^^



    Re: Press CTRL+V
    « Reply #459 on: January 01, 2010, 04:14:40 PM »
    Quote
    Ruined
    Report to moderator Logged


    My site:
    http://www.animerockzone.co.cc/forums/

    Join us now ^^
    Jonez001
    Console Gamer


    Gender:
    I am a happy Ez-Flash Vi user! Questions:MAIL ME!


    Re: Press CTRL+V
    « Reply #460 on: January 01, 2010, 04:22:47 PM »
    Quote
    Nothing because I just booted my pc ^^
    Report to moderator Logged
    iDeadlyBattleRifle
    Casual Gamer

    Gender:
    I'm A Beast



    Re: Press CTRL+V
    « Reply #461 on: January 01, 2010, 08:22:13 PM »
    Quote
    I thank God for friends and family & all the blessings he bestowed upon me and my family this year, especially my beautiful-sweet little girl and handsome Ziggy... Looking forward to a new year in Christ accomplishing my purpose in him- God Bless you all and Happy New Year! why the fuck did i copy that???
    Report to moderator Logged
    Join http://www.thepokemonforum.webs.com for a really good forum send me a private message for what you want in it
    king_leo
    Pink Army


    Gender:



    Re: Press CTRL+V
    « Reply #462 on: January 01, 2010, 08:33:23 PM »
    Quote
    YEAH! Press CTRL+V! If you copied something so then Paste it! (NOTE: Don't press CTRL+V if you have seen this thread and copied something for this thread only! Press when you have something from earlier and you saw this topic somehow!)


    Please Don't post an outside link to the other forum plz!
    Report to moderator Logged

    bobafett1136
    Console Gamer


    MW2 - Drop Shot Vengeance (DSV)


    Re: Press CTRL+V
    « Reply #463 on: January 01, 2010, 08:33:31 PM »
    Quote
    Quote from: phongle123 on December 26, 2009, 07:57:10 PM
    YEP, super pointless, In v5 DEMO, you could only do YOU vs 1 CPU, but that CPU actually attacks, but now this one, as many CPU's as you put, all they can do is Jump, even if you put only 1 CPU.

    Report to moderator Logged

    iluvgtavcs
    Next-Gen Gamer


    Gender:
    OBJECTION! I've got ALL the evidence!!!


    Re: Press CTRL+V
    « Reply #464 on: January 03, 2010, 11:12:51 AM »
    Quote

    Re: Press CTRL+V
    « Reply #463 on: Yesterday at 01:33:31 AM »

    * Quote

    Quote from: phongle123 on December 27, 2009, 12:57:10 AM

    YEP, super pointless, In v5 DEMO, you could only do YOU vs 1 CPU, but that CPU actually attacks, but now this one, as many CPU's as you put, all they can do is Jump, even if you put only 1 CPU.


    Report to moderator Logged

    * Reply
    * Notify
    * Mark unread
    * Send this topic
    * Print

    Pages: 1 ... 16 17 18 [19] Go Up
    « previous next »

    * RomUlation Community »
    * General Category »
    * Forum Games, Jokes & Random (Moderators: Anandjones, Moderasian, Cahos Rahne Veloza, Remnoca, TirithRR) »
    * Topic: Press CTRL+V

    Jump to:
    + Quick Reply

    With Quick-Reply you can write a post when viewing a topic without loading a new page. You can still use bulletin board code and smileys as you would in a normal post.

    * Powered by SMF 2.0 RC2 | SMF © 2006–2009, Simple Machines LLC
    * XHTML
    * RSS
    * WAP2

    Page created in 0.371 seconds with 19 queries.
    Report to moderator Logged
    mmm...
    DrPappyPhD
    Hopeful


    Gender:
    That's funny, this wasn't here before.



    Re: Press CTRL+V
    « Reply #465 on: January 03, 2010, 11:39:16 AM »
    Quote
    http://www.crazy-jokes.com/pictures/funny-face.jpg

    no idea what it is though...
    Report to moderator Logged


    Intervention. Military's finest.
    BOOM!! Headshot
    jacoppin
    Hopeful




    Re: Press CTRL+V
    « Reply #466 on: January 03, 2010, 11:50:30 AM »
    Quote
    1: [artist]The Fall of Troy[/artist] - [track artist=The Fall of Troy]F.C.P.R.E.M.I.X.[/track]
    50: [artist]Gallows[/artist] - [track artist=Gallows]In The Belly Of A Shark[/track]
    100: [artist]Muse[/artist] - [track artist=Muse]Knights of Cydonia[/track]
    250: [artist]The Fall of Troy[/artist] - [track artist=The Fall of Troy]F.C.P.R.E.M.I.X.[/track]
    500: [artist]Disturbed[/artist] - [track artist=Disturbed]Forgiven[/track]
    666: [artist]Disturbed[/artist] - [track artist=Disturbed]Criminal[/track]
    750: [artist]Bullet For My Valentine[/artist] - [track artist=Bullet For My Valentine]Take It Out On Me[/track]
    1000: [artist]Bullet For My Valentine[/artist] - [track artist=Bullet For My Valentine]Forever And Always[/track]
    1250: [artist]Disturbed[/artist] - [track artist=Disturbed]Enough[/track]
    1500: [artist]The Fall of Troy[/artist] - [track artist=The Fall of Troy]The Last March of the Ents[/track]
    1750: [artist]Disturbed[/artist] - [track artist=Disturbed]Deify[/track]
    2000: [artist]Muse[/artist] - [track artist=Muse]Stockholm Syndrome[/track]
    2250: [artist]All That Remains[/artist] - [track artist=All That Remains]It Dwells Me In[/track]

    gotcha by anniversary tracks grabber
    Post Merge: January 03, 2010, 11:51:00 AM
    lol, stuff for last fm
    Report to moderator Logged
    LilPrincess
    Pink Army


    Gender:
    hi.


    Re: Press CTRL+V
    « Reply #467 on: January 04, 2010, 05:00:10 AM »
    Quote
    お元気ですか

    i'm learning japanese
    it means 'How do you do?'
    Report to moderator Logged
    [/url
    deanxxczx
    Console Gamer


    Gender:
    'idiot'



    Re: Press CTRL+V
    « Reply #468 on: January 04, 2010, 05:06:01 AM »
    Quote
    Counter-Strike: Source
    Report to moderator Logged

    HaseoTOD
    Professional Gamer


    Gender:
    Pumpkin Pantsu~


    Re: Press CTRL+V
    « Reply #469 on: January 04, 2010, 05:09:50 AM »
    Quote
    http://www.zenarchery.com/wp-content/uploads/2008/07/nice-day-fuck-yeah.jpg
    Report to moderator Logged

    Excalibuuuuuuuuuuuuuuuuuur~
    NekoHennuli
    Next-Gen Gamer


    Gender:
    ~Life's a bitch, so am I~



    Re: Press CTRL+V
    « Reply #470 on: January 04, 2010, 06:39:42 AM »
    Quote
    Vuorikatu 19
    Report to moderator Logged

    Meow
    Without you the poet within me is dead

    blaziken123
    Casual Gamer


    Gender:
    GO ARCEUS! WOOHOO!


    Re: Press CTRL+V
    « Reply #471 on: January 04, 2010, 07:50:16 PM »
    Quote
    http://www.youtube.com/watch?v=1JC-ZS0BvEg
    Report to moderator Logged


    HM Slave- what Pokemon will you be?


    Mojo- what pokemon are you?
    BugsyV
    Casual Gamer


    Gender:
    Hmmhmmhmm. ^p^


    Re: Press CTRL+V
    « Reply #472 on: January 04, 2010, 08:32:48 PM »
    Quote
    http://www.granerogoloso.cl/tienda/catalog/images/Dulce%20de%20leche.jpg

    Report to moderator Logged
    ace1o1
    Professional Gamer


    Gender:
    I don't deal the cards around here.


    Re: Press CTRL+V
    « Reply #473 on: January 04, 2010, 08:38:25 PM »
    Quote
    It was so much fun pressing the button every 6 seconds!!XD
    Report to moderator Logged
    4.2 Wii Hacking Guide can be found here. You must be a registered user though and it's in ace1o1's Gaming Board.

    Mario and Luigi - Bowser's Inside Story With YSMenu for R4

    For PSP/DS flashing and Wii modification, PM me for more information.
    corprlfish
    Casual Gamer


    Gender:
    im you'r worst nightmare, only, you can't wake up.


    Re: Press CTRL+V
    « Reply #474 on: January 04, 2010, 08:45:42 PM »
    Quote
    *3 middle fingers* Sr3ew YOUZZZ guys. g2g to bed byezzz
    Report to moderator Logged

    OWNED!

    nhi_po
    Professional Gamer


    Gender:
    You stole my heart, and made it your own. ily©



    Re: Press CTRL+V
    « Reply #475 on: January 04, 2010, 08:54:53 PM »
    Quote
    http://www.explorelearning.com/index.cfm?method=cResource.dspView&ResourceID=273&ClassID=633368

    o_O
    that was my hw assignment... why the heck do i have that copied?
    Report to moderator Logged
    For all these words I say came from somewhere in my heart, I meant it just for you, and no one else.
    I don't know what else to say, other than I love you.
    I can't tell you how much I missed you.
    Every second felt like an eternity, every minute felt like forever.
    I just wish that I can see you again, seeing your face is good enough for me,
    I need not to ask for anything more.
    ace1o1
    Professional Gamer


    Gender:
    I don't deal the cards around here.


    Re: Press CTRL+V
    « Reply #476 on: January 04, 2010, 09:01:25 PM »
    Quote
    http://www.4shared.com/file/170199525/368817f2/uloader_v32.html
    Report to moderator Logged
    4.2 Wii Hacking Guide can be found here. You must be a registered user though and it's in ace1o1's Gaming Board.

    Mario and Luigi - Bowser's Inside Story With YSMenu for R4

    For PSP/DS flashing and Wii modification, PM me for more information.
    DrPappyPhD
    Hopeful


    Gender:
    That's funny, this wasn't here before.



    Re: Press CTRL+V
    « Reply #477 on: January 04, 2010, 10:51:16 PM »
    Quote








    Nothin'.
    Oh Well.
    Report to moderator Logged


    Intervention. Military's finest.
    BOOM!! Headshot
    Jonez001
    Console Gamer


    Gender:
    I am a happy Ez-Flash Vi user! Questions:MAIL ME!


    Re: Press CTRL+V
    « Reply #478 on: Yesterday at 01:59:52 PM »
    Quote
    http://vdownloader.com/
    Report to moderator Logged
    GhanaChris
    Console Gamer


    Gender:
    What tha' Hell?


    Re: Press CTRL+V
    « Reply #479 on: Yesterday at 02:35:31 PM »
    Quote
    http://en.wikipedia.org/wiki/Chrononhotonthologos
    Report to moderator Logged
    Jonez001
    Console Gamer


    Gender:
    I am a happy Ez-Flash Vi user! Questions:MAIL ME!


    Re: Press CTRL+V
    « Reply #480 on: Yesterday at 02:57:14 PM »
    Quote
    (names are private) divorced
    Report to moderator Logged
    ace1o1
    Professional Gamer


    Gender:
    I don't deal the cards around here.


    Re: Press CTRL+V
    « Reply #481 on: Yesterday at 02:57:34 PM »
    Quote
    http://www.4shared.com/file/180509988/f46d486a/heifndid.html
    Report to moderator Logged
    4.2 Wii Hacking Guide can be found here. You must be a registered user though and it's in ace1o1's Gaming Board.

    Mario and Luigi - Bowser's Inside Story With YSMenu for R4

    For PSP/DS flashing and Wii modification, PM me for more information.
    Jonez001
    Console Gamer


    Gender:
    I am a happy Ez-Flash Vi user! Questions:MAIL ME!


    Re: Press CTRL+V
    « Reply #482 on: Yesterday at 03:06:41 PM »
    Quote
    STILL I WANT THE MONEY BACK J**** (name private)
    I AM NOT GOING TO LEND YOU ANYMORE MONEY UNTIL YOU PAYED ME BACK!

    (why I copied this?)
    Report to moderator Logged
    rock91
    Premium Member


    Gender:
    www.animerockzone.co.cc/forums/ Join ARZ Now ^^



    Re: Press CTRL+V
    « Reply #483 on: Yesterday at 03:13:50 PM »
    Quote
    SUCKAAAAAAAAAA' YOU TRIPPIN'
    Report to moderator Logged


    My site:
    http://www.animerockzone.co.cc/forums/

    Join us now ^^
    ybom
    Hopeful



    Re: Press CTRL+V
    « Reply #484 on: Yesterday at 03:45:28 PM »
    Quote
    Achelous
    Report to moderator Logged
    MLWW
    Hopeful




    Re: Press CTRL+V
    « Reply #485 on: Yesterday at 03:47:06 PM »
    Quote
    OH GOD NO, ANYTHING BUT THAT!!!!1! *kills self*
    Report to moderator Logged

    GhanaChris
    Console Gamer


    Gender:
    What tha' Hell?


    Re: Press CTRL+V
    « Reply #486 on: Yesterday at 03:57:00 PM »
    Quote
    http://failbooking.com/wp-content/uploads/2010/01/facebook-fail-osama.png
    Report to moderator Logged
    Suiseiseki
    Retro Gamer




    Re: Press CTRL+V
    « Reply #487 on: Yesterday at 05:05:42 PM »
    Quote
    Has anyone really been far even as decided to use even go want to do look more like?
    Report to moderator Logged

    Has anyone really been far even as decided to use even go want to do look more like?
    ace1o1
    Professional Gamer


    Gender:
    I don't deal the cards around here.


    Re: Press CTRL+V
    « Reply #488 on: Yesterday at 05:11:55 PM »
    Quote
    http://www.mozilla.com/en-US/firefox/central/
    Report to moderator Logged
    4.2 Wii Hacking Guide can be found here. You must be a registered user though and it's in ace1o1's Gaming Board.

    Mario and Luigi - Bowser's Inside Story With YSMenu for R4

    For PSP/DS flashing and Wii modification, PM me for more information.
    phscarface
    Casual Gamer


    Gender:


    Re: Press CTRL+V
    « Reply #489 on: Yesterday at 06:14:02 PM »
    Quote
    http://www.youtube.com/watch?v=0KfSp3bGAus

    Yeah...for those people that don't have an' don't wanna buy a nintendo wii, there's a way to play the newest resident evil: Resident Evil The Dark Side Chronicles on thew emulator dolphin....lol
    Cuz I won't gonna waste any money buyin' another console...
    PC : the universal console.
    Report to moderator Logged
    [imag/] http://img70
    corprlfish
    Casual Gamer


    Gender:
    im you'r worst nightmare, only, you can't wake up.


    Re: Press CTRL+V
    « Reply #490 on: Yesterday at 06:57:54 PM »
    Quote
    meow
    Report to moderator Logged

    OWNED!

    titen96
    Next-Gen Gamer


    Gender:
    Death is not a crime, Murder is


    Re: Press CTRL+V
    « Reply #491 on: Yesterday at 07:01:40 PM »
    QuoteModify
    function ajaxBusy(button_id) {
    if ($chk(button_id)) {
    $(button_id).disabled = true;
    }

    $('loading').removeClass('hide');
    $('loading').setStyle('top', window.getScroll().y);
    }
    function ajaxDone(button_id) {
    if ($chk(button_id)) {
    $(button_id).disabled = false;
    }

    $('loading').addClass('hide');
    }

    window.addEvent('domready', function() {
    var status = {
    'true': 'open',
    'false': 'close'
    };

    //SEARCH
    $('options_search').addEvent('click', function(e){
    e.stop();
    clearOptions();
    $('options_search').set('class', 'hide main searchsel');
    $('sec_search').set('class', 'sec searchsel');
    });

    //SHARE
    $('options_share').addEvent('click', function(e){
    e.stop();
    clearOptions();
    $('options_share').set('class', 'hide main sharesel');
    $('sec_share').set('class', 'sec sharesel');
    });

    });

    var clearOptions = function(){
    $('options_share').set('class', 'hide main share');
    $('options_search').set('class', 'hide main search');
    $('sec_share').set('class', 'sec share');
    $('sec_search').set('class', 'sec search');
    };

    var evilMenu = new Class({

    Implements: [Options,Fx.Styles],

    options: {
    index: 'home'
    },

    initialize: function(options) {
    this.setOptions(options);
    this.build();
    },

    build: function() {
    var self = this;

    this.tabs = $$('.mainmenu a.main');
    this.areas = $$('.mainmenu div.sec');

    //this.reset();
    this.activateArea(this.options.index)
    this.activateTab(this.options.index)

    this.tabs.each(function(el) {
    el.addEvent('click', function(e) {
    e.stop();
    self.reset();
    self.activateArea(this.id.substr(5));
    self.activateTab(this.id.substr(5))
    });
    });
    },

    reset: function() {
    this.tabs.each(function(el) {
    el.removeClass(el.id.substr(5)+'sel');
    el.addClass(el.id.substr(5));
    })
    this.areas.each(function(el) {
    el.removeClass(el.id.substr(9)+'sel');
    el.addClass(el.id.substr(9));
    })
    },

    activateArea: function(id) {
    $('menu_sec_'+id).removeClass(id);
    $('menu_sec_'+id).addClass(id+'sel');
    $('menu_sec_'+id).highlight('#FFF38F');
    },

    activateTab: function(id) {
    $('menu_'+id).removeClass(id);
    $('menu_'+id).addClass(id+'sel');
    }
    });

    var evilTabs = new Class({

    Implements: [Options],

    options: {
    tabs: 'tabs-nav',
    content: 'tabs-content',
    name: 'tab'
    },

    initialize: function(options) {
    this.setOptions(options);
    this.build();
    },

    build: function() {
    var self = this;
    this.tabs = $$('#' + this.options.tabs + ' .' + this.options.name);
    this.areas = $$('#' + this.options.content + ' .' + this.options.name);

    this.reset();

    this.tabs[0].addClass('active');
    this.areas[0].removeClass('hide');

    this.tabs.each(function(el) {
    el.addEvent('click', function(e) {
    e.stop();
    self.reset();
    self.activate(this.id);
    this.addClass('active');
    });
    });
    },

    reset: function() {
    this.tabs.removeClass('active');
    this.areas.addClass('hide');
    },

    activate: function(id) {
    this.reset();
    $('tab-' + id).removeClass('hide');
    $('tabtop-' + id).addClass('active');
    }
    });
    function magnify(table, size, size2, normal) {
    var romTable = $(table);

    if (romTable == null)
    return

    romTable.getElements('tbody > tr').each(function (row, meh, array) {

    row.addEvent('mouseover', function() {

    // Reset All
    array.setStyle('font-size', normal);

    // Apply
    if (row.getPrevious() !== null)
    row.getPrevious().setStyle('font-size', size2);

    row.setStyle('font-size', size);

    if (row.getNext() !== null)
    row.getNext().setStyle('font-size', size2);
    })
    });
    }
    function autoScroll()
    {
    var winScroller = new Scroller(window, {
    area: Math.round(window.getHeight() / 15),
    velocity: 0.6
    });

    (function(){
    this.stop();
    this.start();
    }).periodical(1000, winScroller);
    }

    var evilCounter = new Class({

    Implements: [Options],

    options: {
    element: 'counter',
    message: 'Updating Now!',
    restart: false,
    hours: 0,
    minutes: 0,
    seconds: 0
    },

    initialize: function(options) {
    this.setOptions(options);

    this.hours = this.options.hours;
    this.minutes = this.options.minutes;
    this.seconds = this.options.seconds;

    this.timer = this.decreaseSecond.periodica l(1000, this);
    },

    decreaseSecond: function() {
    if (this.seconds == 0) {
    this.seconds = 59;
    this.decreaseMinute();
    }

    this.checkTime();

    this.seconds--;
    },

    decreaseMinute: function() {
    if (this.minutes == 0) {
    this.minutes = 59;
    this.decreaseHour();
    }

    this.minutes--;
    },

    decreaseHour: function() {
    this.hours--;
    },

    checkTime: function() {
    if (this.hours == 0 && this.minutes == 0 && this.seconds == 1) {
    $(this.options.element).innerHTML = this.hours + ' hours, ' + this.minutes + ' minutes &amp; ' + this.seconds + ' seconds';

    var echo = function(){ $(this.options.element).innerHTML = this.options.message; }
    echo.delay(1000, this);

    if (this.options.restart) {
    this.hours = 23;
    this.minutes = 59;
    this.seconds = 59;
    } else {
    $clear(this.timer);
    }
    } else {
    $(this.options.element).innerHTML = this.hours + ' hours, ' + this.minutes + ' minutes &amp; ' + this.seconds + ' seconds';
    }
    }
    });

    var evilFilter = new Class({

    Implements: [Options],

    options: {
    addElement: 'addFilter',
    container: 'filterContainer',
    filtersTemplate: 'filters',
    removeIcon: 'images/remove.png'
    },

    initialize: function(options) {
    this.setOptions(options);
    var self = this;

    self.count = 1;

    $(this.options.addElement).addEvent('click', function() {
    self.addElement();
    });
    },

    addElement: function(type, value) {
    var self = this;
    var container = new Element('div');

    var select = $(this.options.filtersTemplate).clone();
    select.set('name', 'filters[]');
    select.set('id', 'filter' + self.count);
    select.value = type;
    select.inject(container, 'bottom');

    if ( !$chk(type) )
    type = select.getChildren()[0].value;

    var option = this.addOption(type, self.count, value)
    option.inject(container, 'bottom');

    // Delete Icon
    var remove = new Element('img');
    remove.set('src', this.options.removeIcon);
    remove.addClass('clickable');
    remove.addEvent('click', function() {
    self.removeElement(container);
    });

    select.addEvent('change', function() {
    var id = this.id.substr(6);
    $('option'+id).destroy();
    var option = self.addOption(this.value, id);

    option.inject(remove, 'before');
    });

    remove.inject(container);

    container.inject($(this.options.container), 'bottom');

    ++self.count;
    },

    addOption: function(type, count, value) {
    var option = $(type).clone();
    option.set('name', 'options[]');
    option.set('id', 'option' + count);

    if ($chk(value))
    option.value = value;

    return option;
    },

    removeElement: function(element) {
    element.destroy();
    }
    });

    /*!
    Slimbox v1.7 - The ultimate lightweight Lightbox clone
    (c) 2007-2009 Christophe Beyls <http://www.digitalia.be>
    MIT-style license.
    */

    var Slimbox = (function() {

    // Global variables, accessible to Slimbox only
    var win = window, ie6 = Browser.Engine.trident4, options, images, activeImage = -1, activeURL, prevImage, nextImage, compatibleOverlay, middle, centerWidth, centerHeight,

    // Preload images
    preload = {}, preloadPrev = new Image(), preloadNext = new Image(),

    // DOM elements
    overlay, center, image, sizer, prevLink, nextLink, bottomContainer, bottom, caption, number,

    // Effects
    fxOverlay, fxResize, fxImage, fxBottom;

    /*
    Initialization
    */

    win.addEvent("domready", function() {
    // Append the Slimbox HTML code at the bottom of the document
    $(document.body).adopt(
    $$(
    overlay = new Element("div", {id: "lbOverlay", events: {click: close}}),
    center = new Element("div", {id: "lbCenter"}),
    bottomContainer = new Element("div", {id: "lbBottomContainer"})
    ).setStyle("display", "none")
    );

    image = new Element("div", {id: "lbImage"}).injectInside(center).adopt(
    sizer = new Element("div", {styles: {position: "relative"}}).adopt(
    prevLink = new Element("a", {id: "lbPrevLink", href: "#", events: {click: previous}}),
    nextLink = new Element("a", {id: "lbNextLink", href: "#", events: {click: next}})
    )
    );

    bottom = new Element("div", {id: "lbBottom"}).injectInside(bottomContainer).adopt(
    new Element("a", {id: "lbCloseLink", href: "#", events: {click: close}}),
    caption = new Element("div", {id: "lbCaption"}),
    number = new Element("div", {id: "lbNumber"}),
    new Element("div", {styles: {clear: "both"}})
    );
    });


    /*
    Internal functions
    */

    function position() {
    var scroll = win.getScroll(), size = win.getSize();
    $$(center, bottomContainer).setStyle("left", scroll.x + (size.x / 2));
    if (compatibleOverlay) overlay.setStyles({left: scroll.x, top: scroll.y, width: size.x, height: size.y});
    }

    function setup(open) {
    ["object", ie6 ? "select" : "embed"].forEach(function(tag) {
    Array.forEach(document.getElementsByTagName(tag), function(el) {
    if (open) el._slimbox = el.style.visibility;
    el.style.visibility = open ? "hidden" : el._slimbox;
    });
    });

    overlay.style.display = open ? "" : "none";

    var fn = open ? "addEvent" : "removeEvent";
    win[fn]("scroll", position)[fn]("resize", position);
    document[fn]("keydown", keyDown);
    }

    function keyDown(event) {
    var code = event.code;
    // Prevent default keyboard action (like navigating inside the page)
    return options.closeKeys.contains(code) ? close()
    : options.nextKeys.contains(code) ? next()
    : options.previousKeys.contains(code) ? previous()
    : false;
    }

    function previous() {
    return changeImage(prevImage);
    }

    function next() {
    return changeImage(nextImage);
    }

    function changeImage(imageIndex) {
    if (imageIndex >= 0) {
    activeImage = imageIndex;
    activeURL = images[imageIndex][0];
    prevImage = (activeImage || (options.loop ? images.length : 0)) - 1;
    nextImage = ((activeImage + 1) % images.length) || (options.loop ? 0 : -1);

    stop();
    center.className = "lbLoading";

    preload = new Image();
    preload.onload = animateBox;
    preload.src = activeURL;
    }

    return false;
    }

    function animateBox() {
    center.className = "";
    fxImage.set(0);
    image.setStyles({backgroundImage: "url(" + activeURL + ")", display: ""});
    sizer.setStyle("width", preload.width);
    $$(sizer, prevLink, nextLink).setStyle("height", preload.height);

    caption.set("html", images[activeImage][1] || "");
    number.set("html", (((images.length > 1) && options.counterText) || "").replace(/{x}/, activeImage + 1).replace(/{y}/, images.length));

    if (prevImage >= 0) preloadPrev.src = images[prevImage][0];
    if (nextImage >= 0) preloadNext.src = images[nextImage][0];

    centerWidth = image.offsetWidth;
    centerHeight = image.offsetHeight;
    var top = Math.max(0, middle - (centerHeight / 2)), check = 0, fn;
    if (center.offsetHeight != centerHeight) {
    check = fxResize.start({height: centerHeight, top: top});
    }
    if (center.offsetWidth != centerWidth) {
    check = fxResize.start({width: centerWidth, marginLeft: -centerWidth/2});
    }
    fn = function() {
    bottomContainer.setStyles({width: centerWidth, top: top + centerHeight, marginLeft: -centerWidth/2, visibility: "hidden", display: ""});
    fxImage.start(1);
    };
    if (check) {
    fxResize.chain(fn);
    }
    else {
    fn();
    }
    }

    function animateCaption() {
    if (prevImage >= 0) prevLink.style.display = "";
    if (nextImage >= 0) nextLink.style.display = "";
    fxBottom.set(-bottom.offsetHeight).start(0);
    bottomContainer.style.visibil ity = "";
    }

    function stop() {
    preload.onload = $empty;
    preload.src = preloadPrev.src = preloadNext.src = activeURL;
    fxResize.cancel();
    fxImage.cancel();
    fxBottom.cancel();
    $$(prevLink, nextLink, image, bottomContainer).setStyle("display", "none");
    }

    function close() {
    if (activeImage >= 0) {
    stop();
    activeImage = prevImage = nextImage = -1;
    center.style.display = "none";
    fxOverlay.cancel().chain(setup).start(0);
    }

    return false;
    }


    /*
    API
    */

    Element.implement({
    slimbox: function(_options, linkMapper) {
    // The processing of a single element is similar to the processing of a collection with a single element
    $$(this).slimbox(_options, linkMapper);

    return this;
    }
    });

    Elements.implement({
    /*
    options: Optional options object, see Slimbox.open()
    linkMapper: Optional function taking a link DOM element and an index as arguments and returning an array containing 2 elements:
    the image URL and the image caption (may contain HTML)
    linksFilter: Optional function taking a link DOM element and an index as arguments and returning true if the element is part of
    the image collection that will be shown on click, false if not. "this" refers to the element that was clicked.
    This function must always return true when the DOM element argument is "this".
    */
    slimbox: function(_options, linkMapper, linksFilter) {
    linkMapper = linkMapper || function(el) {
    return [el.href, el.title];
    };

    linksFilter = linksFilter || function() {
    return true;
    };

    var links = this;

    links.removeEvents("click").addEvent("click", function() {
    // Build the list of images that will be displayed
    var filteredLinks = links.filter(linksFilter, this);
    return Slimbox.open(filteredLinks.map(linkMapper), filteredLinks.indexOf(this), _options);
    });

    return links;
    }
    });

    return {
    open: function(_images, startImage, _options) {
    options = $extend({
    loop: false, // Allows to navigate between first and last images
    overlayOpacity: 0.8, // 1 is opaque, 0 is completely transparent (change the color in the CSS file)
    overlayFadeDuration: 400, // Duration of the overlay fade-in and fade-out animations (in milliseconds)
    resizeDuration: 400, // Duration of each of the box resize animations (in milliseconds)
    resizeTransition: false, // false uses the mootools default transition
    initialWidth: 250, // Initial width of the box (in pixels)
    initialHeight: 250, // Initial height of the box (in pixels)
    imageFadeDuration: 400, // Duration of the image fade-in animation (in milliseconds)
    captionAnimationDuration: 400, // Duration of the caption animation (in milliseconds)
    counterText: "Image {x} of {y}", // Translate or change as you wish, or set it to false to disable counter text for image groups
    closeKeys: [27, 88, 67], // Array of keycodes to close Slimbox, default: Esc (27), 'x' (88), 'c' (67)
    previousKeys: [37, 80], // Array of keycodes to navigate to the previous image, default: Left arrow (37), 'p' (80)
    nextKeys: [39, 78] // Array of keycodes to navigate to the next image, default: Right arrow (39), 'n' (78)
    }, _options || {});

    // Setup effects
    fxOverlay = new Fx.Tween(overlay, {property: "opacity", duration: options.overlayFadeDuration});
    fxResize = new Fx.Morph(center, $extend({duration: options.resizeDuration, link: "chain"}, options.resizeTransition ? {transition: options.resizeTransition} : {}));
    fxImage = new Fx.Tween(image, {property: "opacity", duration: options.imageFadeDuration, onComplete: animateCaption});
    fxBottom = new Fx.Tween(bottom, {property: "margin-top", duration: options.captionAnimationDurat ion});

    // The function is called for a single image, with URL and Title as first two arguments
    if (typeof _images == "string") {
    _images = [[_images, startImage]];
    startImage = 0;
    }

    middle = win.getScrollTop() + (win.getHeight() / 2);
    centerWidth = options.initialWidth;
    centerHeight = options.initialHeight;
    center.setStyles({top: Math.max(0, middle - (centerHeight / 2)), width: centerWidth, height: centerHeight, marginLeft: -centerWidth/2, display: ""});
    compatibleOverlay = ie6 || (overlay.currentStyle && (overlay.currentStyle.position != "fixed"));
    if (compatibleOverlay) overlay.style.position = "absolute";
    fxOverlay.set(0).start(options.overlayOpacity);
    position();
    setup(1);

    images = _images;
    options.loop = options.loop && (images.length > 1);
    return changeImage(startImage);
    }
    };

    })();
    Slimbox.scanPage = function() {
    $$(document.links).filter(function(el) {
    return el.rel && el.rel.test(/^lightbox/i);
    }).slimbox({/* Put custom options here */}, null, function(el) {
    return (this == el) || ((this.rel.length > && (this.rel == el.rel));
    });
    };
    window.addEvent("domready", Slimbox.scanPage);
    window.addEvent("load", function() {

    var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
    var s = document.createElement('script');
    s.src = gaJsHost + "google-analytics.com/ga.js";
    s.type = "text/javascript";
    document.getElementsByTagName("head")[0].appendChild(s);

    var i = 0;
    run_ga();

    function run_ga() {
    if (typeof _gat == "object") {
    var pageTracker = _gat._getTracker("UA-443126-1");
    pageTracker._initData();
    pageTracker._trackPageview();
    } else if (i < 20) {
    i++;
    setTimeout(run_ga, 500);
    }
    }
    });

    Report to moderator 69.113.107.95


    gx280
    Casual Gamer


    ROMs On ROMulation!


    Re: Press CTRL+V
    « Reply #492 on: Yesterday at 10:45:21 PM »
    Quote
    who knows how but, Dog Balls
    Report to moderator Logged
    iluvgtavcs
    Next-Gen Gamer


    Gender:
    OBJECTION! I've got ALL the evidence!!!


    Re: Press CTRL+V
    « Reply #493 on: Today at 05:12:50 AM »
    Quote

    RomUlation Community
    *

    * Hello iluvgtavcs
    * Show unread posts since last visit.
    * Show new replies to your posts.
    * January 06, 2010, 10:12:02 AM



    * Home
    * Help
    * Search
    * Profile
    o Summary
    o Account Settings
    o Forum Profile
    * My Messages
    o Read your messages
    o Send a message
    * Logout
    * Return to RomUlation


    * RomUlation Community »
    * General Category »
    * Forum Games, Jokes & Random (Moderators: Anandjones, Moderasian, Cahos Rahne Veloza, Remnoca, TirithRR) »
    * Topic: Press CTRL+V

    « previous next »

    * Reply
    * Notify
    * Mark unread
    * Send this topic
    * Print

    Pages: 1 ... 17 18 19 [20] Go Down
    Author Topic: Press CTRL+V (Read 4315 times)
    Offline nhi_po

    * Professional Gamer
    * ****
    *
    * Gender: Female
    * You stole my heart, and made it your own. ily©
    *
    o MSN Messenger - [email protected]
    o AOL Instant Messenger - [email protected]
    o Yahoo Instant Messenger - [email protected]
    *
    o View Profile
    o Personal Message (Offline)

    Re: Press CTRL+V
    « Reply #475 on: Yesterday at 01:54:53 AM »

    * Quote

    http://www.explorelearning.com/index.cfm?method=cResource.dspView&ResourceID=273&ClassID=633368

    o_O
    that was my hw assignment... why the heck do i have that copied?
    Report to moderator Logged
    Offline ace1o1

    * Professional Gamer
    * ****
    *
    * Gender: Male
    * I don't deal the cards around here.
    *
    o View Profile
    o
    o Email
    o Personal Message (Offline)

    Re: Press CTRL+V
    « Reply #476 on: Yesterday at 02:01:25 AM »

    * Quote

    http://www.4shared.com/file/170199525/368817f2/uloader_v32.html
    Report to moderator Logged
    Offline DrPappyPhD

    * Hopeful
    * *
    *
    * Gender: Male
    * That's funny, this wasn't here before.
    *
    o MSN Messenger - [email protected]
    *
    o View Profile
    o Email
    o Personal Message (Offline)

    Re: Press CTRL+V
    « Reply #477 on: Yesterday at 03:51:16 AM »

    * Quote









    Nothin'.
    Oh Well.
    Report to moderator Logged
    Offline Jonez001

    * Console Gamer
    * **
    *
    * Gender: Male
    * I am a happy Ez-Flash Vi user! Questions:MAIL ME!
    *
    o View Profile
    o http://failblog.org
    o Email
    o Personal Message (Offline)

    Re: Press CTRL+V
    « Reply #478 on: Yesterday at 06:59:52 PM »

    * Quote

    http://vdownloader.com/
    Report to moderator Logged
    Online GhanaChris

    * Console Gamer
    * **
    *
    * Gender: Male
    * What tha' Hell?
    *
    o View Profile
    o Personal Message (Online)

    Re: Press CTRL+V
    « Reply #479 on: Yesterday at 07:35:31 PM »

    * Quote

    http://en.wikipedia.org/wiki/Chrononhotonthologos
    Report to moderator Logged
    Offline Jonez001

    * Console Gamer
    * **
    *
    * Gender: Male
    * I am a happy Ez-Flash Vi user! Questions:MAIL ME!
    *
    o View Profile
    o http://failblog.org
    o Email
    o Personal Message (Offline)

    Re: Press CTRL+V
    « Reply #480 on: Yesterday at 07:57:14 PM »

    * Quote

    (names are private) divorced
    Report to moderator Logged
    Offline ace1o1

    * Professional Gamer
    * ****
    *
    * Gender: Male
    * I don't deal the cards around here.
    *
    o View Profile
    o
    o Email
    o Personal Message (Offline)

    Re: Press CTRL+V
    « Reply #481 on: Yesterday at 07:57:34 PM »

    * Quote

    http://www.4shared.com/file/180509988/f46d486a/heifndid.html
    Report to moderator Logged
    Offline Jonez001

    * Console Gamer
    * **
    *
    * Gender: Male
    * I am a happy Ez-Flash Vi user! Questions:MAIL ME!
    *
    o View Profile
    o http://failblog.org
    o Email
    o Personal Message (Offline)

    Re: Press CTRL+V
    « Reply #482 on: Yesterday at 08:06:41 PM »

    * Quote

    STILL I WANT THE MONEY BACK J**** (name private)
    I AM NOT GOING TO LEND YOU ANYMORE MONEY UNTIL YOU PAYED ME BACK!

    (why I copied this?)
    Report to moderator Logged
    Offline rock91

    * Premium Member
    * ****
    *
    * Gender: Male
    * www.animerockzone.co.cc/forums/ Join ARZ Now ^^
    *
    o MSN Messenger - [email protected]
    o Yahoo Instant Messenger - [email protected]
    *
    o View Profile
    o Anime Rock Zone
    o Email
    o Personal Message (Offline)

    Re: Press CTRL+V
    « Reply #483 on: Yesterday at 08:13:50 PM »

    * Quote

    SUCKAAAAAAAAAA' YOU TRIPPIN'
    Report to moderator Logged
    Offline ybom

    * Hopeful
    * *
    *
    o View Profile
    o Email
    o Personal Message (Offline)

    Re: Press CTRL+V
    « Reply #484 on: Yesterday at 08:45:28 PM »

    * Quote

    Achelous
    Report to moderator Logged
    Offline MLWW

    * Hopeful
    * *
    *
    *
    o View Profile
    o Email
    o Personal Message (Offline)

    Re: Press CTRL+V
    « Reply #485 on: Yesterday at 08:47:06 PM »

    * Quote

    OH GOD NO, ANYTHING BUT THAT!!!!1! *kills self*
    Report to moderator Logged
    Online GhanaChris

    * Console Gamer
    * **
    *
    * Gender: Male
    * What tha' Hell?
    *
    o View Profile
    o Personal Message (Online)

    Re: Press CTRL+V
    « Reply #486 on: Yesterday at 08:57:00 PM »

    * Quote

    http://failbooking.com/wp-content/uploads/2010/01/facebook-fail-osama.png
    Report to moderator Logged
    Offline Suiseiseki

    * Retro Gamer
    * ***
    *
    *
    o View Profile
    o Personal Message (Offline)

    Re: Press CTRL+V
    « Reply #487 on: Yesterday at 10:05:42 PM »

    * Quote

    Has anyone really been far even as decided to use even go want to do look more like?
    Report to moderator Logged
    Offline ace1o1

    * Professional Gamer
    * ****
    *
    * Gender: Male
    * I don't deal the cards around here.
    *
    o View Profile
    o
    o Email
    o Personal Message (Offline)

    Re: Press CTRL+V
    « Reply #488 on: Yesterday at 10:11:55 PM »

    * Quote

    http://www.mozilla.com/en-US/firefox/central/
    Report to moderator Logged
    Offline phscarface

    * Casual Gamer
    * *
    *
    * Gender: Male
    *
    o View Profile
    o Email
    o Personal Message (Offline)

    Re: Press CTRL+V
    « Reply #489 on: Yesterday at 11:14:02 PM »

    * Quote

    http://www.youtube.com/watch?v=0KfSp3bGAus

    Yeah...for those people that don't have an' don't wanna buy a nintendo wii, there's a way to play the newest resident evil: Resident Evil The Dark Side Chronicles on thew emulator dolphin....lol
    Cuz I won't gonna waste any money buyin' another console...
    PC : the universal console.
    Report to moderator Logged
    Offline corprlfish

    * Casual Gamer
    * *
    *
    * Gender: Male
    * im you'r worst nightmare, only, you can't wake up.
    *
    o View Profile
    o Email
    o Personal Message (Offline)

    Re: Press CTRL+V
    « Reply #490 on: Yesterday at 11:57:54 PM »

    * Quote

    meow
    Report to moderator Logged

    Offline gx280

    * Casual Gamer
    * *
    *
    * ROMs On ROMulation!
     
  16. GhanaChris

    GhanaChris Well-Known Member

    Nintendo DS für Dummies / R4-Problem-Thread / Welches Modul? / Welcher Shop? / NDS-Spiele-Problem-Thread
    Dies ist der offizielle R4-Problem-Thread. Hauptsächlich dürfte es um das finden und einrichten der richtigen Firmware gehen, da dies Erfahrungsgemäß das häufigste Problem ist.
    Jedoch versuchen wir hier auch bei anderen Problemen zu helfen.

    Link zum Archiv-Thread dieses Threads, um die Übersicht zu gewährleisten.

    1. Info zum namen "R4"

    Der originale (alte) R4 ist ein gutes Produkt, wenn auch etwas veraltet. Nachdem Nintendo die Hersteller des originalen "R4 Revolution" verklagt hatte, wurden wohl keine (..)
     
  17. corprlfish

    corprlfish Well-Known Member

    Is that german?
     
  18. Jonez001

    Jonez001 Well-Known Member

    Yes it is! Because I study German at school and it is pretty much the same...
     
  19. corprlfish

    corprlfish Well-Known Member

    lolz same ere.
     
  20. Jonez001

    Jonez001 Well-Known Member

    Frog (schoolwork)