Results 1 to 7 of 7

Thread: Help!!!!!!1111

  1. #1
    Join Date
    Jul 2007
    Location
    Ottawa, Canada
    Posts
    930
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Help!!!!!!1111

    ok i have a serious question. Why wont this work?

    SCAR Code:
    Program EvilMcBurgerDeath

    vars InFight := Integer;

    const TimeRunning : Integer;

    / Main loop, by metagen!!

    begin;
    if writeln('Burgers must die!!'); then
    begin
      MoveMouse(294):
    end.
    ~ Metagen

  2. #2
    Join Date
    Oct 2007
    Location
    The deep web
    Posts
    2,496
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    whats it ment to do?
    Did someone say GDK?

  3. #3
    Join Date
    Jul 2007
    Location
    Norway.
    Posts
    1,938
    Mentioned
    3 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    Program EvilMcBurgerDeath;
    var
      InFight: Integer;
     
    const
      TimeRunning = 0;
     
    begin
      writeln('Burgers must die!!');
      MoveMouse(294, 0);
    end.


    I'm not sure if this is a joke though..

  4. #4
    Join Date
    Jul 2007
    Location
    Ottawa, Canada
    Posts
    930
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    That's the real question isn't it?
    ~ Metagen

  5. #5
    Join Date
    May 2007
    Location
    Ohio
    Posts
    2,296
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Well...

    SCAR Code:
    Program EvilMcBurgerDeath
     
    var
      InFight: Integer;
     
    const
      TimeRunning = 0;
     
    begin
      writeln('Burgers must die!!');
      MoveMouse(294, 0):
    end.

    vars is var... consts cant be :, thats vars try TimerRunning = 0;
    writeln isn't a boolean
    and you forgot a end;... Move mouse has two 'fill ins' not one...

  6. #6
    Join Date
    Jul 2007
    Location
    Ottawa, Canada
    Posts
    930
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i am amused
    ~ Metagen

  7. #7
    Join Date
    Jul 2007
    Location
    Ottawa, Canada
    Posts
    930
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Cheers!!
    SCAR Code:
    Program EvilMcBurgerDeath // needs semicolon
     
    vars InFight := Integer; // should be 'var' and should not have = // oh yea and duplicate identifier
     
    const TimeRunning : Integer; // must not have a type, must have a value
     
    / Main loop, by metagen!! // needs another /
     
    begin; // remove semicolon
    if writeln('Burgers must die!!'); then // procedure not function, should not have semicolon
    begin // missing matchign end
      MoveMouse(294): // needs 2 more parameters and semicolon,r emove :
    end.

    YAY!!! im smart!!!
    SCAR Code:
    // remove double post
     // remove spam :D
     // only 30 minutes of work left to kill...
    ~ Metagen

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

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