Results 1 to 9 of 9

Thread: small problem. Need help.

  1. #1
    Join Date
    Jun 2007
    Location
    Alaska
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default small problem. Need help.

    Hola! Well I've downloaded everything I've needed, ran the script, everything runs find, until i level. Leveling up while running wizzup seems to cause the script to stop, and it seems that he doesnt have anything on his script to click continue and start the process again. Is there a known fix for this? If not how would i go about scripting it? AND would wizzup mind if i altered his script some?

  2. #2
    Join Date
    Feb 2007
    Posts
    3,616
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    He wouldn't mind (at least I don't think), you just can't release it. You can modify most scripts for your own personal use and not to share with anyone else.

    Try learning to script, and put some if(ClickToContinue)then's in there to click the mining thing again once that happens.

    I never did encounter that problem when using his ess miner though..

  3. #3
    Join Date
    Jun 2007
    Location
    Alaska
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks, where would i start to learn scripting at? I can pretty much understand a large part of it just by reading the scripts.. I try to go through every script i download or use to make sure they dont have an automail feature that would email my Information to them. Not sure if thats possible, but im sure it wouldnt be that hard to script into it..lol

  4. #4
    Join Date
    Jun 2006
    Posts
    3,861
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    There's a section on these forums called Tutorial Island. Start there.
    Also, about the mailing, SCAR will ALWAYS ask you if it can connect to the internet before it does, so it's not possible without you saying it can.

  5. #5
    Join Date
    Jun 2007
    Location
    Alaska
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ok this is what ive come up with sorta.. Any help?
    __________________________________________________ _____
    Begin
    If (Clicktocontinue) then
    procedure Mouse(x,y,rx,ry:Integer; left:Boolean);
    var a:Integer;

    begin
    MMouse(x,y,rx,ry);
    Wait(10);
    GetMousePos(300,627);
    Wait(50+random(25));
    HoldMouse(x-1,y+1,left);
    repeat
    Wait(10+Random(1));
    a:=a+1;
    until(a>4);
    GetMousePos(x,y);
    ReleaseMouse(x,y,left);
    Wait(100+random(250));
    MMouse(x,y,2,2);
    Wait(50+random(200));
    end;

    _______________________________________________-

    get error


    Failed when compiling
    Line 1335: [Error] (17722:1): Identifier expected in script C:\Program Files\SCAR 3.06\Scripts\SRL Essence Miner 1[1].15.scar

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

    Default

    uh mouse is already a procedure included into srl.

  7. #7
    Join Date
    Feb 2007
    Posts
    3,616
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    You can't go if(ClickToContinue) then do a procedure. do like then begin, do stuff, end. But click to continue looks for the click to continue thing, and clicks it if it finds it. So all you need to do is call to click the ess mining thing if click to continue results true.

  8. #8
    Join Date
    Jun 2007
    Location
    Alaska
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Begin
    If Clicktocontinue (x, y) Then
    Begin
    Mouse (x, y, 0, 0, True);
    Wait(10);
    FFlag(0);
    Result := True;
    End
    So like this??

  9. #9
    Join Date
    Feb 2007
    Posts
    3,616
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Your making up things. There is no x,y in click to continue. ClickToContinue, that's all you put. if(ClickToContinue)then. Or you could do it like if ClickToContinue then, whichever.

    Try learning to script a little more, and read some more tutorials, then check out the SRL manual to learn some more functions and how they work.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Small Problem
    By lilpaintballer in forum OSR Help
    Replies: 9
    Last Post: 09-27-2008, 10:04 PM
  2. small problem not sure how to fix it
    By shaheerpak in forum OSR Help
    Replies: 3
    Last Post: 01-02-2008, 04:41 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
  •