Results 1 to 11 of 11

Thread: Help :(

  1. #1
    Join Date
    Jul 2007
    Posts
    80
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Help :(

    SCAR Code:
    program DancingPro;
    const
    Write='Dance with me!! :)';//Type what you'd like to autotype.
    var
    x:Integer;
    y:Integer;
    begin
    repeat
    SendKeysWait(Write,100, 100);
     Wait(1000+random(300))
    until
    False
    end
    begin
    repeat
    Wait(100+random(100))
    MoveMouseSmooth(575+random(10), 374-random(10));
     GetMousePos(x,y);
      ClickMouse(x,y,True)
    until
    False
    end.

    I get this error
    Line 13: [Error] (13:4): period ('.') expected in script C:\Desktop\AutoDancer_v1.scar
    Can someone help?

  2. #2
    Join Date
    Jun 2006
    Location
    USA
    Posts
    1,828
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Dunno what you mean all that mouse stuff but maybe this is better?
    SCAR Code:
    program DancingPro;
    {.include srl/SRL.scar}

    const
      Write='Dance with me!! :)';//Type what you'd like to autotype.

    begin
      repeat
      TypeSend(Write);
      Wait(1000+random(300))
      Mouse(575,374,10,10,True);
      until False
    end.
    I added SRL include and some functions from SRL (=humanlike=not easily ban=cool=...).

  3. #3
    Join Date
    Jul 2007
    Posts
    80
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  4. #4
    Join Date
    Jun 2006
    Location
    USA
    Posts
    1,828
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Ownt? View Post
    Lol thanks :P hardly MY script now though :P
    It is. I just fixed it a bit, right?

  5. #5
    Join Date
    Jul 2007
    Posts
    80
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  6. #6
    Join Date
    Jan 2007
    Location
    Not here
    Posts
    1,604
    Mentioned
    2 Post(s)
    Quoted
    19 Post(s)

    Default

    program DancingPro;
    const
    Write='Dance with me!! ';//Type what you'd like to autotype.
    var
    x:Integer;
    y:Integer;
    begin
    begin //added this
    repeat
    SendKeysWait(Write,100, 100);
    Wait(1000+random(300))
    until
    False
    end //u forgot a ; after end
    repeat
    Wait(100+random(100))
    MoveMouseSmooth(575+random(10), 374-random(10));
    GetMousePos(x,y);
    ClickMouse(x,y,True)
    until
    False
    end.
    Did that just by taking a quick glance not sure if the rest will work
    Sleeping...

  7. #7
    Join Date
    Jul 2007
    Posts
    80
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  8. #8
    Join Date
    May 2007
    Location
    baltimore, md
    Posts
    836
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    SCAR Code:
    program DancingPro;
    {.include srl/SRL.scar}
     
    const
      Write='Dance with me!! :)';//Type what you'd like to autotype.
     
    begin
      repeat
      TypeSend(Write);
      Wait(1000+random(300))
      Mouse(575,374,10,10,True);
      until False
    end.

    pentti you N00B you forgot setupsrl. lol jp but you did forget setupsrl;

    SCAR Code:
    program DancingPro;
    {.include srl/SRL.scar}
     
    const
      Write='Dance with me!! :)';//Type what you'd like to autotype.
     
    begin
      setupsrl;
      repeat
      TypeSend(Write);
      Wait(1000+random(300))
      Mouse(575,374,10,10,True);
      until False
    end.
    there you go.

  9. #9
    Join Date
    Jun 2006
    Location
    USA
    Posts
    1,828
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    rkroxpunk, you sure know thats pretty detectable? You do it only if you want to get your account banned... fast.

    jhildy, you dont need SetUpSRL; there, not actually for any autotalker.
    Takes jsut extra time to load script, nothing else...

    pentti you N00B
    Haha!
    I have to agree with that

  10. #10
    Join Date
    Nov 2006
    Location
    NSW, Australia
    Posts
    3,487
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Pentti You Noob should be made the name of a stickied thread
    [CENTER][img]http://signatures.mylivesignature.com/54486/113/4539C8FAAF3EAB109A3CC1811EF0941B.png[/img][/CENTER]
    [CENTER][BANANA]TSN ~ Vacation! ~ says :I Love Santy[/BANANA][/CENTER]

    [CENTER][BANANA]Raymond - Oh rilie? says :Your smart[/BANANA][/CENTER]

  11. #11
    Join Date
    May 2007
    Location
    baltimore, md
    Posts
    836
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    [offtopic]Sounds like a plan santa[offtopic]

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
  •