Results 1 to 11 of 11

Thread: Making a Estate Agent symbol..

  1. #1
    Join Date
    Jan 2008
    Location
    Mianus [Ye thats right xD]
    Posts
    97
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Making a Estate Agent symbol..

    so.. in my new script I need the symbol of Estate Agent.. wich is that black house icon.. i checked Symbol.Scar and it isnt there.. only Portal: portal (to player owned houses).. so can someone do this.. I tried to make it but of course it failed, it clicked on bankers,trees.. evrything..

  2. #2
    Join Date
    Dec 2007
    Posts
    515
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    it clicked on bankers,trees.. evrything..

    lol
    In the kingdom of the blind, the one-eyed man is king

  3. #3
    Join Date
    Jan 2008
    Location
    Mianus [Ye thats right xD]
    Posts
    97
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by infested999 View Post
    lol
    There was a rule about not saying 1-3 words..

  4. #4
    Join Date
    Mar 2007
    Posts
    103
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i see your problem; minimap stuff can be tricky, and i tend to stay out of that.

    That IS an important symbol which should be added to SRL. The mods should thank you for mentioning it, if they don't have it all ready in the next rev.

    btw, what does this future script do?
    These are my principles. If you don't like them, well... I have others.

    Since brevity is the soul of wit, I will be brief. Auto Correctly.

  5. #5
    Join Date
    Nov 2007
    Location
    Chile
    Posts
    1,901
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Just use :
    SCAR Code:
    if(FindSymbol(x,y,'house'))then


  6. #6
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    SCAR Code:
    program New;
    {.include SRL/SRL.scar}
    var x,y:integer;
    begin
      SetupSRL;
      Wait(2000);
      if(FindSymbol(x,y,'house'))then
      begin
        WriteLn('Woot House!');
        Mouse(x,y, 5,5 ,True);
      end else
        WriteLn('Sorry, Not Found! :(');
    end.


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  7. #7
    Join Date
    Feb 2007
    Location
    Access Violation at 0x00000000
    Posts
    2,865
    Mentioned
    3 Post(s)
    Quoted
    18 Post(s)

    Default

    Else you could have tried to make a BitMap of it?
    Ce ne sont que des gueux


  8. #8
    Join Date
    Jan 2008
    Location
    Mianus [Ye thats right xD]
    Posts
    97
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Theres no symbol for a house.. I think, I dont have Scar on this pc, gota check that up

  9. #9
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    Quote Originally Posted by floor66 View Post
    Else you could have tried to make a BitMap of it?
    FindSymbol(x, y, 'house');

    attempts to find a bitmap of the house symbol.

  10. #10
    Join Date
    Jan 2008
    Location
    Mianus [Ye thats right xD]
    Posts
    97
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Hy71194 View Post
    SCAR Code:
    program New;
    {.include SRL/SRL.scar}
    var x,y:integer;
    begin
      SetupSRL;
      Wait(2000);
      if(FindSymbol(x,y,'house'))then
      begin
        WriteLn('Woot House!');
        Mouse(x,y, 5,5 ,True);
      end else
        WriteLn('Sorry, Not Found! :(');
    end.
    SCAR Code:
    SRL Compiled in 15 msec
    Sorry, Not Found! :(
    Successfully executed

  11. #11
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    I did a StringToPicture for the bitmap's string data of the house symbol, and it seemed like a valid one.


    Note: Is Estate Agent symbol the one with the house in it? Because it could be so that they have their own symbols.

    Any how, if Estate Agents do have the house in the symbol, go into rs to an area that has one, and take a screen shot. Then, go to MSPaint, simpliest to get a bmp, - and zoom to maximum. Then, navigate to where is the symbol in the picture, and take a 15 * 5 selection of it, and press CTRL + C, go to SCAR and PictureToString, then press CTRL + V and ok or whats the button, and then copy the data to Symbol.scar and save.

    Then it should work.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Agent Smith!
    By WT-Fakawi in forum RS3 Outdated / Broken Scripts
    Replies: 79
    Last Post: 11-07-2007, 12:13 AM
  2. clicking the quest symbol then the bank symbol
    By RudeBoiAlex in forum OSR Help
    Replies: 7
    Last Post: 03-22-2007, 11:14 PM

Posting Permissions

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