Results 1 to 9 of 9

Thread: Non-runescape script

  1. #1
    Join Date
    Jun 2009
    Location
    Hiding
    Posts
    160
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default script

    this script is for a game called adventure quest worlds:
    Adventure Quest Worlds
    I dont play this game often, i just needed a test game to write script.
    It more for the structure so tell me what you think.
    Last edited by austin2162; 05-05-2011 at 04:50 AM.
    ~Austin~

  2. #2
    Join Date
    Oct 2009
    Location
    Stockton, CA
    Posts
    2,040
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Where is the script?
    Join the IRC! irc.rizon.net:6667/srl | SQLite (0.99rc3+) | SRL Doc | Simba Doc | Extra Simba Libraries (openSSL & sqlite3)
    Quote Originally Posted by #srl
    10:45 < Toter> daphil when can get sex anyday I want
    10:45 < Toter> he is always on #SRL
    "A programmer is just a tool which converts caffeine into code"

  3. #3
    Join Date
    Jun 2009
    Location
    Hiding
    Posts
    160
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    omg wow.... i forgot to add it....

    here
    Simba Code:
    program new;
    {.include srl/srl.scar}

    var
    inarea:string;
    x,y,color1,color2,no:integer;

    procedure setup;
    begin
    inarea:= 'yes';
    color1:= 10783356;
    color2:= 4153924;
    no := BitmapFromString(41, 26, 'meJxjYBgFo2AUjIIRBDg5ORkZGf' +
            'GL0AIICQl9+PBh//79zMzMEBFhYWGgSEBAAH2s/vfvX0FBAR6rJSQ' +
            'kVFRUaGH1kiVLvnz5oq6ujmk1kHvkyJF/YPD06VN7e3vqWh0ZGXn5' +
            '8uXDhw+zsLCgWb1w4cLr169LSUkBpRYtWgRkc3NzU9HqoKAgc3Pzb' +
            '9++lZWVIVvNzs7+5MmT7OxsiGItLa2vX78aGhpS12ogu7m5GWiyhY' +
            'UF3GpxcfGPHz96e3sjKw4MDKS61WxsbOfOnTt+/Djcag4OjmfPnmV' +
            'lZUEUA339/ft3GxsbqlsNBMbGxkCPA1MUPK4XLFhw5coVMTExYO4D' +
            'sl+8eMHPz08Lq4GgpqYG2WppaWl4Cgeq9PDwoIq9EMDLy8vExIRfR' +
            'FJSUldXlw5F3CgYBcQDAKhZrYw=');
    end;

    Procedure main;
    begin
      if inarea = 'no' then
        begin
          mouse(18,400,5,5,true);
          wait(500+random(1000));
          mouse(426,300,5,5,true);
          wait(6000+RANDOM(1000));
        end else if inarea = 'yes' then
        begin
          repeat
          if findcolortolerance(x,y,color1,0,0,959,549,5)and
          findcolortolerance(x,y,color2,0,0,959,549,5) then
            begin
              mouse(x,y,0,0,true);
                if findcolortolerance(x,y,1776605,304,36,416,63,5)then
                  begin
                    Repeat
                    if findcolortolerance(x,y,1776605,304,36,416,63,5) then
                      begin
                        mouse(411,510,5,5,true);
                        wait(1500);
                      end;
                      if findcolortolerance(x,y,1776605,304,36,416,63,5) then
                        begin
                          mouse(457,510,5,5,true);
                        end;
                      wait(6000+random(500));
                    until not(findcolortolerance(x,y,1776605,304,36,416,63,5))
                      repeat
                        if findbitmaptolerancein(no,x,y,0,0,959,549,5)then
                          mouse(x+5,y+5,0,0,true);
                        until not(findbitmaptolerancein(no,x,y,0,0,959,549,5))
                    wait(6000+random(500));
                  end;
              end;
          until false;
        end;
    end;

    begin
    setupsrl;
    wait(1500);
    setup;
    main;
    end.

    that makes me feel stupid...
    edit: added a fail safe.
    Last edited by austin2162; 05-04-2011 at 04:05 AM.
    ~Austin~

  4. #4
    Join Date
    Feb 2006
    Posts
    3,044
    Mentioned
    4 Post(s)
    Quoted
    21 Post(s)

    Default

    Moved to other scripts.

    ~Home

  5. #5
    Join Date
    Oct 2009
    Location
    Stockton, CA
    Posts
    2,040
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by austin2162 View Post
    this script is for a game called adventure quest worlds:
    Adventure Quest Worlds
    I dont play this game often, i just needed a test game to write script.
    It more for the structure so tell me what you think.
    Just to let you know, SRL uses Simba now and SCAR is deprecated (I think).
    Join the IRC! irc.rizon.net:6667/srl | SQLite (0.99rc3+) | SRL Doc | Simba Doc | Extra Simba Libraries (openSSL & sqlite3)
    Quote Originally Posted by #srl
    10:45 < Toter> daphil when can get sex anyday I want
    10:45 < Toter> he is always on #SRL
    "A programmer is just a tool which converts caffeine into code"

  6. #6
    Join Date
    Nov 2008
    Location
    Melbourne, Australia
    Posts
    2,240
    Mentioned
    3 Post(s)
    Quoted
    11 Post(s)

    Default

    Scar is still usable, it's still being maintained by freddy.

    http://www.freddy1990.com/index.php?...duct&name=scar
    Click here to find out how to get full screen without members! | Click here to check out my Ultimate Bitmap Tutorial! Edited to work with Simba! |

  7. #7
    Join Date
    Jun 2009
    Location
    Hiding
    Posts
    160
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    That is simba.
    Ive been using simba since reflection came out for simba. infact.
    i wrote one of the first tutorials on how to setup reflection in simba.
    Last edited by austin2162; 05-04-2011 at 12:18 PM.
    ~Austin~

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

    Default

    Interesting... You know you can use cheatengine to hack flash? Way better/easier IMO.
    "Logic never changes, just the syntax" - Kyle Undefined?

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

  9. #9
    Join Date
    Jun 2009
    Location
    Hiding
    Posts
    160
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I wanted to have people look at how uts written i know cheat engine worms betted but im not after a gain im just test writing code as stated in the first post.
    ~Austin~

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
  •