Thread: Very accurte corp beast drops+rates

Page 1 of 2 12 LastLast
Results 1 to 10 of 16
  1. #1 Very accurte corp beast drops+rates 
    Registered Member shoopdawhoop's Avatar
    Join Date
    Apr 2009
    Posts
    685
    Thanks given
    10
    Thanks received
    19
    Rep Power
    57
    FIRST:
    you need to make sure your server can read drop rates of less than 1% (0.01% to be exact)
    by going to NPCDrops.java and changing the 100's to 10000
    and then open NPCHandler.java and find the MonsterDropItems void
    and change the
    Code:
    double roll = Math.random() * 100;
    to
    Code:
    double roll = Math.random() * 10000;
    ALSO
    i use corp beast as ID 3597 and real Runescape item ID's
    Code:
    npcdrop = 3597	12163	13	3768	//blue charm 37.68%
    npcdrop = 3597	12160	13	2332	//crimson charm 23.32%
    npcdrop = 3597	12158	13	2236	//gold charm 22.36%
    npcdrop = 3597	12159	13	1776	//green charm 17.76%
    npcdrop = 3597	566	250	740	//soul rune 7.4%
    npcdrop = 3597	4091	1	436	//mystic top 4.36%
    npcdrop = 3597	560	300	432	//death rune 4.32%
    npcdrop = 3597	7937	2500	384	//pure ess 3.84%
    npcdrop = 3597	9245	175	376	//onyx bolts (e) 3.76%
    npcdrop = 3597	1754	100	356	//green dhide 3.56%
    npcdrop = 3597	890	750	348	//addy arrows 3.48%
    npcdrop = 3597	384	70	348	//raw sharks 3.48%
    npcdrop = 3597	563	250	344	//law runes 3.44%
    npcdrop = 3597	2362	35	332	//addy bars 3.32%
    npcdrop = 3597	450	125	328	//addy ores 3.28%
    npcdrop = 3597	2	2000	324	//cannonballs 3.24%
    npcdrop = 3597	7061	30	324	//tuna potato 3.24% (sorry but they are noted)
    npcdrop = 3597	564	500	300	//cosmic rune 3%
    npcdrop = 3597	11333	1	300	//regen bracelet 3%
    npcdrop = 3597	4093	1	276	//mystic bottom 2.76%
    npcdrop = 3597	8781	100	260	//teak plank 2.6%
    npcdrop = 3597	5321	24	252	//watermelon seed 2.52%
    npcdrop = 3597	240	120	248	//whiteberries 2.48%
    npcdrop = 3597	452	20	236	//rune ores 2.36%
    npcdrop = 3597	2449	40	216	//super antipot 2.16%
    npcdrop = 3597	1624	3	216	//uncut sapphire 2.16%
    npcdrop = 3597	9738	120	208	//desert goat horn 2.08%
    npcdrop = 3597	1514	75	204	//mage logs 2.04%
    npcdrop = 3597	1405	1	200	//mystic air staff 2%
    npcdrop = 3597	13734	1	200	//plain spirit shield 2%
    npcdrop = 3597	1403	1	188	//mystic water staff 1.88%
    npcdrop = 3597	6214	150	188	//mahogany logs 1.88%
    npcdrop = 3597	1407	1	176	//mystic earth staff 1.76%
    npcdrop = 3597	1622	2	168	//uncut emerald 1.68%
    npcdrop = 3597	995	60000	164	//60k 1.64%
    npcdrop = 3597	1401	1	144	//mystic fire staff 1.44%
    npcdrop = 3597	5295	10	92	//ranarr seed 0.92%
    npcdrop = 3597	13754	1	66	//holy elixir 0.66%
    npcdrop = 3597	1620	2	60	//uncut ruby 0.6%
    npcdrop = 3597	9144	250	52	//runite bolts 0.52%
    npcdrop = 3597	830	5	32	//rune jave 0.32%
    npcdrop = 3597	1617	1	28	//uncut diamond 0.28%
    npcdrop = 3597	985	1	20	//half key 0.2%
    npcdrop = 3597	987	1	20	//other half key 0.2%
    npcdrop = 3597	13752	1	9	//spectral sigil 0.09%
    npcdrop = 3597	13746	1	7	//arcane sigil 0.07%
    npcdrop = 3597	13748	1	4	//divine sigil 0.04%
    npcdrop = 3597	13750	1	2	//elysian sigil 0.02%
    and DON'T say i made these rates up
    i calculated them from a drop log of 2.5k drops
    if(WomanLocation != Kitchen)
    {
    DivideByZero();
    }
    Reply With Quote  
     

  2. #2  
    #extreme

    +Deus Ex's Avatar
    Join Date
    Nov 2009
    Posts
    2,964
    Thanks given
    236
    Thanks received
    214
    Rep Power
    411
    nice one man
    Best regards,
    +Deus Ex
    Reply With Quote  
     

  3. #3  
    Registered Member shoopdawhoop's Avatar
    Join Date
    Apr 2009
    Posts
    685
    Thanks given
    10
    Thanks received
    19
    Rep Power
    57
    Quote Originally Posted by Rare broz View Post
    nice one man
    thanks
    if(WomanLocation != Kitchen)
    {
    DivideByZero();
    }
    Reply With Quote  
     

  4. #4  
    Registered Member 2pro's Avatar
    Join Date
    Aug 2009
    Posts
    774
    Thanks given
    15
    Thanks received
    15
    Rep Power
    66
    very nice!
    Quote Originally Posted by Gator God View Post
    The use of small code like this is what makes a server great.
    Quote Originally Posted by Shoes View Post
    First of all, that's my code. Second of all it is more efficient in many ways, they may not be big but it's the little things that count.
    Quote Originally Posted by Luke132 View Post
    A thread's age doesn't mean anything if the information in the topic is still relevant.
    Why is gravedigging disallowed then?
    Reply With Quote  
     

  5. #5  
    Registered Member shoopdawhoop's Avatar
    Join Date
    Apr 2009
    Posts
    685
    Thanks given
    10
    Thanks received
    19
    Rep Power
    57
    Quote Originally Posted by 2pro View Post
    very nice!
    Thank you
    if this gets another positive comment i'll release zilyana, graardor, kree'arra and TD drops too
    if(WomanLocation != Kitchen)
    {
    DivideByZero();
    }
    Reply With Quote  
     

  6. #6  
    Registered Member
    Join Date
    Jun 2009
    Posts
    34
    Thanks given
    0
    Thanks received
    0
    Rep Power
    1
    Wow man, I see you put a lot of work into this! Rep ++ definitely keep up the good work!
    Reply With Quote  
     

  7. #7  
    Registered Member shoopdawhoop's Avatar
    Join Date
    Apr 2009
    Posts
    685
    Thanks given
    10
    Thanks received
    19
    Rep Power
    57
    Quote Originally Posted by sarranmanuno View Post
    Wow man, I see you put a lot of work into this! Rep ++ definitely keep up the good work!
    time to work on releasing zilyana, graardor, kree'arra and TD drops after im done with my current project
    if(WomanLocation != Kitchen)
    {
    DivideByZero();
    }
    Reply With Quote  
     

  8. #8  
    Banned

    Join Date
    Mar 2008
    Posts
    2,595
    Thanks given
    128
    Thanks received
    191
    Rep Power
    0
    Wrong section?
    Reply With Quote  
     

  9. #9  
    Registered Member shoopdawhoop's Avatar
    Join Date
    Apr 2009
    Posts
    685
    Thanks given
    10
    Thanks received
    19
    Rep Power
    57
    Quote Originally Posted by filth jr View Post
    Wrong section?
    i posted this once before...
    in the snippets section
    i was told to move it here
    if(WomanLocation != Kitchen)
    {
    DivideByZero();
    }
    Reply With Quote  
     

  10. #10  
    Donator

    Join Date
    Jul 2009
    Posts
    1,452
    Thanks given
    27
    Thanks received
    13
    Rep Power
    69
    Very nice! 1% is way too much if your trying to create a rare drop!
    Reply With Quote  
     

Page 1 of 2 12 LastLast

Thread Information
Users Browsing this Thread

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


User Tag List

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