Page 2 of 5 FirstFirst 1234 ... LastLast
Results 26 to 50 of 120

Thread: [MoneyMaking] The Mighty Al-Kharid Silk buyer!

  1. #26
    Join Date
    Feb 2013
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    If there is the slightest bit of lag during the dialogue it skips a couple of purchases. Would it be possible to slow the clicking down a little bit?

  2. #27
    Join Date
    Mar 2012
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by Bucks View Post
    If there is the slightest bit of lag during the dialogue it skips a couple of purchases. Would it be possible to slow the clicking down a little bit?
    Hi Bucks, please replace your shop trader dialogue method with this
    Code:
    	// one                                      Do you want to buy any fine silks?
    	x := 300;
    	y := 450;
    	MMouse(x,y, 3,3);
      Wait(1000);
    	ClickMouse2(Mouse_left);
    	// two     Select an Option [ How much are they? | No. Silk doesn't suit me. ]
    	x := 300;
    	y := 400;
    
    	MMouse(x,y, 3,3);
      Wait(1000);
    	ClickMouse2(Mouse_left);
    	// three                                                    How much are they?
    	x := 215;
    	y := 450;
    	MMouse(x,y, 3,3);
      Wait(1002);
    	ClickMouse2(Mouse_left);
    	// four                                                                    3gp
    	x := 300;
    	y := 450;
    	MMouse(x,y, 3,3);
      Wait(1003);
    	ClickMouse2(Mouse_left);
    	// five Select an Option [ No. That's too much for me. | Okay, that sounds good. ]
    	x := 250;
    	y := 435;
    	MMouse(x,y, 4,4);
      Wait(1003);
    	ClickMouse2(Mouse_left);
    	// six                                                 Okay, that sounds good.
    	x := 215;
    	y := 450;
    	MMouse(x,y, 3,3);
      Wait(1004);
    	ClickMouse2(Mouse_left);
    	// seven                                            You buy some silk for 3gp.
    	x := 215;
    	y := 450;
    	MMouse(x,y, 3,3);
      Wait(1004);
    	ClickMouse2(Mouse_left);
    your lag problem should be solved
    Last edited by peronigood; 03-14-2013 at 12:34 AM.

  3. #28
    Join Date
    Feb 2013
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Quote Originally Posted by peronigood View Post

    your lag problem should be solved
    That, it is. Much appreciated!

  4. #29
    Join Date
    Feb 2013
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Forgetting money/grabbing a random item from bank very often. I got rid of everything in my bank except for coins and the silk but still happens.

    Any temporary fixes?

  5. #30
    Join Date
    Mar 2013
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by Shmo View Post
    Using unnofficial P07 include and when I try to run script I get

    [Error] C:\Simba\Includes\SRL\SRL\misc\SmartParams.Simba(2 93:131): Invalid number of parameters at line 292
    Compiling failed.
    Zorgatone, what do I need to fix in line 292?

  6. #31
    Join Date
    Mar 2012
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by Bucks View Post
    Forgetting money/grabbing a random item from bank very often. I got rid of everything in my bank except for coins and the silk but still happens.

    Any temporary fixes?
    Bucks,
    Please remove the
    function MoneyColorInv: Integer; and function MoneyColorBank: Integer;
    functions
    (will post what you need to remove below)
    Code:
    function MoneyColorInv: Integer;
    var
      arP: TPointArray;
      arC: TIntegerArray;
      tmpCTS, i, arL: Integer;
    begin
      tmpCTS := GetColorToleranceSpeed;
      ColorToleranceSpeed(2);
      SetColorSpeed2Modifiers(0.04, 0.97);
    
      if not (FindColorsTolerance(arP, 3131122, MIX1, MIY1, MIX2, MIY2, 9)) then
      begin
        Writeln('Failed to find the color, no result.');
        ColorToleranceSpeed(tmpCTS);
        SetColorSpeed2Modifiers(0.2, 0.2);
        Exit;
      end;
    
      arC := GetColors(arP);
      ClearSameIntegers(arC);
      arL := High(arC);
    
      for i := 0 to arL do
      begin
        Result := arC[i];
        Writeln('MoneyColorInv = ' + IntToStr(arC[i]));
        Break;
      end;
    
      ColorToleranceSpeed(tmpCTS);
      SetColorSpeed2Modifiers(0.2, 0.2);
    
      if (i = arL + 1) then
        Writeln('MoneyColorInv failed in finding the color.');
    end;
    and also any code thats referring to them.
    (I will post what to remove below this)
    Code:
    	If FindColorTolerance(x, y, MoneyColorInv, 546, 200, 736, 466, 36) then
    	begin
    		MMouse(x,y, 3,3);
        if(IsUpTextMultiCustom(['oins', 'Coins'])) then
        begin
    		  ClickMouse2(Mouse_Right);
    		  MMouse(x, y + 66, 3, 3);
    		  ClickMouse2(Mouse_Left);
        end
    	end;
     // until ((IsUpTextMultiCustom(['oins', 'Coins'])));
    
      maxtries := 0;
      repeat
    	If FindColorTolerance(x, y, MoneyColorBank, 18, 27, 502, 326, 36) then
    	begin
    		MMouse(x,y, 3,3);
        if(IsUpTextMultiCustom(['oins', 'Coins'])) then
        begin
          writeln('lmao'+inttostr(maxtries));
    		  ClickMouse2(Mouse_Right);
    		  MMouse(x, y + 90, 3, 3);
    		  ClickMouse2(Mouse_Left);
    		  wait(1500);
    		  Typesend('84');
          break;
        end else
        begin
          maxtries := maxtries + 1;
          wait(250);
          continue;
        end;
    	end;
      until (maxtries = 10);
    Because of this, it wont deposit or go to withdraw money from the bank. IT WILL STILL GO TO THE BANK AND DEPOSIT THE SILK, JUST NOT WITHDRAW OR DEPOSIT ANY MONEY. so you will need to have around 5k(or your desired amount of gold) in your first inventory slot when purchasing silk.
    Last edited by peronigood; 03-14-2013 at 04:05 AM.

  7. #32
    Join Date
    Feb 2012
    Posts
    70
    Mentioned
    0 Post(s)
    Quoted
    27 Post(s)

    Default

    One of the best scripts going tbh, lasts the longest by far for me personally.

    >>>>>>>>>>NOW JUST WAITING ON ARDOUGNE SILK SELLER<<<<<<<<<<

    Will be peak when you release that second script, cannot wait!
    Last edited by My_Sp3c_Ftw; 03-14-2013 at 03:22 AM.

  8. #33
    Join Date
    Feb 2013
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Quote Originally Posted by peronigood View Post
    Because of this, it wont deposit or go to withdraw money from the bank, so you will need to have around 5k(or your desired amount of gold) in your first inventory slot when purchasing silk.
    Flawless! Totally thought it would just buy silk over and over without banking.

    Thanks a ton.

  9. #34
    Join Date
    Mar 2012
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by Bucks View Post
    Flawless! Totally thought it would just buy silk over and over without banking.

    Thanks a ton.
    sorry i should have made it clearer, it will still bank, just not try to deposit or withdraw any gold

    but your welcome

  10. #35
    Join Date
    Feb 2013
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Quote Originally Posted by peronigood View Post
    sorry i should have made it clearer, it will still bank, just not try to deposit or withdraw any gold

    but your welcome
    I just died twice lol...

    Accidentally misclicked the man maybe? or evil chicken perhaps?
    Last edited by Bucks; 03-14-2013 at 04:40 AM.

  11. #36
    Join Date
    Feb 2013
    Posts
    46
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    Quote Originally Posted by Shmo View Post
    Zorgatone, what do I need to fix in line 292?
    You don't need to compile smart params.

  12. #37
    Join Date
    Feb 2013
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Any idea why all of a sudden I'm just spam clicking the silk guy?

    Edit: Bot turned the brightness down so the colour was off.
    Last edited by Bucks; 03-14-2013 at 06:02 AM.

  13. #38
    Join Date
    Mar 2012
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by Bucks View Post
    I just died twice lol...

    Accidentally misclicked the man maybe? or evil chicken perhaps?
    I havent yet died, however i must admit I havent had any sort of random event for 21 hours. (weird i know)
    Last edited by peronigood; 03-14-2013 at 06:45 AM.

  14. #39
    Join Date
    Feb 2013
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Quote Originally Posted by peronigood View Post
    I havent yet died, however i must admit I havent had any sort of random event for 21 hours. (weird i know)
    It was from attacking one of the men. I equipped a bow now, but I keep finding myself on the utilities screen (brightness, music, run, etc.) with a pile of silk under me. How could I make sure the script stays on the inventory tab?

  15. #40
    Join Date
    Oct 2012
    Location
    Italy
    Posts
    145
    Mentioned
    0 Post(s)
    Quoted
    44 Post(s)

    Default

    Quote Originally Posted by peronigood View Post
    Hi Bucks, please replace your shop trader dialogue method with this
    Code:
    	// one                                      Do you want to buy any fine silks?
    	x := 300;
    	y := 450;
    	MMouse(x,y, 3,3);
      Wait(1000);
    	ClickMouse2(Mouse_left);
    	// two     Select an Option [ How much are they? | No. Silk doesn't suit me. ]
    	x := 300;
    	y := 400;
    
    	MMouse(x,y, 3,3);
      Wait(1000);
    	ClickMouse2(Mouse_left);
    	// three                                                    How much are they?
    	x := 215;
    	y := 450;
    	MMouse(x,y, 3,3);
      Wait(1002);
    	ClickMouse2(Mouse_left);
    	// four                                                                    3gp
    	x := 300;
    	y := 450;
    	MMouse(x,y, 3,3);
      Wait(1003);
    	ClickMouse2(Mouse_left);
    	// five Select an Option [ No. That's too much for me. | Okay, that sounds good. ]
    	x := 250;
    	y := 435;
    	MMouse(x,y, 4,4);
      Wait(1003);
    	ClickMouse2(Mouse_left);
    	// six                                                 Okay, that sounds good.
    	x := 215;
    	y := 450;
    	MMouse(x,y, 3,3);
      Wait(1004);
    	ClickMouse2(Mouse_left);
    	// seven                                            You buy some silk for 3gp.
    	x := 215;
    	y := 450;
    	MMouse(x,y, 3,3);
      Wait(1004);
    	ClickMouse2(Mouse_left);
    your lag problem should be solved
    Well this fix is useful to not miss one click ever, but it will produce half of the silk, as you increase the wait timers.. It's ok if it misses a couple of clicks every 28 silk, it's still faster than wait one second for every click.. This may depend on your internet connection speed indeed.

    Quote Originally Posted by Bucks View Post
    Forgetting money/grabbing a random item from bank very often. I got rid of everything in my bank except for coins and the silk but still happens.

    Any temporary fixes?
    The version 0.4 shouldn't miss the money from the bank, please inform me if you're using this version.. I'll update my script to fix this if so.

    Quote Originally Posted by Shmo View Post
    Zorgatone, what do I need to fix in line 292?
    Line 292 of what file?

    Quote Originally Posted by peronigood View Post
    Bucks,
    Please remove the
    function MoneyColorInv: Integer; and function MoneyColorBank: Integer;
    functions
    (will post what you need to remove below)
    Code:
    function MoneyColorInv: Integer;
    var
      arP: TPointArray;
      arC: TIntegerArray;
      tmpCTS, i, arL: Integer;
    begin
      tmpCTS := GetColorToleranceSpeed;
      ColorToleranceSpeed(2);
      SetColorSpeed2Modifiers(0.04, 0.97);
    
      if not (FindColorsTolerance(arP, 3131122, MIX1, MIY1, MIX2, MIY2, 9)) then
      begin
        Writeln('Failed to find the color, no result.');
        ColorToleranceSpeed(tmpCTS);
        SetColorSpeed2Modifiers(0.2, 0.2);
        Exit;
      end;
    
      arC := GetColors(arP);
      ClearSameIntegers(arC);
      arL := High(arC);
    
      for i := 0 to arL do
      begin
        Result := arC[i];
        Writeln('MoneyColorInv = ' + IntToStr(arC[i]));
        Break;
      end;
    
      ColorToleranceSpeed(tmpCTS);
      SetColorSpeed2Modifiers(0.2, 0.2);
    
      if (i = arL + 1) then
        Writeln('MoneyColorInv failed in finding the color.');
    end;
    and also any code thats referring to them.
    (I will post what to remove below this)
    Code:
    	If FindColorTolerance(x, y, MoneyColorInv, 546, 200, 736, 466, 36) then
    	begin
    		MMouse(x,y, 3,3);
        if(IsUpTextMultiCustom(['oins', 'Coins'])) then
        begin
    		  ClickMouse2(Mouse_Right);
    		  MMouse(x, y + 66, 3, 3);
    		  ClickMouse2(Mouse_Left);
        end
    	end;
     // until ((IsUpTextMultiCustom(['oins', 'Coins'])));
    
      maxtries := 0;
      repeat
    	If FindColorTolerance(x, y, MoneyColorBank, 18, 27, 502, 326, 36) then
    	begin
    		MMouse(x,y, 3,3);
        if(IsUpTextMultiCustom(['oins', 'Coins'])) then
        begin
          writeln('lmao'+inttostr(maxtries));
    		  ClickMouse2(Mouse_Right);
    		  MMouse(x, y + 90, 3, 3);
    		  ClickMouse2(Mouse_Left);
    		  wait(1500);
    		  Typesend('84');
          break;
        end else
        begin
          maxtries := maxtries + 1;
          wait(250);
          continue;
        end;
    	end;
      until (maxtries = 10);
    Because of this, it wont deposit or go to withdraw money from the bank. IT WILL STILL GO TO THE BANK AND DEPOSIT THE SILK, JUST NOT WITHDRAW OR DEPOSIT ANY MONEY. so you will need to have around 5k(or your desired amount of gold) in your first inventory slot when purchasing silk.
    I don't recommend to do this as you will attack the men sometimes, or you can lose your money for some reason, and 5k is too low to run for some hours.. You will need about 20k, and do not put all them in the inventory..

    Quote Originally Posted by My_Sp3c_Ftw View Post
    One of the best scripts going tbh, lasts the longest by far for me personally.

    >>>>>>>>>>NOW JUST WAITING ON ARDOUGNE SILK SELLER<<<<<<<<<<

    Will be peak when you release that second script, cannot wait!
    Thanks, I appreciate this.. I'm still fixing some bugs because this script isn't ready 100%..

    Quote Originally Posted by Bucks View Post
    Flawless! Totally thought it would just buy silk over and over without banking.

    Thanks a ton.
    No problem

    Quote Originally Posted by peronigood View Post
    sorry i should have made it clearer, it will still bank, just not try to deposit or withdraw any gold

    but your welcome
    I repeat, you may lose your money if you don't leave them in your bank.. My script will withdraw 81-84 gps every trip (I don't remember if 81 or 84 right now, but the amount needed to buy exactly 28 silk).

    Quote Originally Posted by Bucks View Post
    I just died twice lol...

    Accidentally misclicked the man maybe? or evil chicken perhaps?
    I don't really know why it does that.. I've put a check in version 0.4 to check if the uptext is the silk trader and not a man.. But I'll add combat detection to run away in case of need, or to kill the npcs, because it will try to buy silk even if under attack atm.

    Quote Originally Posted by Bucks View Post
    Any idea why all of a sudden I'm just spam clicking the silk guy?

    Edit: Bot turned the brightness down so the colour was off.
    Yes, please use this script with max brightness.. :P

    Quote Originally Posted by peronigood View Post
    I havent yet died, however i must admit I havent had any sort of random event for 21 hours. (weird i know)
    Yes, I haven't wrote it yet, but this script will not get randoms as long as you are moving all the time and buying the silk quickly..

    Quote Originally Posted by Bucks View Post
    It was from attacking one of the men. I equipped a bow now, but I keep finding myself on the utilities screen (brightness, music, run, etc.) with a pile of silk under me. How could I make sure the script stays on the inventory tab?
    Really? It's weird.. Have you put the brightness at maximum? :S

    Quote Originally Posted by Bucks View Post
    If there is the slightest bit of lag during the dialogue it skips a couple of purchases. Would it be possible to slow the clicking down a little bit?
    If I slow the clicking it will make less gp/h, it's ok if it misses some clicks sometimes.. If I add some milliseconds it will still miss sometimes, but I can't put 1 second and more between every click because it will produce half of the gp/h.. I've tested this on 24 bots and I can say that now it makes a decent amount of money even missing the silk sometimes..

    Quote Originally Posted by g4eore4g View Post
    Thanks for the script, but how is this 30-40k/h? I only managed to make about 300 silks/h, which equals 18k/h. Not to mention that I also need to sell them.
    I'm making also the selling part, don't worry
    Right now I'm quite busy and I don't have an ETA yet.. However check your runescape settings, you should be able to make at least 25k/h in the wrost case..

    Quote Originally Posted by Hamish View Post
    Using the p07Include version and it's working pretty decent although the walkings a bit off. An OSR include version would be sick!
    I've made already an OSR include version, check the version 0.4 that is newer.. :P

    Quote Originally Posted by bovman11 View Post
    Checking P07Include VersionNumber
    Local : 1.7 / Latest : 1.7
    You Have The Latest Version of P07Include
    Failed to find the color, no result.
    Im at the bankSuccessfully executed.




    help me please
    Have you put the brightness at maximum? It works well for me..
    Check out my new script here: http://villavu.com/forum/showthread.php?p=1194418 Al-Kharid Silk buyer

  16. #41
    Join Date
    Feb 2013
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    what setup did I go wrong to get this error message?
    Invalid number of parameters at line 292

    Line 292: Result := SmartSpawnClient(ReplaceWrap(PluginPath, '\', '/', [rfReplaceAll]), Params[0], ',' + Params[1], 765, 503, 's', '', '');

  17. #42
    Join Date
    Jan 2007
    Posts
    181
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Awesome script! Was having difficulty running it last night but I realised that was because my brightness would randomly change its setting, very strange.

    The walking is a bit strange, for me it walks in the bottom left corner of the house next to the silk stall before it finally moves to the stall, but it's no big issue.

    edit; Just noticed it sometimes forgets to bank and goes back to the stall and tries to buy more with a full inventory
    Last edited by Hamish; 03-14-2013 at 05:54 PM.

  18. #43
    Join Date
    Mar 2013
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    when I turn on this script, its going to al kharid duel arena...

  19. #44
    Join Date
    Mar 2013
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by browncat View Post
    what setup did I go wrong to get this error message?
    Invalid number of parameters at line 292

    Line 292: Result := SmartSpawnClient(ReplaceWrap(PluginPath, '\', '/', [rfReplaceAll]), Params[0], ',' + Params[1], 765, 503, 's', '', '');
    At beginning of script delete the 8 from Smart8. That was my issue as I'm only running SMART

  20. #45
    Join Date
    Oct 2012
    Location
    Italy
    Posts
    145
    Mentioned
    0 Post(s)
    Quoted
    44 Post(s)

    Default

    Quote Originally Posted by browncat View Post
    what setup did I go wrong to get this error message?
    Invalid number of parameters at line 292

    Line 292: Result := SmartSpawnClient(ReplaceWrap(PluginPath, '\', '/', [rfReplaceAll]), Params[0], ',' + Params[1], 765, 503, 's', '', '');
    Yes, change {$DEFINE SMART8} to {$DEFINE SMART}.

    Quote Originally Posted by Hamish View Post
    Awesome script! Was having difficulty running it last night but I realised that was because my brightness would randomly change its setting, very strange.

    The walking is a bit strange, for me it walks in the bottom left corner of the house next to the silk stall before it finally moves to the stall, but it's no big issue.

    edit; Just noticed it sometimes forgets to bank and goes back to the stall and tries to buy more with a full inventory
    Your brightess won't be changed if you don't do the logout correctly.. When you close the bot without logging out it won't save your RS settings..
    Yes, sorry for that banking bug.. I need to double check if it banked correctly..
    Well, the walking maybe strange due to SPS with 07scape that will rotate at +-20 degrees the minimap randomly if you're running the version 0.4, or it will click the symbols on the minimap if you use the version 1.2 that is older than the 0.4..
    Try both if you can setup SRL-OSR

    Quote Originally Posted by dofkiuxas View Post
    when I turn on this script, its going to al kharid duel arena...
    Sometimes happens with both versions... This will not be very frequent but it's a problem in recognizing the desert map when RuneScape messes up with the minimap colors, and both of my scripts will fail in some cases... I'm still searching for a better method to walk with 07scape..
    Check out my new script here: http://villavu.com/forum/showthread.php?p=1194418 Al-Kharid Silk buyer

  21. #46
    Join Date
    Mar 2013
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Exception in Script: Unable to find file 'SRL-OSR/SRl.simba' used from 'C:\Users\Måns\Downloads\test-07scape-SRL_OSR-silktrader_0.4.simba' Please help

  22. #47
    Join Date
    Mar 2012
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    I start it and this is what i get

    Paired with SMART[4492]
    Checking P07Include VersionNumber
    Local : 1.7 / Latest : 1.7
    You Have The Latest Version of P07Include
    Failed to find the color, no result.
    I cant find the bank
    I cant find the first spot
    Successfully executed.

  23. #48
    Join Date
    Oct 2012
    Location
    Italy
    Posts
    145
    Mentioned
    0 Post(s)
    Quoted
    44 Post(s)

    Default

    Quote Originally Posted by trick821 View Post
    Exception in Script: Unable to find file 'SRL-OSR/SRl.simba' used from 'C:\Users\Måns\Downloads\test-07scape-SRL_OSR-silktrader_0.4.simba' Please help
    I said in the requirements that you need SRL-OSR.. It's all in the first post.

    Quote Originally Posted by zakum777 View Post
    I start it and this is what i get

    Paired with SMART[4492]
    Checking P07Include VersionNumber
    Local : 1.7 / Latest : 1.7
    You Have The Latest Version of P07Include
    Failed to find the color, no result.
    I cant find the bank
    I cant find the first spot
    Successfully executed.
    Are you starting it at the Al-Kharid Bank with the brightness maxed?
    Check out my new script here: http://villavu.com/forum/showthread.php?p=1194418 Al-Kharid Silk buyer

  24. #49
    Join Date
    Mar 2013
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i get this when i try to compliy Exception in Script: Unable to find file '07symbol.simba' used from 'C:\Simba\Scripts\silktrader - 1.2 (1).simba'

  25. #50
    Join Date
    Mar 2013
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    I'm new to Simba, but have been figuring things out so far as to get a script working for me. However, I can't get this one to work and I would really like to use the P07 0.4 since the 1.2 takes weird walking paths and sometimes doesn't enter the bank at all. I tried to get the SRL-OSR thing from https://github.com/SRL/SRL-OSR but I have no idea what I'm looking for there. I do get this error message:
    Exception in Script: Unable to find file 'SRL-OSR/SRl.simba' used from 'C:\Simba\Scripts\test-07scape-SRL_OSR-silktrader_0.4.simba'
    I normally try to figure things out on my own (read old posts and answers) but I just can't seem to figure out how to get it to work. I have the updated include from Danny's thread also. I followed all of Yohojo's video tutorials to set up everything correctly (like I said, I can get most scripts to run).
    Any hints or something?

Page 2 of 5 FirstFirst 1234 ... LastLast

Thread Information

Users Browsing this Thread

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

Tags for this Thread

Posting Permissions

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