Seite 3685 von 4757 ErsteErste ... 2685 3185 3585 3635 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3735 3785 4185 4685 ... LetzteLetzte
Zeige Ergebnis 110.521 bis 110.550 von 142705

MD Party Room - Chat

This is a discussion on MD Party Room - Chat within the General Off Topic+ forums, part of the QJ.net Forum Miscellaneous category; I love Finland. They brought us H.I.M....

  
  1. #110521
    QJ Gamer Green
    Points: 43.021, Level: 100
    Level completed: 0%, Points required for next Level: 0
    Overall activity: 0%

    Registriert seit
    Jun 2005
    Ort
    Fascination Street
    Beiträge
    7.215
    Points
    43.021
    Level
    100
    Downloads
    0
    Uploads
    0

    Standard

    I love Finland. They brought us H.I.M.


    [SIZE=2][FONT=Verdana][SIZE=3][U][B]3 YEAR VETERAN[/B][/U][/SIZE][SIZE=3][FONT=Arial Black]
    [/FONT][/SIZE][/FONT][/SIZE]Thanks to the following whose ever made me a sig/av.
    [U][I][FONT=Impact]
    [/FONT][/I][/U]

  2. #110522
    QJ Gamer Silver
    Points: 7.385, Level: 57
    Level completed: 18%, Points required for next Level: 165
    Overall activity: 0%

    Registriert seit
    Sep 2006
    Ort
    Finland
    Beiträge
    752
    Points
    7.385
    Level
    57
    Downloads
    0
    Uploads
    0

    Standard

    Zitat Zitat von Chathurga
    Oh you Finlandians.
    lol. BTW, I need to do some dynamic booter code for the microwave kernel, but I'm so tempted to start working on the fridge... what should I do?
    wheeee =:D

  3. #110523
    QJ Gamer Platinum
    Points: 87.718, Level: 100
    Level completed: 0%, Points required for next Level: 0
    Overall activity: 100,0%
    Awards:
    Activity Award

    Registriert seit
    Jan 2006
    Ort
    stevens bumhole
    Beiträge
    10.308
    Points
    87.718
    Level
    100
    Downloads
    0
    Uploads
    0

    Standard

    Zitat Zitat von MaTiAz
    Heh :) I see you like Nightwish. How do you like the new vocalist? In my opinion Tarja Turunen was better
    PÄRKELEVITU!

  4. #110524
    QJ Gamer Platinum
    Points: 36.593, Level: 100
    Level completed: 0%, Points required for next Level: 0
    Overall activity: 0%

    Registriert seit
    Feb 2006
    Ort
    New Jersey
    Beiträge
    4.185
    Points
    36.593
    Level
    100
    Downloads
    0
    Uploads
    0

    Standard

    Zitat Zitat von madsoul
    PÄRKELEVITU!
    buttseccs, nao?
    [CENTER]Retired QJ Veteran.

    [URL="http://forums.qj.net/f-general-off-topic-8/t-simplythebestpspunk-leaves-qj-134836.html#post1975703"]My farwell to QJ[/URL][/CENTER]

  5. #110525
    QJ Gamer Gold
    Points: 25.219, Level: 95
    Level completed: 87%, Points required for next Level: 131
    Overall activity: 99,5%

    Registriert seit
    Mar 2006
    Ort
    Ireland
    Beiträge
    2.089
    Points
    25.219
    Level
    95
    Downloads
    0
    Uploads
    0

    Standard

    Zitat Zitat von MaTiAz
    lol. BTW, I need to do some dynamic booter code for the microwave kernel, but I'm so tempted to start working on the fridge... what should I do?
    You go onto the fridge and remove the cat that eats out foodz, I'll handle the dynamic booter code for the microwave.

  6. #110526
    Veteran
    Points: 19.082, Level: 87
    Level completed: 47%, Points required for next Level: 268
    Overall activity: 0%

    Registriert seit
    Jul 2006
    Ort
    Location?
    Beiträge
    1.863
    Points
    19.082
    Level
    87
    Downloads
    0
    Uploads
    0

    Standard

    Zitat Zitat von MaTiAz
    Chathurga: Hey, I made some progress with the microwave hacking, I made a simple kernel rewrite - you may be interested in this:

    Spoiler for microwave_kernel.c:
    Code:
    // microwave.h = function definitions, house and microwave structs
    #include <microwave.h>
    
    #define MICROWAVE_KERNEL_TYPE 0x02 // 0x01 = samsung, 0x02 = autodetect
    
    // these differ for samsung microwaves
    #define DOOR_OPENED 1
    #define CONTAINS_UMD 0x1337
    #define UMD_POSITION_END 0xFFFF
    #define UMD_PROJECT_SUCCESS 0
    #define UMD_PROJECT_FAILURE -1
    
    int projectUMDToWall(MICROWAVE* microwave)
    {
        HOUSE* house;
        house = user_GetHouse();
        
        if(microwave->doorOpened == DOOR_OPENED)
        {
            if(microwave->contains == CONTAINS_UMD)
            {
                while(microwave->UMD_POS != UMD_POSITION_END)
                { 
                    projectUMD(microwave->contains, house->wall);
                }
                if(microwave->UMD_POS == UMD_POSITION_END
                    return UMD_PROJECT_SUCCESS;
            }
            else
            {
                userNotify("PLZ GIMMEH AN UMD KTHX", MICROWAVE_REQUEST_UMD);
                return UMD_PROJECT_FAILURE;
            }
        }
    }
    
    int main() // the main function
    {
        USER* user;
        while(user == NULL)
            user = getCurrentUser();
        
        while(1)
        {    
            if(user->active == 1)
            {
                switch(user->functionRequest)
                {
                case MAKE_POPCORN:
                    make(MICROWAVE_PRODUCT_POPCORN, user, user->requests);
                case MAKE_PIZZA:
                    make(MICROWAVE_PRODUCT_PIZZA, user, user->requests);
                default:
                    userNotify("EXCUSE ME WTF R U DOIN", MICROWAVE_ERROR);
                }
            }
        }
        return 0;
    }
    
    
    // this gets called first
    void microwavePowerOn()
    {
        microwaveStartKernel(main, 0x1000);    // we need kernel mode for the kernel to function properly, duh
    }
    ummmmmmmmmmmmm... You forgot KERNEL_FUNCTION_IMPLODE and KERNEL_FUNCTION_SLAY_MANK IND
    This signature has been raped by the rep system

  7. #110527
    QJ Gamer Platinum
    Points: 74.153, Level: 100
    Level completed: 0%, Points required for next Level: 0
    Overall activity: 0%

    Registriert seit
    Aug 2005
    Ort
    Vandenland
    Beiträge
    11.492
    Points
    74.153
    Level
    100
    Downloads
    0
    Uploads
    0

    Standard

    Cookie...
    If you remember me xbl me mfmseth

  8. #110528
    QJ Gamer Silver
    Points: 7.385, Level: 57
    Level completed: 18%, Points required for next Level: 165
    Overall activity: 0%

    Registriert seit
    Sep 2006
    Ort
    Finland
    Beiträge
    752
    Points
    7.385
    Level
    57
    Downloads
    0
    Uploads
    0

    Standard

    madsoul: Uhm, it's PERKELE unless you mistyped it on purpose :)

    Zitat Zitat von TheSilenceOfNoOne
    ummmmmmmmmmmmm... You forgot KERNEL_FUNCTION_IMPLODE and KERNEL_FUNCTION_SLAY_MANK IND
    Nah, I left them away for security reasons... It's much safer to rewrite those functions than use the ones from the old kernel.

    Chathurga: All right, I'll do it tomorrow :)
    wheeee =:D

  9. #110529
    Veteran
    Points: 19.082, Level: 87
    Level completed: 47%, Points required for next Level: 268
    Overall activity: 0%

    Registriert seit
    Jul 2006
    Ort
    Location?
    Beiträge
    1.863
    Points
    19.082
    Level
    87
    Downloads
    0
    Uploads
    0

    Standard

    Zitat Zitat von Politi
    Cookie...
    init Kernel_FUNCTION_SLAY_TEH_ NOOBLET
    }
    end of his life



    j/k, j/k.

    Now teech me that Vanden C-Walk.
    This signature has been raped by the rep system

  10. #110530
    QJ Gamer Platinum
    Points: 36.593, Level: 100
    Level completed: 0%, Points required for next Level: 0
    Overall activity: 0%

    Registriert seit
    Feb 2006
    Ort
    New Jersey
    Beiträge
    4.185
    Points
    36.593
    Level
    100
    Downloads
    0
    Uploads
    0

    Standard

    Zitat Zitat von TheSilenceOfNoOne
    init Kernel_FUNCTION_SLAY_TEH_ NOOBLET
    }
    As you wish *stabs john in back of head with fishing rod*
    [CENTER]Retired QJ Veteran.

    [URL="http://forums.qj.net/f-general-off-topic-8/t-simplythebestpspunk-leaves-qj-134836.html#post1975703"]My farwell to QJ[/URL][/CENTER]

  11. #110531
    QJ Gamer Gold
    Points: 25.219, Level: 95
    Level completed: 87%, Points required for next Level: 131
    Overall activity: 99,5%

    Registriert seit
    Mar 2006
    Ort
    Ireland
    Beiträge
    2.089
    Points
    25.219
    Level
    95
    Downloads
    0
    Uploads
    0

    Standard

    That's it, I'm taking a dump.

  12. #110532
    Phil
    Guest

    Standard

    Zitat Zitat von TheMysteriousThug
    I love Finland. They brought us H.I.M.
    abso****inglutely

  13. #110533
    QJ Gamer Green
    Points: 43.021, Level: 100
    Level completed: 0%, Points required for next Level: 0
    Overall activity: 0%

    Registriert seit
    Jun 2005
    Ort
    Fascination Street
    Beiträge
    7.215
    Points
    43.021
    Level
    100
    Downloads
    0
    Uploads
    0

    Standard

    Chat: Before you do that. Let me get the camera streaming first.

    YAY!!! FIRST CREEPY STALKER JOKE!!!
    [SIZE=2][FONT=Verdana][SIZE=3][U][B]3 YEAR VETERAN[/B][/U][/SIZE][SIZE=3][FONT=Arial Black]
    [/FONT][/SIZE][/FONT][/SIZE]Thanks to the following whose ever made me a sig/av.
    [U][I][FONT=Impact]
    [/FONT][/I][/U]

  14. #110534
    Has a dollar
    Points: 13.812, Level: 76
    Level completed: 41%, Points required for next Level: 238
    Overall activity: 0%

    Registriert seit
    Sep 2005
    Ort
    vaya con huevos ^_^
    Beiträge
    722
    Points
    13.812
    Level
    76
    Downloads
    0
    Uploads
    0

    Standard

    Zitat Zitat von KlicK


    that's a nice *****
    steals Klick's *****........


    p.s. has a dollar
    http://img97.imageshack.us/img97/576...led1lw5if9.png
    Computer games don't affect kids, I mean if pac man affected us as kids, we'd all be running around in darkened rooms, munching pills and listening to repetitive music


    Maintain thy airspeed, lest the ground rise up and smite thee.

  15. #110535
    QJ Gamer Gold
    Points: 25.219, Level: 95
    Level completed: 87%, Points required for next Level: 131
    Overall activity: 99,5%

    Registriert seit
    Mar 2006
    Ort
    Ireland
    Beiträge
    2.089
    Points
    25.219
    Level
    95
    Downloads
    0
    Uploads
    0

    Standard

    Jesus I feel light and empty, it was a monster.
    I think I can actually jump higher now.

  16. #110536
    Wake up the sleepers.
    Points: 53.855, Level: 100
    Level completed: 0%, Points required for next Level: 0
    Overall activity: 0%

    Registriert seit
    Jun 2005
    Ort
    Dayton, Ohio.
    Beiträge
    430
    Points
    53.855
    Level
    100
    Downloads
    0
    Uploads
    0

    Standard

    what does H.I.M. stand for

  17. #110537
    Veteran
    Points: 19.082, Level: 87
    Level completed: 47%, Points required for next Level: 268
    Overall activity: 0%

    Registriert seit
    Jul 2006
    Ort
    Location?
    Beiträge
    1.863
    Points
    19.082
    Level
    87
    Downloads
    0
    Uploads
    0

    Standard

    Zitat Zitat von Nightwish
    As you wish *stabs john in back of head with fishing rod*
    {
    init KERNEL_RESURRECT_TSON
    }
    while true do
    init KERNEL_INSERT_NIGHTWISH
    while true do
    init KERNEL_POWER_ON
    end
    }
    {
    init BUTTSECKS
    while true do KERNEL_FIND_PARTNER
    end
    }
    This signature has been raped by the rep system

  18. #110538
    Phil
    Guest

    Standard

    Zitat Zitat von Noriko
    what does H.I.M. stand for
    His Infernal Majesty

  19. #110539
    Veteran
    Points: 19.082, Level: 87
    Level completed: 47%, Points required for next Level: 268
    Overall activity: 0%

    Registriert seit
    Jul 2006
    Ort
    Location?
    Beiträge
    1.863
    Points
    19.082
    Level
    87
    Downloads
    0
    Uploads
    0

    Standard

    Zitat Zitat von Chathurga
    Jesus I feel light and empty, it was a monster.
    I think I can actually jump higher now.
    Thats disgusting.
    This signature has been raped by the rep system

  20. #110540
    QJ Gamer Green
    Points: 43.021, Level: 100
    Level completed: 0%, Points required for next Level: 0
    Overall activity: 0%

    Registriert seit
    Jun 2005
    Ort
    Fascination Street
    Beiträge
    7.215
    Points
    43.021
    Level
    100
    Downloads
    0
    Uploads
    0

    Standard

    H.I.M. = His Infernal Majesty. But now. They just go under HIM.
    -= Double Post =-
    ****ing Slow Ass Comp..
    [SIZE=2][FONT=Verdana][SIZE=3][U][B]3 YEAR VETERAN[/B][/U][/SIZE][SIZE=3][FONT=Arial Black]
    [/FONT][/SIZE][/FONT][/SIZE]Thanks to the following whose ever made me a sig/av.
    [U][I][FONT=Impact]
    [/FONT][/I][/U]

  21. #110541
    QJ Gamer Gold
    Points: 25.219, Level: 95
    Level completed: 87%, Points required for next Level: 131
    Overall activity: 99,5%

    Registriert seit
    Mar 2006
    Ort
    Ireland
    Beiträge
    2.089
    Points
    25.219
    Level
    95
    Downloads
    0
    Uploads
    0

    Standard

    Zitat Zitat von TheSilenceOfNoOne
    Zitat Zitat von Chathurga
    Jesus I feel light and empty, it was a monster.
    I think I can actually jump higher now.
    Thats disgusting.
    lololololololol

  22. #110542
    No longer a community member.
    Points: 17.849, Level: 84
    Level completed: 99%, Points required for next Level: 1
    Overall activity: 0%

    Registriert seit
    Oct 2005
    Ort
    Waianae
    Beiträge
    1.487
    Points
    17.849
    Level
    84
    Downloads
    0
    Uploads
    0

    Standard

    Whats up *****es?

  23. #110543
    QJ Gamer Green
    Points: 43.021, Level: 100
    Level completed: 0%, Points required for next Level: 0
    Overall activity: 0%

    Registriert seit
    Jun 2005
    Ort
    Fascination Street
    Beiträge
    7.215
    Points
    43.021
    Level
    100
    Downloads
    0
    Uploads
    0

    Standard

    Nuthin' fellow *****. Anything new?
    [SIZE=2][FONT=Verdana][SIZE=3][U][B]3 YEAR VETERAN[/B][/U][/SIZE][SIZE=3][FONT=Arial Black]
    [/FONT][/SIZE][/FONT][/SIZE]Thanks to the following whose ever made me a sig/av.
    [U][I][FONT=Impact]
    [/FONT][/I][/U]

  24. #110544
    QJ Gamer Gold
    Points: 25.219, Level: 95
    Level completed: 87%, Points required for next Level: 131
    Overall activity: 99,5%

    Registriert seit
    Mar 2006
    Ort
    Ireland
    Beiträge
    2.089
    Points
    25.219
    Level
    95
    Downloads
    0
    Uploads
    0

    Standard

    Zitat Zitat von Josey Wales
    Whats up *****es?
    I just released the most furious dump from it's anal prison.

  25. #110545
    Veteran
    Points: 19.082, Level: 87
    Level completed: 47%, Points required for next Level: 268
    Overall activity: 0%

    Registriert seit
    Jul 2006
    Ort
    Location?
    Beiträge
    1.863
    Points
    19.082
    Level
    87
    Downloads
    0
    Uploads
    0

    Standard

    Ahah. Instead of SeanyPs who the f*** R U, Ill say where the f*** have you been... Ingenous.
    -= Double Post =-
    Zitat Zitat von Josey Wales
    Whats up *****es?
    Where the **** have you been?
    This signature has been raped by the rep system

  26. #110546
    QJ Gamer Gold
    Points: 25.219, Level: 95
    Level completed: 87%, Points required for next Level: 131
    Overall activity: 99,5%

    Registriert seit
    Mar 2006
    Ort
    Ireland
    Beiträge
    2.089
    Points
    25.219
    Level
    95
    Downloads
    0
    Uploads
    0

    Standard

    Zitat Zitat von TheSilenceOfNoOne
    Ahah. Instead of SeanyPs who the f*** R U, Ill say where the f*** have you been... Ingenous.
    -= Double Post =-


    Where the **** have you been?
    SeanyP's??? um Gman's.

  27. #110547
    No longer a community member.
    Points: 17.849, Level: 84
    Level completed: 99%, Points required for next Level: 1
    Overall activity: 0%

    Registriert seit
    Oct 2005
    Ort
    Waianae
    Beiträge
    1.487
    Points
    17.849
    Level
    84
    Downloads
    0
    Uploads
    0

    Standard

    Zitat Zitat von TheSilenceOfNoOne
    Where the **** have you been?
    Work.

    lol job.

  28. #110548
    QJ Gamer Green
    Points: 43.021, Level: 100
    Level completed: 0%, Points required for next Level: 0
    Overall activity: 0%

    Registriert seit
    Jun 2005
    Ort
    Fascination Street
    Beiträge
    7.215
    Points
    43.021
    Level
    100
    Downloads
    0
    Uploads
    0

    Standard

    Yeah. It's Gman's phrase.
    [SIZE=2][FONT=Verdana][SIZE=3][U][B]3 YEAR VETERAN[/B][/U][/SIZE][SIZE=3][FONT=Arial Black]
    [/FONT][/SIZE][/FONT][/SIZE]Thanks to the following whose ever made me a sig/av.
    [U][I][FONT=Impact]
    [/FONT][/I][/U]

  29. #110549
    Veteran
    Points: 19.082, Level: 87
    Level completed: 47%, Points required for next Level: 268
    Overall activity: 0%

    Registriert seit
    Jul 2006
    Ort
    Location?
    Beiträge
    1.863
    Points
    19.082
    Level
    87
    Downloads
    0
    Uploads
    0

    Standard

    Muh bad.

    Anyway...

    My microwave just literally became a MICROwave... :/
    This signature has been raped by the rep system

  30. #110550
    QJ Gamer Green
    Points: 43.021, Level: 100
    Level completed: 0%, Points required for next Level: 0
    Overall activity: 0%

    Registriert seit
    Jun 2005
    Ort
    Fascination Street
    Beiträge
    7.215
    Points
    43.021
    Level
    100
    Downloads
    0
    Uploads
    0

    Standard

    Oooh. Did it explode into little pieces?
    [SIZE=2][FONT=Verdana][SIZE=3][U][B]3 YEAR VETERAN[/B][/U][/SIZE][SIZE=3][FONT=Arial Black]
    [/FONT][/SIZE][/FONT][/SIZE]Thanks to the following whose ever made me a sig/av.
    [U][I][FONT=Impact]
    [/FONT][/I][/U]


 

Tags for this Thread

Forumregeln

  • Es ist Ihnen nicht erlaubt, neue Themen zu verfassen.
  • Es ist Ihnen nicht erlaubt, auf Beiträge zu antworten.
  • Es ist Ihnen nicht erlaubt, Anhänge hochzuladen.
  • Es ist Ihnen nicht erlaubt, Ihre Beiträge zu bearbeiten.
  •  





Alle Zeitangaben in WEZ -8. Es ist jetzt 08:40 PM Uhr.

Use of this Web site constitutes acceptance of the TERMS & CONDITIONS and PRIVACY POLICY
Copyright © , Caputo Media, LLC. All Rights Reserved. Cluster .