Results 1 to 16 of 16

Thread: Need some help..

  1. #1
    Join Date
    Feb 2012
    Posts
    66
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Need some help..

    I just wrote a script, It has some bugs that I cannot figure out how to fix right now, If anybody would like to help me fix it up I'd really appreciate it, so far as I know no one on here has released on publicly and it makes around 500k an hour with no reqs. If your not a leech. but a member or higher I'd really like some help/ review for my script and some help improving it. Pm me or post if your willing to help a noob out ;P

  2. #2
    Join Date
    Jan 2012
    Location
    Calgary, AB, Canada
    Posts
    1,819
    Mentioned
    5 Post(s)
    Quoted
    120 Post(s)

    Default

    I could help, if you let me of course I'll try to do my best
    Current Project: Retired

  3. #3
    Join Date
    Mar 2012
    Location
    Canada
    Posts
    870
    Mentioned
    1 Post(s)
    Quoted
    5 Post(s)

    Default

    You could always partialy show what's not working and not post the whole thing.
    My scripts:
    Advanced Barb Agility Course(outdated), MonkeyThieverV0.11, MahoganyTableV0.4(outdated)
    Questions? I bet that for 98% of those, you'll find answer HERE

  4. #4
    Join Date
    Feb 2012
    Posts
    66
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Gucci View Post
    I could help, if you let me of course I'll try to do my best
    Id love to let you help(: Pming you a copy of the script now, just going to say, my standards are probably not good :P

  5. #5
    Join Date
    Dec 2011
    Location
    Kosovo
    Posts
    831
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    I can give you a hand too. If u trust me ofc
    Goals:
    Understanding TPAs
    Making Proggy for fighting
    Getting on SRL members
    Get 500 posts

  6. #6
    Join Date
    Feb 2012
    Posts
    66
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by begginer View Post
    I can give you a hand too. If u trust me ofc
    Ill pm you a copy.

  7. #7
    Join Date
    Dec 2011
    Location
    Kosovo
    Posts
    831
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Quote Originally Posted by bigbutts5 View Post
    Ill pm you a copy.
    still waiting for it
    Goals:
    Understanding TPAs
    Making Proggy for fighting
    Getting on SRL members
    Get 500 posts

  8. #8
    Join Date
    Feb 2012
    Posts
    66
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by begginer View Post
    still waiting for it
    Been busy since I posted that, pming now.

  9. #9
    Join Date
    Dec 2011
    Location
    Berlin
    Posts
    795
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    What exactly is your problem? Compiling error?

    I will try to answer all Runescape related questions!

  10. #10
    Join Date
    Oct 2011
    Location
    Australia, Vic
    Posts
    1,517
    Mentioned
    2 Post(s)
    Quoted
    120 Post(s)

    Default

    Do you mind if i take a look for you?

  11. #11
    Join Date
    Nov 2007
    Location
    46696E6C616E64
    Posts
    3,069
    Mentioned
    44 Post(s)
    Quoted
    302 Post(s)

    Default

    Instead of hiding your script, paste it to the thread. Just the part that is causing trouble or the whole script. In my opinion you should only paste the part that is causing trouble, and when asked, the whole script.
    There used to be something meaningful here.

  12. #12
    Join Date
    Feb 2012
    Posts
    66
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Frement View Post
    Instead of hiding your script, paste it to the thread. Just the part that is causing trouble or the whole script. In my opinion you should only paste the part that is causing trouble, and when asked, the whole script.
    Ive already pm'ed a few people and they are more than willing to help, at this point Im looking for testers more than help, its a fully working script, however I rather not release my private money maker and have it leeched to hell, Its not a problem with a part of the script, but with the script as a whole. It compiles as i've written and ran it, need some help getting it to run past more than 3 trips, I wanted to know others who got this bug and what they thought. It will run, just wanted input, if you would like to help ill gladly pm you, but for everybody who has said and will say just post it, no as I do not want everybody to have it.

  13. #13
    Join Date
    Feb 2012
    Location
    Somewhere, over the rainbow...
    Posts
    2,272
    Mentioned
    3 Post(s)
    Quoted
    45 Post(s)

    Default

    As far as I'm concerned, you've sent the script to mainly to users who are > SRL Members


    But meh, doesn't mean they're not good at scripting

  14. #14
    Join Date
    Feb 2012
    Location
    DON'T PM ME ASKING FOR STUFF
    Posts
    2,170
    Mentioned
    38 Post(s)
    Quoted
    423 Post(s)

    Default

    I'm more than willing to look, got a few scripts to back my name if no one replies I'm onlin e NOW

  15. #15
    Join Date
    Mar 2012
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Could someone help me debug this script?
    i gt an error: Error: Out of Proc Range at line 404



    program MagicBot;
    {$DEFINE SMART} { Minor bug fixes }
    {$DEFINE SRL5} { }
    {$i SRL/srl.simba}

    const
    LoadCount = 4883 ;

    var
    count, Magic_XP, Mxph: integer;

    procedure DeclarePlayers;

    begin

    HowManyPlayers := 1;
    NumberOfPlayers(HowManyPlayers);
    CurrentPlayer := 0;

    with Players[0] do
    begin

    Name := 'royal_pop@hotmail.com';
    Pass := '83732433a';
    Nick := '' // three lowercase letters in the middle of your name
    BoxRewards := ['amp'];
    LampSkill := SKILL_SUMMONING;
    Pin := '';
    Active := True;
    end;
    end;

    procedure Run;

    begin

    Smart_Members := False;
    Smart_Server := 0;
    Smart_Signed := True;
    Smart_SuperDetail := False;
    SetupSRL;
    MouseSpeed:= 15;
    DeclarePlayers;
    LoginPlayer;

    Count:=0;
    Wait(500+Random(200));


    end;

    Procedure MagicTab;

    begin

    Gametab(tab_magic);

    end;

    Procedure MagicBot;


    begin
    if not(GetCurrentTab = tab_Magic) then
    MouseBox(735,171,758,200,1);//Clicks magic tab
    sleep(500+random(150));
    MouseBox(250,195,260,120,1);//Clicks spell
    sleep(2500+random(150));
    end;


    Procedure Proggy;

    var
    mxph: integer;

    begin

    Mxph := round((Magic_xp) / (GetTimeRunning / 3600000.0));

    WriteLn('=-=-=-=-=-=-=-= Magic Bot =-=-=-=-=-=-=');
    WriteLn('Time Running: '+TimeRunning);
    WriteLn('Magic XP Gained: ' +IntToStr(count*29));
    WriteLn('=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-');

    end;




    begin

    { Run;
    begin

    SetAngle(SRL_ANGLE_HIGH);
    }
    repeat
    Proggy;
    MagicBot;
    inc(count);
    until (count=loadcount) or (not LoggedIn);
    Writeln('Task completed!');

    end.

  16. #16
    Join Date
    Feb 2012
    Posts
    66
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by abu_jwka View Post
    As far as I'm concerned, you've sent the script to mainly to users who are > SRL Members


    But meh, doesn't mean they're not good at scripting
    they have scripts that are publicly released so :P plus gucci was the most helpful. We have fixed my entire script(: also, can anybody explain how to tell when an item has been added to the inventory? like if you click something then it tells if it was added then if it was added it proceeds? this is what I have so far.
    Simba Code:
    If not InvFull then
    InvCount;
    if FindObjEx(cx, cy, ['XXXX', 'XXXX'], [findmystuffs], 5, 50,7,13,514,332) then
    wait(250+random(50));
    Mouse(cx, cy, 3, 3, True);
    wait(250+random(50));
    if (InvCount = +1) then // this is where i need help
    repeat
    Mouse(cx, cy, 3, 3, True);
    Mouse(cx, cy, 3, 3, True);
    Mouse(cx, cy, 3, 3, True);
    Mouse(cx, cy, 3, 3, True);

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
  •