Results 1 to 6 of 6

Thread: plz help with scripting

  1. #1
    Join Date
    Aug 2007
    Posts
    42
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default plz help with scripting

    how do i make it type in a box. im trying to make a face book auto logger.
    i have it open the facebook page on desktop. and it clicks it and then it clicks log in spot but dosnt type name please review and tell me how to fix.
    what do i put in hilighted spot on script?
    program FacebookOpener;
    begin
    MoveMouse(183,182);
    ClickMouse(183,182,true);
    ClickMouse(183,182,true);
    Wait(1000)
    Wait(4000)
    MoveMouse(704,189);
    Wait(500)
    [H]******[/H](g.winert@yahoo.com,true)
    end.

  2. #2
    Join Date
    Dec 2007
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I tried playing around with the script a little bit, I'm totally new to all of this but I can at least offer that the line in question should be something like this:

    Writeln('g.winert@yahoo.com')

    You need to add the little quote marks around what you are typing in order to signify that is what you are typing. As for the actual command you need for the script to write in your username, I'm not sure. I tried using "Writeln" but with no success. Hopefully someone with more experience will elaborate further .

  3. #3
    Join Date
    Feb 2007
    Location
    Alberta,Canada
    Posts
    2,358
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by mynigga View Post
    I tried playing around with the script a little bit, I'm totally new to all of this but I can at least offer that the line in question should be something like this:

    Writeln('g.winert@yahoo.com')

    You need to add the little quote marks around what you are typing in order to signify that is what you are typing. As for the actual command you need for the script to write in your username, I'm not sure. I tried using "Writeln" but with no success. Hopefully someone with more experience will elaborate further .
    WriteLn(''); will type something into scar. Not Into runescape, or another box, or w/e...

    You would need to use TypeSend(''); to type into the box. Hope I helped.

    -Blumblebee
    “Ignorance, the root and the stem of every evil.”

  4. #4
    Join Date
    Jul 2007
    Posts
    1,055
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    program FacebookOpener;
    {.include SRL/SRL.scar}
    begin
      OpenWebPage('http://www.facebook.com/');
      MoveMouse(183,182);
      ClickMouse(183,182,true);
      ClickMouse(183,182,true);
      Wait(1000)
      Wait(4000)
      MoveMouse(704,189);
      Wait(500)
      TypeSend('g.winert@yahoo.com');
    end.

    Added - opens facebook.com website
    Added - types in your email
    Needed - click the Login botton

    Good luck, have fun.

  5. #5
    Join Date
    Aug 2007
    Posts
    42
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    how i fix this
    Invalid number of parameters
    its about pasword TypeSend i put in.

  6. #6
    Join Date
    Oct 2008
    Posts
    41
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i had same prob

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. I need scripting help
    By PvH in forum OSR Help
    Replies: 2
    Last Post: 12-07-2007, 12:37 PM
  2. rsc scripting help?
    By owntpls in forum OSR Help
    Replies: 0
    Last Post: 11-23-2007, 11:57 AM
  3. Scripting Help!
    By camdo2 in forum OSR Help
    Replies: 4
    Last Post: 10-25-2007, 06:51 AM

Posting Permissions

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