Wilderness keys are an addition to wildy slayer, Since alot of people don't know what they are i will make this short topic about it.
There are 6 different wilderness keys i will briefly explain them:
Every key can be used north of the mage arena:
The droprates of the wilderness keys are calculated like this:
Basicly what this does is divide the npc hp by 100, if chance gets higher then 40 max chance is 40.
A Random number generator rolls between 0-200 and if it falls on 40 or lower you'll recieve an Green Key.
Green Key:
Yellow Key:
Orange Key
Red Key:
Purple key:
Blue key:
There are 6 different wilderness keys i will briefly explain them:

Every key can be used north of the mage arena:

The droprates of the wilderness keys are calculated like this:
Code:
int chance = ((hp / 10));
if (chance >= 40)
chance = 40;
if (RandomUtility.getRandom(200) < chance) {
A Random number generator rolls between 0-200 and if it falls on 40 or lower you'll recieve an Green Key.
Green Key:
Code:
int chance = ((hp / 10));
if (chance >= 40)
chance = 40;
if (RandomUtility.getRandom(200) < chance) {
Code:
int chance = ((hp / 30));
if (chance >= 40)
chance = 40;
if (RandomUtility.getRandom(200) < chance) {
Code:
int chance = ((hp / :70);
if (chance >= 30)
chance = 30;
if (RandomUtility.getRandom(200) < chance) {
Code:
int chance = ((hp / 110));
if (chance >= 20)
if (RandomUtility.getRandom(100) < chance) {;
Code:
int chance = ((hp / 200));
if (chance >= 30)
chance = 30
if (RandomUtility.getRandom(200) < chance) {;
Code:
int chance = ((hp / 300));
if (chance >= 15)
chance = 15
if (RandomUtility.getRandom(100) < chance) {;
Last edited: