Results 1 to 11 of 11

Thread: Runecrafting Script - Degraded Giant Pouch

  1. #1
    Join Date
    Mar 2012
    Posts
    426
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default Runecrafting Script - Degraded Giant Pouch

    I am currently working on a Runecrafting script and I am going to implement the use of NPC Contact spell. I am working on getting DTMs of degraded pouches so i can detect when I need to cast the spell. The only problem is, I can't use a giant pouch so I can't get a degraded one. I was hoping someone could use a a giant pouch and get me a picture of it once it gets degraded so I could make a DTM of it. Thanks!

  2. #2
    Join Date
    Dec 2011
    Location
    Behind you...
    Posts
    345
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Your best bet is to check runescape wiki or sites similar, or just google it. I would get you a pic but i dont have one.
    Scripting powerlevel = [||||||||]

  3. #3
    Join Date
    Nov 2011
    Posts
    1,532
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Current activity: Recovering from vacation
    - Nulla pars vitae vacare officio potest -
    SRL membership? Can I buy that?
    Scripts - AGS - SWF - WAR - EMS - W100S-EM
    If you need scripting help, you can pm me. Remember, if you need help you have to ask for it properly though

  4. #4
    Join Date
    Mar 2012
    Posts
    426
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default

    Quote Originally Posted by Er1k View Post
    Yea I saw those pictures too, but I don't think the pictures from there are with the brightness turned all the way up. I have to get the correct middle color because I will have a DTM of the normal pouch with very low tolerance and a DTM of the degraded pouch with very low tolerance. If the normal one is found the carrying on all merry like, but if the degraded one is found then we are headed down a whole different path!

    I made a DTM of the normal medium pouch from that site and tested it in my Runescape client with the low tolerance and it did not find it. Perhaps I messed up, I will try again. Thanks for the help though.

  5. #5
    Join Date
    Mar 2012
    Location
    Color :D
    Posts
    938
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    You can use my cosmic runecrafter DTM. It works pretty well. There are procedures that find the decayed giant pouch and repair with NPC contact too. But I don't recommend copy and paste.

  6. #6
    Join Date
    Dec 2011
    Posts
    392
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Simba Code:
    GiantDeg := BitmapFromString(10, 8, 'meJx1juEKgjAYRcXXiNAQBiOZc7S' +
            'Gk2GskRpjFCJS7/8g3hhIBMFlP3YO936sluwrBaGHgqRJkuccuc/z' +
            'ME0uBOt965zqOqF1pHV79cuypbFWGgPKlYLAtQ2vN/5jw+3xNH0fB' +
            'dCPcFKYO1YCQfllHPFiGtntM9BNoGWFEFriNiYlBHHWkf4IaMA66D' +
            '8BN6xpjDC+');
    Bitmaps work great too :O

  7. #7
    Join Date
    Jan 2009
    Location
    Turlock/LA, California
    Posts
    1,494
    Mentioned
    3 Post(s)
    Quoted
    66 Post(s)

    Default

    Quote Originally Posted by lilcmp1 View Post
    Simba Code:
    GiantDeg := BitmapFromString(10, 8, 'meJx1juEKgjAYRcXXiNAQBiOZc7S' +
            'Gk2GskRpjFCJS7/8g3hhIBMFlP3YO936sluwrBaGHgqRJkuccuc/z' +
            'ME0uBOt965zqOqF1pHV79cuypbFWGgPKlYLAtQ2vN/5jw+3xNH0fB' +
            'dCPcFKYO1YCQfllHPFiGtntM9BNoGWFEFriNiYlBHHWkf4IaMA66D' +
            '8BN6xpjDC+');
    Bitmaps work great too :O
    what about when the icon gets cut off or split? this has been a popular "bug" with inventory/bank items.

  8. #8
    Join Date
    Mar 2012
    Posts
    426
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default

    Quote Originally Posted by CephaXz View Post
    You can use my cosmic runecrafter DTM. It works pretty well. There are procedures that find the decayed giant pouch and repair with NPC contact too. But I don't recommend copy and paste.
    Thanks for the permission. I won't copy and paste. Just need the DTM really.

    Quote Originally Posted by x[Warrior]x3500 View Post
    what about when the icon gets cut off or split? this has been a popular "bug" with inventory/bank items.
    Exactly why I have been holding off on bitmaps for anything bank/inventory related lately!

  9. #9
    Join Date
    Oct 2011
    Location
    UK
    Posts
    1,322
    Mentioned
    2 Post(s)
    Quoted
    1 Post(s)

    Default

    Simba Code:
    DTM[0] := DTMFromString('mggAAAHicY2NgYDjCxMCwC4gPA/F2ID4BxMeB+CVQ7j0QfwDit0D8DoifArG3tyODraUJg5a6CpDHBMesQBKGkQEjDgwBAKipDDM='); //Medium
      DTM[1] := DTMFromString('mggAAAHicY2NgYJjFxMDQBcQLgHghEM8E4glALMjIwCAExNxALAzEYlCsqaYM1MWEgVkZsANGHBgCAPSrBJs=');                 //Large
      DTM[2] := DTMFromString('mbQAAAHicY2VgYNjBxMCwC4j3AvEqIF4ExAKMDAwsQCwCxGJALAjEpoZ6QNVMKJiVARMwYsFgAACZvASF');                     //Giant
    Not sure where I got these from but they are in my RC script

  10. #10
    Join Date
    Feb 2012
    Posts
    224
    Mentioned
    1 Post(s)
    Quoted
    8 Post(s)

    Default

    your best chance to detect ALL degraded pouch is to detect the message u get inbox when a pouch is degraded. its somethin like ' you're pouche as decayed' so do something like
    Simba Code:
    if FindBlackChatMessage('ecayed') then
    begin
    CastNpcSpell
    end;
    thats what i did

  11. #11
    Join Date
    Oct 2011
    Location
    Australia, Vic
    Posts
    1,517
    Mentioned
    2 Post(s)
    Quoted
    120 Post(s)

    Default

    Quote Originally Posted by ogustuce View Post
    your best chance to detect ALL degraded pouch is to detect the message u get inbox when a pouch is degraded. its somethin like ' you're pouche as decayed' so do something like
    Simba Code:
    if FindBlackChatMessage('ecayed') then
    begin
    CastNpcSpell
    end;
    thats what i did
    I'd probably go with this, Only Con is that it would have to be called alot to make sure you don't miss it.

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
  •