Results 1 to 7 of 7

Thread: chr(13) is shift and enter?

  1. #1
    Join Date
    Mar 2009
    Location
    Illinois
    Posts
    292
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default chr(13) is shift and enter?

    SCAR Code:
    repeat
       sendkeys('ohai der');
       wait(500);
       sendkeys(chr(13));
       wait(timeinbetween);
       i := i + 1;
       sendkeys(inttostr(i));
    until(i >= howmanytimes)
    output:
    SCAR Code:
    !ohai der
     @ohai der
    #ohai der
     %ohai der
     ^ohai der
     &ohai der
     *ohai der
     (ohai der
     !)ohai der
     !!ohai der
     !@ohai der
    !#ohai der
     !$ohai der
     !%ohai der
     !^ohai der
    Bri !&ohai der
    Bri !*ohai der
    Bri !(ohai der
    Bri @)ohai der
    Bri @!ohai der
    Bri@@ohai der
    Bri @#ohai der
    Bri @$ohai der
    Br @%ohai der
    Bri @^ohai der
    Bria @&ohai der
     @*ohai der
    Bria @(ohai der
    Bria #)ohai der
    Brian  #!ohai der
     #@ohai der
     ##ohai der
     #$ohai der
     #%ohai der
     #^ohai der
     #&ohai der
     #*ohai der
     #(ohai der
     $)ohai der
     $!ohai der
     $@ohai der
     $#ohai der
     $$ohai der

    lol got lasy in deleting my name

  2. #2
    Join Date
    Jan 2007
    Posts
    834
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Chr(13) is enter.
    http://www.moparisthebest.com/smf/in...ic,2894.0.html

    Edit: And use type send instead of send keys. Send keys is more bannable. Try using...
    SCAR Code:
    TypeSend(AddMistakes('test',20));//20 is the tolerance of mistakes, higher for less, lower for more
    Last edited by Mr. Doctor; 09-08-2009 at 01:28 AM.

  3. #3
    Join Date
    Jan 2007
    Posts
    8,876
    Mentioned
    123 Post(s)
    Quoted
    327 Post(s)

    Default

    Quote Originally Posted by Junkj View Post
    Chr(13) is enter.
    http://www.moparisthebest.com/smf/in...ic,2894.0.html

    Edit: And use type send instead of send keys. Send keys is more bannable. Try using...
    I think his point was that chr(13) might output shift sometimes, like the thread title says..

  4. #4
    Join Date
    Jan 2007
    Posts
    834
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Zyt3x View Post
    I think his point was that chr(13) might output shift sometimes, like the thread title says..
    Oh, then i have no idea.

  5. #5
    Join Date
    Feb 2006
    Location
    Belgium
    Posts
    3,137
    Mentioned
    3 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by Junkj View Post
    Chr(13) is enter.
    http://www.moparisthebest.com/smf/in...ic,2894.0.html

    Edit: And use type send instead of send keys. Send keys is more bannable. Try using...
    SCAR Code:
    TypeSend(AddMistakes('test',20));//20 is the tolerance of mistakes, higher for less, lower for more
    TypeKeys in SCAR 3.21+ is just as safe as TypeSend and supports way more characters...

    I must say I don't get this topic either...

  6. #6
    Join Date
    Feb 2007
    Location
    Access Violation at 0x00000000
    Posts
    2,865
    Mentioned
    3 Post(s)
    Quoted
    18 Post(s)

    Default

    I've had that in SCAR 3.21, using SendKeys for example "SendKeys('01234'+Chr(13));" would produce ")!@#$".
    Just use a lower version of SCAR for it :\ It's some bug I think.
    Ce ne sont que des gueux


  7. #7
    Join Date
    Feb 2006
    Location
    Belgium
    Posts
    3,137
    Mentioned
    3 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by Floor66 View Post
    I've had that in SCAR 3.21, using SendKeys for example "SendKeys('01234'+Chr(13));" would produce ")!@#$".
    Just use a lower version of SCAR for it :\ It's some bug I think.
    Already fixed in 3.22 Beta

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
  •