Page 2 of 2 FirstFirst 12
Results 26 to 40 of 40

Thread: Login Spam > Recoveries

  1. #26
    Join Date
    Oct 2008
    Location
    C:\Simba\Includes\
    Posts
    7,566
    Mentioned
    19 Post(s)
    Quoted
    180 Post(s)

    Default

    I believe so, but it only happened once for me. It hasn't happened to me, personally, since Coh3n pushed the fix.
    Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
    { MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }

    When posting a bug, please post debug! Help us, help you!

    I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
    If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.


    SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.


  2. #27
    Join Date
    Oct 2007
    Location
    #srl
    Posts
    6,102
    Mentioned
    39 Post(s)
    Quoted
    62 Post(s)

    Default

    Quote Originally Posted by smurg View Post
    Because as seen in the thread, people have still been having issues with it.
    No one > Registered User though, and I can't even begin to say how many "MSI Bugs" actually don't exist. Simple registered users not knowing what they're doing and blaming someone else's code.

    I'm not saying that's what you're doing, but I do remember this bug before Coh3n fixed it and it occurred quite often (couple times a week for most). However, I haven't heard of it since, nor have I had any problems, and I just tested the Login procedure quite extensively when adding support for the unregistered email screen the other day.

  3. #28
    Join Date
    May 2012
    Posts
    18
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default recoveries

    this happens every 5-6 hours for me

  4. #29
    Join Date
    Oct 2010
    Posts
    1,255
    Mentioned
    0 Post(s)
    Quoted
    15 Post(s)

    Default

    Happened again.

    Welcome to Runescape.

    Than spam click recoveries.
    I'm back

  5. #30
    Join Date
    Oct 2008
    Location
    C:\Simba\Includes\
    Posts
    7,566
    Mentioned
    19 Post(s)
    Quoted
    180 Post(s)

    Default

    I can't reproduce this, at all. Could you add some WriteLn's to the Login method and post what it's doing?
    Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
    { MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }

    When posting a bug, please post debug! Help us, help you!

    I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
    If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.


    SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.


  6. #31
    Join Date
    Oct 2011
    Location
    Chicago
    Posts
    3,352
    Mentioned
    21 Post(s)
    Quoted
    437 Post(s)

    Default

    I experienced this multiple times but I realized I just poorely scripted my script missed a few checks.




    Anti-Leech Movement Prevent Leeching Spread the word
    Insanity 60 Days (Killer workout)
    XoL Blog (Workouts/RS/Misc)

  7. #32
    Join Date
    Oct 2010
    Posts
    1,255
    Mentioned
    0 Post(s)
    Quoted
    15 Post(s)

    Default

    Well it happens in the loggedin function for me. I'll try to debug it.

    I find it usually happens on a disconnect.
    I'm back

  8. #33
    Join Date
    Mar 2007
    Posts
    5,125
    Mentioned
    275 Post(s)
    Quoted
    901 Post(s)

    Default

    This issue is still yet to happen to me

    Forum account issues? Please send me a PM

  9. #34
    Join Date
    Dec 2009
    Location
    R_GetPlayerLoc;
    Posts
    2,235
    Mentioned
    0 Post(s)
    Quoted
    14 Post(s)

    Default

    I am working on fixing this, or at least finding the cause. I'll report back in a few....

    Edit1: Ok, the line that opens up the recovery question tab in the lobby is in the function loginplayertolobby

    edit2: Has to do with this piece of code:

    Simba Code:
    if (not pointInBox(p, intToBox(Boxes[0], Boxes[1], Boxes[2], Boxes[3]))) then
        p := point(UBX2 - (10 + random(10)), p.y);
      Mouse(p.x, p.y, 5, 5, mouse_left);
    end else
      MouseBox(Boxes[0], Boxes[1], Boxes[2], Boxes[3], mouse_left);

    Edit3: On my test character, if I open up the email tab (yes I am registered to an email) it spams click to recovery. And the call to click is done by the first Mouse procedure in the snipplet of code above.

    Edit4: What I've noticed is that I get the one minute has passed message, then if my email tab is open, the script decides to spam click.

    My guess is that it thinks I'm logged out and decides to type in the username again or erase the username again...

    Edit5: Yup, it reports that I am not loggedin (loggedin = false) and lobbyscreen reports false

    I'm done my psychoanalysis for the day. I'll leave you behavior-moders to works backwords and do your thing.

    And my graphics settigns are correct.

    Edit6: Turns out im not done. I just want to report that getlobbytab reports -1......

    Edit: noone interested?

    Edit: I can recreate
    Last edited by Yago; 09-30-2012 at 09:17 PM.
    "Logic never changes, just the syntax" - Kyle Undefined?

    Remember, The Edit Button Is There For A Reason!!!

  10. #35
    Join Date
    Mar 2007
    Posts
    5,125
    Mentioned
    275 Post(s)
    Quoted
    901 Post(s)

    Default

    Thread should be reviewed once again with the information Yago has posted.

    Forum account issues? Please send me a PM

  11. #36
    Join Date
    Mar 2007
    Posts
    5,125
    Mentioned
    275 Post(s)
    Quoted
    901 Post(s)

    Default

    Double post I know but I have some more information on this.

    While running one of my scripts, it tried to log in my character, Somewhere in login.simba or whatever (where it switches to the 'World' tab) failed. It was on the Main screen and was giving me a false-positive over this

    Simba Code:
    777: Actions := ['Login limit exceeded.',             20000,   10,    '',              'Waiting for login.'];
    ^^ found in login.simba
    I think the detection method might need a revamp.

    Forum account issues? Please send me a PM

  12. #37
    Join Date
    Aug 2007
    Location
    England
    Posts
    1,038
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Quote Originally Posted by [J]ustin View Post
    Double post I know but I have some more information on this.

    While running one of my scripts, it tried to log in my character, Somewhere in login.simba or whatever (where it switches to the 'World' tab) failed. It was on the Main screen and was giving me a false-positive over this

    Simba Code:
    777: Actions := ['Login limit exceeded.',             20000,   10,    '',              'Waiting for login.'];
    ^^ found in login.simba
    I think the detection method might need a revamp.
    You are on about logging in a second player in right ? And the second script will try and log in the second char to the same world as the first char in the first script ? I have had no problems with this. If I try and do that it goes back to world select and selects a new world and logs in. I've not had it fail on me yet but I have only done that like 3 or 4 times in the past few months.
    Today is the first day of the rest of your life

  13. #38
    Join Date
    Mar 2007
    Posts
    5,125
    Mentioned
    275 Post(s)
    Quoted
    901 Post(s)

    Default

    Quote Originally Posted by Jakkle View Post
    You are on about logging in a second player in right ? And the second script will try and log in the second char to the same world as the first char in the first script ? I have had no problems with this. If I try and do that it goes back to world select and selects a new world and logs in. I've not had it fail on me yet but I have only done that like 3 or 4 times in the past few months.
    Yeah, logging into the same world, I think I figured it out, I have changed a wait value from 100 + random(50) to 800 + random(50) (the wait after you hit 'enter' on the password box) for it to start counting colours for the login error(s). I will give it more testing today and if that is a fix, I sill submit a pull request.

    Forum account issues? Please send me a PM

  14. #39
    Join Date
    Jan 2008
    Location
    Australia
    Posts
    124
    Mentioned
    1 Post(s)
    Quoted
    18 Post(s)

    Default

    I've had it happen several times, and every single time I was babysitting. It would open up the lobby, and try to select a world, but the world select tab would not open, then it would click where the worlds should be and that is a link to set recoveries.

    Funny thing is, as soon as I disable smart, it would jump straight to the select worlds tab. I think it maybe a smart 7.2 error.

  15. #40
    Join Date
    Mar 2007
    Posts
    5,125
    Mentioned
    275 Post(s)
    Quoted
    901 Post(s)

    Default

    Quote Originally Posted by Ivo09 View Post
    I've had it happen several times, and every single time I was babysitting. It would open up the lobby, and try to select a world, but the world select tab would not open, then it would click where the worlds should be and that is a link to set recoveries.

    Funny thing is, as soon as I disable smart, it would jump straight to the select worlds tab. I think it maybe a smart 7.2 error.
    When you disable SMART, it replicates an alt+tab to regain focus to the rsclient. That is why it switches to the world tab

    Edit: https://github.com/SRL/SRL-5/pull/83/files
    Last edited by Justin; 10-01-2012 at 11:31 AM.

    Forum account issues? Please send me a PM

Page 2 of 2 FirstFirst 12

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
  •