Results 1 to 6 of 6

Thread: Summoning/FindSymbol fix. + Lodestone

  1. #1
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default Summoning/FindSymbol fix. + Lodestone

    Found out the problem for Austintheman, it didn't work because of the old/new summ icons.

    New Summoning Symbol (The one in Taverly) -
    Simba Code:
    newSum := BitmapFromString(11, 10, 'meJyTd/eRc/GEIBlnFyCSdnCSsr' +
            'OXtLb99v6jnIcnIwMDfhSvgQX1Z/q2RtkAGcgKUg25G0PNKn20FjV' +
            'lP793Y9P0FoiCV4/uXju5b1Vvxd2LJ4Hi/2Bgz9IpEAWH1s6DiPSm' +
            'ed48cwiuoNhZAaLgx7cvH9+8AIoATYDLTswJTNRihih4cusKRAFQJ' +
            'UQW6BK4w4AKIILfPn+EG4LsHbgCoHagmnN7NwJ9l28riawAAKGTlqk=');

        if FindBitmapToleranceIn(newSum,x,y,MMX1,MMY1,MMx2,MMY2,5) then
          MMouse(x,y,0,0);

    //5 tolerance is a must


    Lodestone -
    Simba Code:
    Lodestone := BitmapFromString(7, 7, 'meJzb09k0KSgPgvZ0Ni2qzb0yDyRS' +
            'YhkMQUA2UBCIfv/5DWQ72tkBSQh7D1jvw8cPgVwgCdEFIYEiEARUD' +
            'xfcvXX9y/MHgCTcZCAXyICYCWEDzQQA7QVQBA==');



        if FindBitmapToleranceIn(newSum,x,y,MMX1,MMY1,MMx2,MMY2,5) then
          MMouse(x,y,0,0);

    Old Summ symbol -

    Simba Code:
    oldSum := BitmapFromString(6, 6, 'meJxjZGA4QArojLEFIji7wF51UW0u' +
            'EAG5QHZ9fQ0QXdg1fU65N5ALUTx9Qi9QZPfW9QCCJkAn');

        if FindBitmapToleranceIn(oldSum,x,y,MMX1,MMY1,MMx2,MMY2,15) then
          MMouse(x,y,0,0);


  2. #2
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default

    Add this in please?

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

    Default

    In your Lodestone one you mixed up the if.. then functions:

    Simba Code:
    if FindBitmapToleranceIn(Lodestone, x, y, MMX1, MMY1, MMX2, MMY2, 5) then
    // You had newSum instead of Lodestone
    Current Project: Retired

  4. #4
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    Quote Originally Posted by Sin View Post
    Add this in please?
    Sending a pull request will speed things up.

  5. #5
    Join Date
    Sep 2008
    Location
    Not here.
    Posts
    5,422
    Mentioned
    13 Post(s)
    Quoted
    242 Post(s)

    Default

    Simba Code:
    'lodestone':
          begin
            SymbolBitmap := BitmapFromString(7, 7, 'meJzb09k0KSgPgvZ0Ni2qzb0yDyRS' +
            'YhkMQUA2UBCIfv/5DWQ72tkBSQh7D1jvw8cPgVwgCdEFIYEiEARUD' +
            'xfcvXX9y/MHgCTcZCAXyICYCWEDzQQA7QVQBA==');
            result := 13934210;
          end;

  6. #6
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    I've added the lodestone symbol for the next version, but you need to be more specific on the summoning symbol you mean. Right now, there's 'summoning obelisk' and 'summoning shop' in the include. This new one you're talking about, do you mean the Summoning Tutor symbol?

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
  •