Results 1 to 9 of 9

Thread: Test your friends' patience

  1. #1

    Test your friends' patience

    This is a little thing I done a while ago to pull a fast one on a friend of mine.

    The basic idea is to develop a game where the player's goal is to catch something with the mouse by clicking on it. Now heres the trick to the story... Once the player has the mouse over the sprite, it changes position... making it virtually impossible to catch. However if you do this, make sure there is a way to quit the game.

    Like a said, I made this little gift for a friend of mine and man oh man was she pissed 

    What I used to make it:
    - Delphi 6
    - JEDI-SDL for graphics and interface
    - BASS for the music...

    And I made it in less than an hour...
    If you REALLY want to check this out - It's called the Amazing Game (It needed a name) and you can get it at http://www.pjpdev.co.za/amazingsetup.exe

    I'll upload the sources some time soon...

    P.S. For the people who don't read text in games, etc PRESS ESC TO GET OUT!!!

  2. #2

    Re: Test your friends' patience

    Ha ha Take it a step furter...make it change the process priority to realtime, hide it fom task manager and remove the exit Btw changing priority to realtime makes the app eat up all the system resources...only works on pc's with single processor...for dual processors you need to dive into threads

    I've wriiten two 'malware' apps, the one opens windows command prompt and executes on an infinite loop thus eating all the memory and forcing you to shut down by pressing the power button The other reboots the system when executed...causing you to loose unsaved dataand forcing any open apps to close
    Wake up from the dream and live your life to the full

  3. #3

    Re: Test your friends' patience

    When I was in school we used to netsend each other, one guy did it a few times to me then I decided to make a *.bat file filled with nedsend commands. That was quite funny.

  4. #4

    Re: Test your friends' patience

    The health program at work does just that when claiming you need to take a break. Most anoying as it cannot be turned off.
    http://3das.noeska.com - create adventure games without programming

  5. #5

    Re: Test your friends' patience

    If you really want to annoy people, change your program so that on startup it takes the background image that is on the victims desktop and copy the location of the icons. Now when the user is taking a small brake, start your program and run it maximized so that he wont notice the difference. Then watch your victim go crazy when he/she hovers over the icons and see them switch position

  6. #6

    Re: Test your friends' patience

    Or you could simply do this:

    Put shellApi in your uses clause and then in button or form event handler the following:

    [pascal]
    procedure TForm1.Button1Click(Sender: TObject);
    var i : integer;
    begin
    for i := 1 to 10 do
    ShellExecute(Handle, 'open', 'c:\Windows\notepad.exe', nil, nil, SW_SHOWNORMAL) ;
    end;
    [/pascal]

    Change 10 to 100 or to 1000000 and see what happens
    Wake up from the dream and live your life to the full

  7. #7

    Re: Test your friends' patience

    That'll totally annoy the crap out of someone.

    Button - "Play XXX Queens"
    Result - A 1000 notepad instances open up, and

    A messagebox saying "Now, use your imagination pervert !"
    --- Classic

  8. #8

    Re: Test your friends' patience

    That's exactly how a virus spreads...with the 'promise of nudity & s.x' Also with the promise of hacked serial keys...

    The 'nice' thing about my implimentation is that it totally eats up ALL your system resources
    Wake up from the dream and live your life to the full

  9. #9

    Re: Test your friends' patience

    Learnt my lesson with the serials, shows ya... Piracy is bad!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •