RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Gold Panning SVN/ 2.0/2.1?

milva

Sorceror
If you have done the edit to SB Miner as mentioned, then you buy the gold pan from any
Npc Miner- to add the Trader [add GoldNuggetTrader
 

Hammerhand

Knight
Its right there, on the first page post..
Code:
Add(new GenericBuyInfo(typeof(GoldPan), 500, 20, 0x9D7, 0));
Add that line into the BuyInfo. This has the Miner stocking 20 at 500 gold each. Just add that line in with the others, save the script & reboot your server.
 

Warmaster

Sorceror
Its my morning for commenting on older posts, but hey, at least this one is from this year. :) Wow, Hammerhand, this is a cool freakin' script!! Very original idea, and exceptionally well implemented. Thanks for sharing this!
 

jamesreg

Sorceror
I have gone everywhere beaches, rivers everywhere and can not get it to work only say where you want to pan for and then nothing
 

milva

Sorceror
So your using the gold pan and clicking right next to the shoreline, in shallow water?
Have you tried brit- what is your fishing skill at?
 

jamesreg

Sorceror
Fishing skill is 120 I have tried all beaches i can find, streams by brit and any other shallow appearing waters i can find Im so in love with the idea of this system I really want it to work bad. I have tried as admin and turning myself into a player nothing. what is the name of shallow water tiles i can add to test real quick
 

jamesreg

Sorceror
I swear I have not moded the program in any way the stream is brit does not work for me eighter I am using the runuo 2.0 repack version
 

Lokai

Knight
Try this in place of your existing water tiles list:

Code:
        private static int[] m_WaterTiles = new int[]
            {
                //Land Tiles:
                0x00A8, 0x00A9,
                0x00AA, 0x00AB,
                0x0136, 0x0137,
               
                //Item IDs:
                0x1797, 0x1798,
                0x1799, 0x179A,
                0x179B, 0x179C,
                0x179D, 0x179E,
                0x179F, 0x17A0,
                0x17A1, 0x17A2,
                0x17A3, 0x17A4,
                0x17A5, 0x17A6,
                0x17A7, 0x17A8,
                0x17A9, 0x17AA,
                0x17AB, 0x17AC,
                0x17AD, 0x17AE,
                0x17AF, 0x17B0,
                0x17B1, 0x17B2,
               
                //Static Item IDs:
                0x5797, 0x5798,
                0x5799, 0x579A,
                0x579B, 0x579C,
                0x579D, 0x579E,
                0x579F, 0x57A0,
                0x57A1, 0x57A2,
                0x57A3, 0x57A4,
                0x57A5, 0x57A6,
                0x57A7, 0x57A8,
                0x57A9, 0x57AA,
                0x57AB, 0x57AC,
                0x57AD, 0x57AE,
                0x57AF, 0x57B0,
                0x57B1, 0x57B2,
            };
 
Top