Page 2 of 3 FirstFirst 123 LastLast
Results 26 to 50 of 70

Thread: Fady's Alch-O-Matic

  1. #26
    Join Date
    Apr 2015
    Posts
    19
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    Quote Originally Posted by fady View Post
    It should already have anti-ban, it should do about 2-3 antibans / 1000 alchs. Is it not doing that for you?


    EDIT: don't forget to show me a proggy!!
    Sorry, I ran it only like 30 mins, and did not see any.. It has nice little anti-ban, fairly enough.

    Items Left to go: 2077
    Alchs done: 2921 Done/H: 1082
    XP Gained: 189865 XP/H: 70330
    Profit: 394335 Profit/H: 146031
    Time Running: 2 Hours, 42 Minutes and 1 Second
    We Have Done: 58 Antibans, and Taken: 0 Breaks
    Next Break in: 2h 53m 29s
    Successfully executed.

    Dragon bolts (e) or Magic shieldbows (130k/h) are good items to alch for profit!

  2. #27
    Join Date
    Apr 2015
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    I have the same problem, but the only difference is that I am on EoC, logs me in and selects world and that's that. 1 minute later it just closes. Have done everything I could possibly think of.

  3. #28
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Quote Originally Posted by lucient View Post
    I have the same problem, but the only difference is that I am on EoC, logs me in and selects world and that's that. 1 minute later it just closes. Have done everything I could possibly think of.
    Post a screenshot of your graphics settings (the menu) and your interface settings (in-game)
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Badâ„¢ before everyone gets laser pistols

  4. #29
    Join Date
    Apr 2015
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

  5. #30
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Quote Originally Posted by lucient View Post
    I'm going to suggest you read this.
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Badâ„¢ before everyone gets laser pistols

  6. #31
    Join Date
    Apr 2015
    Posts
    19
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    In past few days this script often crash after ~500-1000 alches. Can you look into it?

  7. #32
    Join Date
    Feb 2015
    Posts
    422
    Mentioned
    41 Post(s)
    Quoted
    226 Post(s)

    Default

    Quote Originally Posted by Deluu11 View Post
    In past few days this script often crash after ~500-1000 alches. Can you look into it?
    Can you go down to line 380, and change
    Simba Code:
    disableSRLDebug := true;  // Change this to false to enable SRL Debug!
    to
    Simba Code:
    disableSRLDebug := false;  // Change this to false to enable SRL Debug!

    and let me know what is in the debug box when it crashes?

  8. #33
    Join Date
    Apr 2015
    Posts
    19
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    Quote Originally Posted by fady View Post
    Can you go down to line 380, and change
    Simba Code:
    disableSRLDebug := true;  // Change this to false to enable SRL Debug!
    to
    Simba Code:
    disableSRLDebug := false;  // Change this to false to enable SRL Debug!

    and let me know what is in the debug box when it crashes?
    I'll try that. Thanks.


    This new tab pops up:
    Code:
    {$loadlib libtesseract2_}
    
    {$f-}
    
    (*
    type TTesseractFilter
    ~~~~~~~~~~~~~~~~~~~~~
    
    A record that stores filtering to apply onto a image.
    
    Example:
    
    .. code-block:: pascal
    
        var
          myTesseractFilter: TTesseractFilter;
        begin
          with (myTesseractFilter) do
          begin
            multiplerW := 3;
            multiplerH := 3;
    
            with (thresholdSettings) do
            begin
              invert := False;
              amount := 20;
              method := TM_Mean;
            end;
          end;
    
          writeln(Tesseract_GetText(100, 100, 200, 200, myTesseractFilter));
        end;
    *)
    type
      TTesseractFilter = record
        multiplerW, multiplerH: integer;
        thresholdSettings: record invert: boolean; amount: byte; method: TBmpThreshMethod; end;
     end;
    
    (*
    const Tesseract
    ~~~~~~~~~~~~~~~
    
    String constants that store the data path, language and whitelist presets.
    
    Example:
    
    .. code-block:: pascal
    
      print(TESS_DATA_PATH);
    *)
    const
      TESS_DATA_PATH = AppPath + 'tessdata';
      TESS_LANGUAGE = 'eng';
    
    const
      TESS_WHITELIST_NUMBERS = '0123456789';
      TESS_WHITELIST_LETTERS = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
      TESS_WHITELIST_NONE = '';
    
    (*
    const Filter presets
    ~~~~~~~~~~~~~~~~~~~~
    
    Constants of TTesseractFilter that are filter presets
    
    Example:
    
    .. code-block:: pascal
    
      Tesseract_GetText(100, 100, 200, 200, TESS_FILTER_SMALL_CHARS);
    *)
    const
      TESS_FILTER_SMALL_CHARS: TTesseractFilter = [3, 3, [false, 50, TM_Mean]];
      TESS_FILTER_SMALL_CHARS_2: TTesseractFilter = [5, 5, [false, 55, TM_Mean]];
      TESS_FILTER_NPC_CHAT_CHARS: TTesseractFilter = [3, 3, [true, -50, TM_Mean]];
    
    {*
    var Tesseract
    ~~~~~~~~~~~~~
    
    Internal variables for use by the Tesseract.
    *}
    var
      __tesseractPtr: pointer := nil;
      __tesseractIsSetup: boolean = false;
    
    (*
    _Tesseract_Setup
    ~~~~~~~~~~~~~~~~
    
    .. code-block:: pascal
    
        procedure _Tesseract_Setup();
    
    Setups our instance of tesseract-ocr. Is automaticly called if using functions
    from this file.
    
    .. note::
    
        - by Olly
        - Last updated: July. 26th, 2014 by Olly
    
    Example:
    
    .. code-block:: pascal
    
        _Tesseract_Setup();
    *)
    procedure _Tesseract_Setup();
    begin
      if (__tesseractIsSetup) then
        exit();
    
      __tesseractPtr := Tesseract_Create();
    
      if (__tesseractPtr = nil) then
        print('Failed to create a tesseract instance', TDebug.FATAL);
    
      if (Tesseract_Init(__tesseractPtr, TESS_DATA_PATH, TESS_LANGUAGE) <> 0) then
        print('Unable to initizalse tesseract, check Simba console for more infomation', TDebug.FATAL);
    
      addOnTerminate('_Tesseract_Free');
      __tesseractIsSetup := true;
    end;
    
    (*
    _Tesseract_Free
    ~~~~~~~~~~~~~~~
    
    .. code-block:: pascal
    
        procedure _Tesseract_Free();
    
    Frees our instance of tesseract-ocr. Is automaticly called on terminate if
    _Tesseract_Setup() has been called.
    
    .. note::
    
        - by Olly
        - Last updated: July. 26th, 2014 by Olly
    
    Example:
    
    .. code-block:: pascal
    
        _Tesseract_Free();
    *)
    procedure _Tesseract_Free();
    begin
      if (__tesseractPtr = nil) or (not __tesseractIsSetup) then
        exit();
    
      Tesseract_End(__tesseractPtr);
      Tesseract_Delete(__tesseractPtr);
      __tesseractPtr := nil;
      __tesseractIsSetup := false;
    end;
    
    (*
    Tesseract_ApplyFilter
    ~~~~~~~~~~~~~~~~~~~~~
    
    .. code-block:: pascal
    
        procedure Tesseract_ApplyFilter(const BMP: integer; const filter: TTesseractFilter);
    
    Applys the tesseract filter onto the bitmap.
    
    .. note::
    
        - by Olly
        - Last updated: September. 9th, 2014 by Olly
    
    Example:
    
    .. code-block:: pascal
    
        Tesseract_ApplyFilter(BMP, MyTesseractFilter);
    *)
    procedure Tesseract_ApplyFilter(const BMP: integer; const filter: TTesseractFilter);
    var
      w, h: integer;
    begin
      if (not BitmapExists(BMP)) then
        Exit();
    
      GetBitmapSize(BMP, w, h);
      if (Filter.multiplerW > 0) and (Filter.multiplerH > 0) then
        ResizeBitmapEx(BMP, RM_Bilinear, Filter.multiplerW * w, Filter.multiplerH * h);
    
      ThresholdAdaptiveBitmap(bmp, 0, 255, Filter.thresholdSettings.invert,
                                           Filter.thresholdSettings.method,
                                           Filter.thresholdSettings.amount);
    end;
    
    (*
    Tesseract_GetText
    ~~~~~~~~~~~~~~~~~
    
    .. code-block:: pascal
    
        function Tesseract_GetText(const bmp: integer): string;
    
    Runs tesseract on the bitmap 'bmp'.
    
    .. note::
    
        - by Olly
        - Last updated: July. 26th, 2014 by Olly
    
    Example:
    
    .. code-block:: pascal
    
        writeln(Tesseract_GetText(bmp));
    *)
    function Tesseract_GetText(const bmp: integer; const Whitelist: String = TESS_WHITELIST_NONE): string;
    var
      w, h, i: integer;
      textLen: UInt32;
      textPtr: PChar = nil;
    begin
      if (not __tesseractIsSetup) then
        _Tesseract_Setup();
    
      if (Whitelist <> TESS_WHITELIST_NONE) then
        Tesseract_SetVariable(__tesseractPtr, 'tessedit_char_whitelist', WhiteList);
    
      result := '';
      getBitmapSize(bmp, w, h);
    
      if (w < 10) or (h < 10) then
        Exit;
    
      try
        Tesseract_SetImage(__tesseractPtr, getMufasaBitmap(bmp).getData(), w, h, 4, Integer(w * 4));
        try
          textPtr := Tesseract_GetUTF8Text(__tesseractPtr, textLen);
        except
          TextPtr := nil;
        end;
    
        if (TextPtr <> nil) then
        begin
          setLength(result, textLen);
          if (textLen > 0) then
          begin
            for i := 1 to textLen do
              result[i] := textPtr[i - 1]^;
    
            result := trim(stringReplace(result, #10, #13#10, [rfReplaceAll]));
          end;
        end;
      finally
        if (textPtr <> nil) then
        begin
          Tesseract_FreeUTF8Text(textPtr);
          Tesseract_Clear(__tesseractPtr);
        end;
    
        if (Whitelist <> TESS_WHITELIST_NONE) then // reset to default
        begin
          _Tesseract_Free();
          _Tesseract_Setup();
        end;
      end;
    end;
    
    (*
    Tesseract_GetText; overload
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~
    
    .. code-block:: pascal
    
        function Tesseract_GetText(const xs, ys, xe, ye: integer; filter: TTesseractFilter): string; overload;
    
    Overloaded method that searches on the client with a filter to read text.
    
    .. note::
    
        - by Olly
        - Last updated: July. 26th, 2014 by Olly
    
    Example:
    
    .. code-block:: pascal
    
        writeln(Tesseract_GetText(100, 100, 200, 200, TESS_FILTER_SMALL_CHARS));
    *)
    function Tesseract_GetText(const xs, ys, xe, ye: integer; filter: TTesseractFilter; Whitelist: String = TESS_WHITELIST_NONE): string; overload;
    var
      bmp, w, h: Integer;
      t, tt: LongWord;
    begin
      bmp := bitmapFromClient(xs, ys, xe, ye);
      GetBitmapSize(bmp, w, h);
      if (w < 10) or (h < 10) then
        Exit('');
    
      try
        t := getSystemTime();
        Tesseract_ApplyFilter(bmp, filter);
    
        t := (getSystemTime() - t);
        tt := getSystemTime();
    
        result := Tesseract_GetText(bmp, Whitelist);
        {$IFDEF TESSERACT_DEBUG}
        printf('Tesseract_GetText(): Filtering took: %d ms, Tesseract Took: %d ms, Total Time: %d ms.', [t, (getSystemTime() - tt), (getSystemTime() - tt) + t]);
        printf('Tesseract_GetText(): Text found: %s', [result]);
        {$ENDIF}
      finally
        {$IFDEF TESSERACT_DEBUG}
        clearDebugImg();
        displayDebugImgWindow(getMufasaBitmap(bmp).getWidth(), getMufasaBitmap(bmp).getHeight());
        drawBitmapDebugImg(bmp);
        {$ENDIF}
        freeBitmap(bmp);
      end;
    end;
    
    (*
    Tesseract_GetText; overload
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~
    
    .. code-block:: pascal
    
        function Tesseract_GetText(const area: TBox; filter: TTesseractFilter): string; overload;
    
    Overloaded method that searches on the client with a filter and accepts a TBox
    as an area parameter rather than x1, y1, x2, y2.
    
    .. note::
    
        - by Olly
        - Last updated: July. 26th, 2014 by Olly
    
    Example:
    
    .. code-block:: pascal
    
        writeln(Tesseract_GetText(box, TESS_FILTER_SMALL_CHARS));
    *)
    function Tesseract_GetText(const area: TBox; filter: TTesseractFilter; Whitelist: String = TESS_WHITELIST_NONE): string; overload;
    begin
      result := Tesseract_GetText(area.x1, area.y1, area.x2, area.y2, filter, Whitelist);
    end;
    
    // keep old versions working
    // deprecated use the TTesseractFilter presets
    const
      FILTER_SMALL_CHARS: TTesseractFilter = TESS_FILTER_SMALL_CHARS;
      FILTER_NPC_CHAT_CHARS: TTesseractFilter = TESS_FILTER_NPC_CHAT_CHARS;
      FILTER_SMALL_CHARS_2: TTesseractFilter = TESS_FILTER_SMALL_CHARS_2;
    
    // deprecated use Tesseract_GetText().
    function tesseractGetText(const searchBox: tbox; filterMethod: TTesseractFilter): string;
    begin
      result := Tesseract_GetText(searchBox, filterMethod);
    end;
    
    // deprecated use Tesseract_GetText().
    function tesseractGetText(const x1, y1, x2, y2: integer; filterMethod: TTesseractFilter; config: string = ''): string; overload;
    begin
      result := Tesseract_GetText(x1, y1, x2, y2, filterMethod, config);
    end;
    
    {$f+}
    After Stopping it this pops up in lower textbar.

    Code:
    [B]The following bitmaps were not freed: [Minimap Mask, Gametab Bitmap[0], Gametab Bitmap[1], Gametab Bitmap[2], Gametab Bitmap[3], Gametab Bitmap[4], Gametab Bitmap[5], Gametab Bitmap[6], Gametab Bitmap[7], Gametab Bitmap[8], Gametab Bitmap[9], Gametab Bitmap[10], Gametab Bitmap[11], Gametab Bitmap[12], Gametab Bitmap[13], 15]
    File[C:\Simba\Includes\SRL-6/logs/SRL log (18-04-15 at 10.26.23 PM).txt] has not been freed in the script, freeing it now.
    Last edited by Deluu11; 04-18-2015 at 07:46 PM.

  9. #34
    Join Date
    Feb 2015
    Posts
    422
    Mentioned
    41 Post(s)
    Quoted
    226 Post(s)

    Default

    Quote Originally Posted by Deluu11 View Post
    I'll try that. Thanks.


    This new tab pops up:
    Code:
    {$loadlib libtesseract2_}
    
    {$f-}
    
    (*
    type TTesseractFilter
    ~~~~~~~~~~~~~~~~~~~~~
    
    A record that stores filtering to apply onto a image.
    
    Example:
    
    .. code-block:: pascal
    
        var
          myTesseractFilter: TTesseractFilter;
        begin
          with (myTesseractFilter) do
          begin
            multiplerW := 3;
            multiplerH := 3;
    
            with (thresholdSettings) do
            begin
              invert := False;
              amount := 20;
              method := TM_Mean;
            end;
          end;
    
          writeln(Tesseract_GetText(100, 100, 200, 200, myTesseractFilter));
        end;
    *)
    type
      TTesseractFilter = record
        multiplerW, multiplerH: integer;
        thresholdSettings: record invert: boolean; amount: byte; method: TBmpThreshMethod; end;
     end;
    
    (*
    const Tesseract
    ~~~~~~~~~~~~~~~
    
    String constants that store the data path, language and whitelist presets.
    
    Example:
    
    .. code-block:: pascal
    
      print(TESS_DATA_PATH);
    *)
    const
      TESS_DATA_PATH = AppPath + 'tessdata';
      TESS_LANGUAGE = 'eng';
    
    const
      TESS_WHITELIST_NUMBERS = '0123456789';
      TESS_WHITELIST_LETTERS = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
      TESS_WHITELIST_NONE = '';
    
    (*
    const Filter presets
    ~~~~~~~~~~~~~~~~~~~~
    
    Constants of TTesseractFilter that are filter presets
    
    Example:
    
    .. code-block:: pascal
    
      Tesseract_GetText(100, 100, 200, 200, TESS_FILTER_SMALL_CHARS);
    *)
    const
      TESS_FILTER_SMALL_CHARS: TTesseractFilter = [3, 3, [false, 50, TM_Mean]];
      TESS_FILTER_SMALL_CHARS_2: TTesseractFilter = [5, 5, [false, 55, TM_Mean]];
      TESS_FILTER_NPC_CHAT_CHARS: TTesseractFilter = [3, 3, [true, -50, TM_Mean]];
    
    {*
    var Tesseract
    ~~~~~~~~~~~~~
    
    Internal variables for use by the Tesseract.
    *}
    var
      __tesseractPtr: pointer := nil;
      __tesseractIsSetup: boolean = false;
    
    (*
    _Tesseract_Setup
    ~~~~~~~~~~~~~~~~
    
    .. code-block:: pascal
    
        procedure _Tesseract_Setup();
    
    Setups our instance of tesseract-ocr. Is automaticly called if using functions
    from this file.
    
    .. note::
    
        - by Olly
        - Last updated: July. 26th, 2014 by Olly
    
    Example:
    
    .. code-block:: pascal
    
        _Tesseract_Setup();
    *)
    procedure _Tesseract_Setup();
    begin
      if (__tesseractIsSetup) then
        exit();
    
      __tesseractPtr := Tesseract_Create();
    
      if (__tesseractPtr = nil) then
        print('Failed to create a tesseract instance', TDebug.FATAL);
    
      if (Tesseract_Init(__tesseractPtr, TESS_DATA_PATH, TESS_LANGUAGE) <> 0) then
        print('Unable to initizalse tesseract, check Simba console for more infomation', TDebug.FATAL);
    
      addOnTerminate('_Tesseract_Free');
      __tesseractIsSetup := true;
    end;
    
    (*
    _Tesseract_Free
    ~~~~~~~~~~~~~~~
    
    .. code-block:: pascal
    
        procedure _Tesseract_Free();
    
    Frees our instance of tesseract-ocr. Is automaticly called on terminate if
    _Tesseract_Setup() has been called.
    
    .. note::
    
        - by Olly
        - Last updated: July. 26th, 2014 by Olly
    
    Example:
    
    .. code-block:: pascal
    
        _Tesseract_Free();
    *)
    procedure _Tesseract_Free();
    begin
      if (__tesseractPtr = nil) or (not __tesseractIsSetup) then
        exit();
    
      Tesseract_End(__tesseractPtr);
      Tesseract_Delete(__tesseractPtr);
      __tesseractPtr := nil;
      __tesseractIsSetup := false;
    end;
    
    (*
    Tesseract_ApplyFilter
    ~~~~~~~~~~~~~~~~~~~~~
    
    .. code-block:: pascal
    
        procedure Tesseract_ApplyFilter(const BMP: integer; const filter: TTesseractFilter);
    
    Applys the tesseract filter onto the bitmap.
    
    .. note::
    
        - by Olly
        - Last updated: September. 9th, 2014 by Olly
    
    Example:
    
    .. code-block:: pascal
    
        Tesseract_ApplyFilter(BMP, MyTesseractFilter);
    *)
    procedure Tesseract_ApplyFilter(const BMP: integer; const filter: TTesseractFilter);
    var
      w, h: integer;
    begin
      if (not BitmapExists(BMP)) then
        Exit();
    
      GetBitmapSize(BMP, w, h);
      if (Filter.multiplerW > 0) and (Filter.multiplerH > 0) then
        ResizeBitmapEx(BMP, RM_Bilinear, Filter.multiplerW * w, Filter.multiplerH * h);
    
      ThresholdAdaptiveBitmap(bmp, 0, 255, Filter.thresholdSettings.invert,
                                           Filter.thresholdSettings.method,
                                           Filter.thresholdSettings.amount);
    end;
    
    (*
    Tesseract_GetText
    ~~~~~~~~~~~~~~~~~
    
    .. code-block:: pascal
    
        function Tesseract_GetText(const bmp: integer): string;
    
    Runs tesseract on the bitmap 'bmp'.
    
    .. note::
    
        - by Olly
        - Last updated: July. 26th, 2014 by Olly
    
    Example:
    
    .. code-block:: pascal
    
        writeln(Tesseract_GetText(bmp));
    *)
    function Tesseract_GetText(const bmp: integer; const Whitelist: String = TESS_WHITELIST_NONE): string;
    var
      w, h, i: integer;
      textLen: UInt32;
      textPtr: PChar = nil;
    begin
      if (not __tesseractIsSetup) then
        _Tesseract_Setup();
    
      if (Whitelist <> TESS_WHITELIST_NONE) then
        Tesseract_SetVariable(__tesseractPtr, 'tessedit_char_whitelist', WhiteList);
    
      result := '';
      getBitmapSize(bmp, w, h);
    
      if (w < 10) or (h < 10) then
        Exit;
    
      try
        Tesseract_SetImage(__tesseractPtr, getMufasaBitmap(bmp).getData(), w, h, 4, Integer(w * 4));
        try
          textPtr := Tesseract_GetUTF8Text(__tesseractPtr, textLen);
        except
          TextPtr := nil;
        end;
    
        if (TextPtr <> nil) then
        begin
          setLength(result, textLen);
          if (textLen > 0) then
          begin
            for i := 1 to textLen do
              result[i] := textPtr[i - 1]^;
    
            result := trim(stringReplace(result, #10, #13#10, [rfReplaceAll]));
          end;
        end;
      finally
        if (textPtr <> nil) then
        begin
          Tesseract_FreeUTF8Text(textPtr);
          Tesseract_Clear(__tesseractPtr);
        end;
    
        if (Whitelist <> TESS_WHITELIST_NONE) then // reset to default
        begin
          _Tesseract_Free();
          _Tesseract_Setup();
        end;
      end;
    end;
    
    (*
    Tesseract_GetText; overload
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~
    
    .. code-block:: pascal
    
        function Tesseract_GetText(const xs, ys, xe, ye: integer; filter: TTesseractFilter): string; overload;
    
    Overloaded method that searches on the client with a filter to read text.
    
    .. note::
    
        - by Olly
        - Last updated: July. 26th, 2014 by Olly
    
    Example:
    
    .. code-block:: pascal
    
        writeln(Tesseract_GetText(100, 100, 200, 200, TESS_FILTER_SMALL_CHARS));
    *)
    function Tesseract_GetText(const xs, ys, xe, ye: integer; filter: TTesseractFilter; Whitelist: String = TESS_WHITELIST_NONE): string; overload;
    var
      bmp, w, h: Integer;
      t, tt: LongWord;
    begin
      bmp := bitmapFromClient(xs, ys, xe, ye);
      GetBitmapSize(bmp, w, h);
      if (w < 10) or (h < 10) then
        Exit('');
    
      try
        t := getSystemTime();
        Tesseract_ApplyFilter(bmp, filter);
    
        t := (getSystemTime() - t);
        tt := getSystemTime();
    
        result := Tesseract_GetText(bmp, Whitelist);
        {$IFDEF TESSERACT_DEBUG}
        printf('Tesseract_GetText(): Filtering took: %d ms, Tesseract Took: %d ms, Total Time: %d ms.', [t, (getSystemTime() - tt), (getSystemTime() - tt) + t]);
        printf('Tesseract_GetText(): Text found: %s', [result]);
        {$ENDIF}
      finally
        {$IFDEF TESSERACT_DEBUG}
        clearDebugImg();
        displayDebugImgWindow(getMufasaBitmap(bmp).getWidth(), getMufasaBitmap(bmp).getHeight());
        drawBitmapDebugImg(bmp);
        {$ENDIF}
        freeBitmap(bmp);
      end;
    end;
    
    (*
    Tesseract_GetText; overload
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~
    
    .. code-block:: pascal
    
        function Tesseract_GetText(const area: TBox; filter: TTesseractFilter): string; overload;
    
    Overloaded method that searches on the client with a filter and accepts a TBox
    as an area parameter rather than x1, y1, x2, y2.
    
    .. note::
    
        - by Olly
        - Last updated: July. 26th, 2014 by Olly
    
    Example:
    
    .. code-block:: pascal
    
        writeln(Tesseract_GetText(box, TESS_FILTER_SMALL_CHARS));
    *)
    function Tesseract_GetText(const area: TBox; filter: TTesseractFilter; Whitelist: String = TESS_WHITELIST_NONE): string; overload;
    begin
      result := Tesseract_GetText(area.x1, area.y1, area.x2, area.y2, filter, Whitelist);
    end;
    
    // keep old versions working
    // deprecated use the TTesseractFilter presets
    const
      FILTER_SMALL_CHARS: TTesseractFilter = TESS_FILTER_SMALL_CHARS;
      FILTER_NPC_CHAT_CHARS: TTesseractFilter = TESS_FILTER_NPC_CHAT_CHARS;
      FILTER_SMALL_CHARS_2: TTesseractFilter = TESS_FILTER_SMALL_CHARS_2;
    
    // deprecated use Tesseract_GetText().
    function tesseractGetText(const searchBox: tbox; filterMethod: TTesseractFilter): string;
    begin
      result := Tesseract_GetText(searchBox, filterMethod);
    end;
    
    // deprecated use Tesseract_GetText().
    function tesseractGetText(const x1, y1, x2, y2: integer; filterMethod: TTesseractFilter; config: string = ''): string; overload;
    begin
      result := Tesseract_GetText(x1, y1, x2, y2, filterMethod, config);
    end;
    
    {$f+}
    the tab opened up when you changed it to false? or the tab comes up every time it crashes? I have a feeling the crashes might be related to text finding, so just let me know what the debug box says before the crash comes up.

  10. #35
    Join Date
    Apr 2015
    Posts
    19
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    Quote Originally Posted by fady View Post
    the tab opened up when you changed it to false? or the tab comes up every time it crashes? I have a feeling the crashes might be related to text finding, so just let me know what the debug box says before the crash comes up.
    No, this pops up after crash.

    stupid question but where is this debug box located?

  11. #36
    Join Date
    Feb 2015
    Posts
    422
    Mentioned
    41 Post(s)
    Quoted
    226 Post(s)

    Default

    Quote Originally Posted by Deluu11 View Post
    No, this pops up after crash.

    stupid question but where is this debug box located?
    The white box under the script that contains the proggy

  12. #37
    Join Date
    Apr 2015
    Posts
    19
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    I already posted what pops up, but this doesn't happen always. Often it does couple hundred alches and then just sits there, doing nothing and my player gets afk logged.

    Code:
    he following bitmaps were not freed: [Minimap Mask, Gametab Bitmap[0], Gametab Bitmap[1], Gametab Bitmap[2], Gametab Bitmap[3], Gametab Bitmap[4], Gametab Bitmap[5], Gametab Bitmap[6], Gametab Bitmap[7], Gametab Bitmap[8], Gametab Bitmap[9], Gametab Bitmap[10], Gametab Bitmap[11], Gametab Bitmap[12], Gametab Bitmap[13], 15]
    File[C:\Simba\Includes\SRL-6/logs/SRL log (18-04-15 at 10.26.23 PM).txt] has not been freed in the script, freeing it now.

  13. #38
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Quote Originally Posted by Deluu11 View Post
    I already posted what pops up, but this doesn't happen always. Often it does couple hundred alches and then just sits there, doing nothing and my player gets afk logged.

    Code:
    he following bitmaps were not freed: [Minimap Mask, Gametab Bitmap[0], Gametab Bitmap[1], Gametab Bitmap[2], Gametab Bitmap[3], Gametab Bitmap[4], Gametab Bitmap[5], Gametab Bitmap[6], Gametab Bitmap[7], Gametab Bitmap[8], Gametab Bitmap[9], Gametab Bitmap[10], Gametab Bitmap[11], Gametab Bitmap[12], Gametab Bitmap[13], 15]
    File[C:\Simba\Includes\SRL-6/logs/SRL log (18-04-15 at 10.26.23 PM).txt] has not been freed in the script, freeing it now.
    What's the actual error? It's got to throw an error (probably above what you just posted in the debug) before opening the new tab and stopping the script.

    It's probably a access-violation or other runtime error, we need the error to diagnose
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Badâ„¢ before everyone gets laser pistols

  14. #39
    Join Date
    Feb 2015
    Posts
    422
    Mentioned
    41 Post(s)
    Quoted
    226 Post(s)

    Default

    Quote Originally Posted by Deluu11 View Post
    I already posted what pops up, but this doesn't happen always. Often it does couple hundred alches and then just sits there, doing nothing and my player gets afk logged.

    Code:
    he following bitmaps were not freed: [Minimap Mask, Gametab Bitmap[0], Gametab Bitmap[1], Gametab Bitmap[2], Gametab Bitmap[3], Gametab Bitmap[4], Gametab Bitmap[5], Gametab Bitmap[6], Gametab Bitmap[7], Gametab Bitmap[8], Gametab Bitmap[9], Gametab Bitmap[10], Gametab Bitmap[11], Gametab Bitmap[12], Gametab Bitmap[13], 15]
    File[C:\Simba\Includes\SRL-6/logs/SRL log (18-04-15 at 10.26.23 PM).txt] has not been freed in the script, freeing it now.
    Oh! I didn't see your edit! Can you go a little earlier and show me some more of what it says, with Line 380 set to false! I want to know at which part in specific it crashes so I can make a work around for you.

  15. #40
    Join Date
    Apr 2015
    Posts
    19
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    Quote Originally Posted by fady View Post
    Oh! I didn't see your edit! Can you go a little earlier and show me some more of what it says, with Line 380 set to false! I want to know at which part in specific it crashes so I can make a work around for you.
    Okay, I'll try to get it to you. As I said, it sometimes crashes, sometimes just pauses and I've to close it myself.

    The same thing came up I already posted earlier. It doesn't show anything earlier besides proggy.

    Code:
    [00:00:06]: -- setupSRL()
    [00:00:06]: ---- Setting up SRL...
    [00:00:06]: ---- attempting to spawn smart, attempt #: 1
    [00:00:06]: ---- initSmart():
    [00:00:06]: ------ Attempting to pair to a previously spawned client
    [00:00:06]: ------ smartPairToExistingClient():
    [00:00:06]: -------- Found no free clients to pair to
    [00:00:06]: ------ smartPairToExistingClient(): result = false
    [00:00:06]: ------ Attempting to spawn a new client..
    [00:00:06]: ------ smartCreateClient():
    [00:00:06]: ---------- smartGetParameters(): Succesfully grabbed paramters
    [00:00:06]: -------- getJavaPath():
    [00:00:06]: ---------- Attempting to search for your Java path
    [00:00:06]: ---------- Found your java path @ C:\Program Files\Java\jre7\bin\java.exe
    [00:00:06]: -------- getJavaPath()
    [00:00:06]: -------- Using parameters [http://world10.runescape.com/, f4671030992258899940]
    [00:00:06]: -------- Using plugins "OpenGL32.dll,d3d9.dll"
    [00:00:15]: -------- Succesfully spawned a client, attempting to target
    [00:00:15]: ---------- smartSetAsTarget(): Succesfully set SMART[1768] as Simba's target
    [00:00:15]: ------ smartCreateClient(): result = true
    [00:00:15]: ------ Succesfully initialized via spawning a new client
    [00:00:15]: ---- initSmart()
    [00:00:15]: ---- Waiting up to 5 minutes for RS to load...
    [00:00:25]: ------ __setInputBoxes(): Set username and password boxes
    [00:00:25]: ---- Client is ready.
    [00:00:25]: ---- Setup SRL in 19 Seconds
    [00:00:25]: -- setupSRL(): True
    [00:00:25]: -- TPlayer.login()
    [00:00:25]: ---- TPlayer.loginToLobby()
    [00:00:25]: ------ Attempt 1: CENSOREDACCOUNT--------@XXX.Com ()
    [00:00:25]: -------- Entering username...
    [00:00:33]: -------- Entering password...
    [00:00:38]: -------- Saving screenshot: IP_address.png
    [00:00:38]: ---- TPlayer.loginToLobby(): True
    [00:00:38]: ---- TRSLobby.getCurrentTab(): Current tab is 0
    [00:00:38]: ---- TRSLobby.quickSelectWorld(): Found worlds [XX, X, XX]
    [00:00:39]: ---- TRSLobby.quickSelectWorld(): Clicked world XX. [Index 1]
    [00:00:50]: ------ TRSActionBar.__findButton(): Found the actionbar button @ {X = 566, Y = 315}
    [00:00:50]: ------ TRSActionBar.__find(): result = true (height = 75)
    [00:00:50]: ------ Dynamic interfaces have been set.
    [00:00:50]: -- TPlayer.login(): True
    [00:00:50]: -- exitTreasure()
    [00:00:50]: -- exitTreasure(): result = False
    [00:00:55]: ---- TRSGameTab.__initTabs(): Setup gametab properties
    [00:00:57]: -- isMouseOverText()
    [00:00:57]: ---- Current mouse-over text: "Wield Dragon bolts (e) 0gggBB i TXFB i IBvBI i zg"
    [00:00:57]: ---- Current mouse-over text: "Wield Dragon bolts (e) 0gggBB i TXFB i IBvBI i zg"
    [00:00:57]: ---- Current mouse-over text: "Wield Dragon bolts (e) 0gggBB i TXFB i IBvBI i zg"
    [00:00:57]: ---- Current mouse-over text: "Wield Dragon bolts (e) 0gggBB i TXFB i IBvBI i zg"
    [00:00:57]: ---- Current mouse-over text: "Wield Dragon bolts (e) 0gggBB i TXFB i IBvBI i zg"
    [00:00:57]: ---- Current mouse-over text: "Wield Dragon bolts (e) 0gggBB i TXFB i IBvBI i zg"
    [00:00:57]: -- isMouseOverText(): False
    [00:04:54]: -- TRSGameTabs.openTab(1)
    [00:04:54]: ---- Tab is already visible, bringing to front
    [00:04:54]: -- TRSGameTabs.openTab(1): = True
    [00:04:59]: -- TRSGameTabs.openTab(2)
    [00:04:59]: ---- Tab is already visible, bringing to front
    [00:05:00]: -- TRSGameTabs.openTab(2): = True
    [00:05:03]: -- TRSGameTabs.openTab(2)
    [00:05:03]: ---- Tab is already open, exiting
    [00:05:03]: -- TRSGameTabs.openTab(2): = True
    [00:18:12]: -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    Last edited by Deluu11; 04-19-2015 at 07:13 AM.

  16. #41
    Join Date
    Apr 2015
    Posts
    19
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    Maybe this can help you out as well...
    http://gyazo.com/eb961942ad014a26ea57c218c5db2070

  17. #42
    Join Date
    Feb 2015
    Posts
    422
    Mentioned
    41 Post(s)
    Quoted
    226 Post(s)

    Default

    Quote Originally Posted by Deluu11 View Post
    Maybe this can help you out as well...
    http://gyazo.com/eb961942ad014a26ea57c218c5db2070
    Sorry for not responding earlier, My laptop just wouldnt turn on and gave me a hard time trying to reinstall windows. Your issue seems to be with either the SRL include or with your graphics settings. Because it seems to me like its crashing at getting the item amounts which is purely an SRL function. You can try version 1.2 it might be better, but it does not have a profit calculator. Sorry for the late response

  18. #43
    Join Date
    Jun 2015
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    It always closes the client for me after using the script for a few minutes. Doesn't happen with any other scripts.

  19. #44
    Join Date
    Feb 2015
    Posts
    422
    Mentioned
    41 Post(s)
    Quoted
    226 Post(s)

    Default

    Hmm! Can you go down to line 381 in the script and change

    Simba Code:
    disableSRLDebug := true;

    //TO

    disableSRLDebug := false;

    Then run the script again, and post the debug text from the script. This will help me diagnose what is going on.

  20. #45
    Join Date
    Jun 2015
    Location
    New Zealand
    Posts
    322
    Mentioned
    2 Post(s)
    Quoted
    131 Post(s)

    Default

    When trying to alch bolts it tries to weild them...how to get around this? Thanks

  21. #46
    Join Date
    Feb 2015
    Posts
    422
    Mentioned
    41 Post(s)
    Quoted
    226 Post(s)

    Default

    Quote Originally Posted by kiwikiwi View Post
    When trying to alch bolts it tries to weild them...how to get around this? Thanks
    There is currently no way to get around this issue, using the current version of the script. I might update it over the weekend!

  22. #47
    Join Date
    Mar 2014
    Location
    East Coast, USA
    Posts
    291
    Mentioned
    10 Post(s)
    Quoted
    148 Post(s)

    Default

    @fady; So I got this issue..

    Simba Code:
    Items Left to go: 79
      Alchs done: 567    Done/H: 1124
      XP Gained: 36855    XP/H: 73060
      Profit: 411642    Profit/H: 816301
      Time Running: 30 Minutes and 15 Seconds
      We Have Done: 13 Antibans, and Taken: 0 Breaks
      Next Break in: 3h 23m 14s
    -- isMouseOverText()
    ---- Current mouse-over text: ""
    ---- Current mouse-over text: ""
    ---- Current mouse-over text: ""
    ---- Current mouse-over text: ""
    ---- Current mouse-over text: ""
    ---- Current mouse-over text: ""
    ---- Current mouse-over text: ""
    -- isMouseOverText(): False
    -- isMouseOverText()
    ---- Current mouse-over text: "AFFgrgFX i tt#z g$XIB i 8IgsNInB TXFB i MBIBB gFBB4 i gFBFIgI A$$gFK i @IBMMBr IBvBI i eg"
    ---- Current mouse-over text: "AFFgrgFX i tt#z g$XIB i 8IgsNInB TXFB i MBIBB gFBB4 i gFBFIgI A$$gFK i @IBMMBr IBvBI i eg"
    ---- Current mouse-over text: "AFFgrgFX i tt#z g$XIB i 8IgsNInB TXFB i MBIBB gFBB4 i gFBFIgI A$$gFK i @IBMMBr IBvBI i eg"
    ---- Current mouse-over text: "AFFgrgFX i tt#z g$XIB i 8IgsNInB TXFB i MBIBB gFBB4 i gFBFIgI A$$gFK i @IBMMBr IBvBI i eg"
    ---- Current mouse-over text: "AFFgrgFX i tt#z g$XIB i 8IgsNInB TXFB i MBIBB gFBB4 i gFBFIgI A$$gFK i @IBMMBr IBvBI i eg"
    -- isMouseOverText(): False
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- Succesfully freed SMART[6936]
    -- Freeing gametabs bitmaps...
    Successfully executed.

  23. #48
    Join Date
    Mar 2014
    Location
    East Coast, USA
    Posts
    291
    Mentioned
    10 Post(s)
    Quoted
    148 Post(s)

    Default

    @fady; So I got this issue..

    Simba Code:
    Items Left to go: 79
      Alchs done: 567    Done/H: 1124
      XP Gained: 36855    XP/H: 73060
      Profit: 411642    Profit/H: 816301
      Time Running: 30 Minutes and 15 Seconds
      We Have Done: 13 Antibans, and Taken: 0 Breaks
      Next Break in: 3h 23m 14s
    -- isMouseOverText()
    ---- Current mouse-over text: ""
    ---- Current mouse-over text: ""
    ---- Current mouse-over text: ""
    ---- Current mouse-over text: ""
    ---- Current mouse-over text: ""
    ---- Current mouse-over text: ""
    ---- Current mouse-over text: ""
    -- isMouseOverText(): False
    -- isMouseOverText()
    ---- Current mouse-over text: "AFFgrgFX i tt#z g$XIB i 8IgsNInB TXFB i MBIBB gFBB4 i gFBFIgI A$$gFK i @IBMMBr IBvBI i eg"
    ---- Current mouse-over text: "AFFgrgFX i tt#z g$XIB i 8IgsNInB TXFB i MBIBB gFBB4 i gFBFIgI A$$gFK i @IBMMBr IBvBI i eg"
    ---- Current mouse-over text: "AFFgrgFX i tt#z g$XIB i 8IgsNInB TXFB i MBIBB gFBB4 i gFBFIgI A$$gFK i @IBMMBr IBvBI i eg"
    ---- Current mouse-over text: "AFFgrgFX i tt#z g$XIB i 8IgsNInB TXFB i MBIBB gFBB4 i gFBFIgI A$$gFK i @IBMMBr IBvBI i eg"
    ---- Current mouse-over text: "AFFgrgFX i tt#z g$XIB i 8IgsNInB TXFB i MBIBB gFBB4 i gFBFIgI A$$gFK i @IBMMBr IBvBI i eg"
    -- isMouseOverText(): False
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- Succesfully freed SMART[6936]
    -- Freeing gametabs bitmaps...
    Successfully executed.

    EDIT: Also, it alched my d axe and one nature rune, haha. Those I am not worried about, but they were in slot 27 and 28.

  24. #49
    Join Date
    Feb 2015
    Posts
    422
    Mentioned
    41 Post(s)
    Quoted
    226 Post(s)

    Default

    Quote Originally Posted by Grimxxdeath223 View Post
    @fady; So I got this issue..

    Simba Code:
    Items Left to go: 79
      Alchs done: 567    Done/H: 1124
      XP Gained: 36855    XP/H: 73060
      Profit: 411642    Profit/H: 816301
      Time Running: 30 Minutes and 15 Seconds
      We Have Done: 13 Antibans, and Taken: 0 Breaks
      Next Break in: 3h 23m 14s
    -- isMouseOverText()
    ---- Current mouse-over text: ""
    ---- Current mouse-over text: ""
    ---- Current mouse-over text: ""
    ---- Current mouse-over text: ""
    ---- Current mouse-over text: ""
    ---- Current mouse-over text: ""
    ---- Current mouse-over text: ""
    -- isMouseOverText(): False
    -- isMouseOverText()
    ---- Current mouse-over text: "AFFgrgFX i tt#z g$XIB i 8IgsNInB TXFB i MBIBB gFBB4 i gFBFIgI A$$gFK i @IBMMBr IBvBI i eg"
    ---- Current mouse-over text: "AFFgrgFX i tt#z g$XIB i 8IgsNInB TXFB i MBIBB gFBB4 i gFBFIgI A$$gFK i @IBMMBr IBvBI i eg"
    ---- Current mouse-over text: "AFFgrgFX i tt#z g$XIB i 8IgsNInB TXFB i MBIBB gFBB4 i gFBFIgI A$$gFK i @IBMMBr IBvBI i eg"
    ---- Current mouse-over text: "AFFgrgFX i tt#z g$XIB i 8IgsNInB TXFB i MBIBB gFBB4 i gFBFIgI A$$gFK i @IBMMBr IBvBI i eg"
    ---- Current mouse-over text: "AFFgrgFX i tt#z g$XIB i 8IgsNInB TXFB i MBIBB gFBB4 i gFBFIgI A$$gFK i @IBMMBr IBvBI i eg"
    -- isMouseOverText(): False
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- WARNING: getItemAmount(): Didn'
    t find any text color, result = -1
    -- WARNING: getItemAmount(): Didn't find any text color, result = -1
    -- Succesfully freed SMART[6936]
    -- Freeing gametabs bitmaps...
    Successfully executed.

    EDIT: Also, it alched my d axe and one nature rune, haha. Those I am not worried about, but they were in slot 27 and 28.
    Oh Wow!! that is strange, it should always stop at item slot 26!! Did it miss any items? What items were you alching? it seems like it wasn't detecting the item name or the item amount!

  25. #50
    Join Date
    Mar 2014
    Location
    East Coast, USA
    Posts
    291
    Mentioned
    10 Post(s)
    Quoted
    148 Post(s)

    Default

    Quote Originally Posted by fady View Post
    Oh Wow!! that is strange, it should always stop at item slot 26!! Did it miss any items? What items were you alching? it seems like it wasn't detecting the item name or the item amount!
    I only had roughly 688 dragonstone bracelets in slot 1 of my bag. It was going great for the first few hundred and then I saw it had stopped and I had 1 bracelet left and no more nature runes (and I know I bought exactly enough for the alch).

Page 2 of 3 FirstFirst 123 LastLast

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
  •