Oops... looks like the spiders padded through here
Add products to your cart and remove them from here Lets buypublic enum GuaranteedRewardType extends Enum<GuaranteedRewardType>
Guaranteed Rewards ensure that players receive specific rewards after reaching a set number of crate openings. This feature only works in random rewards mode and is disabled by default.
| Enum Constant and Description |
|---|
DISABLED
Guaranteed rewards are disabled.
|
REPETITIVE
Rewards are issued repetitively.
|
SEQUENTIAL
Rewards are issued sequentially.
|
| Modifier and Type | Method and Description |
|---|---|
static GuaranteedRewardType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GuaranteedRewardType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
getClass, notify, notifyAll, wait, wait, wait
public static final GuaranteedRewardType DISABLED
Rewards are given purely at random without any guarantee based on the number of crate openings.
public static final GuaranteedRewardType SEQUENTIAL
Each guaranteed reward is given once upon reaching a specific number of openings. After a reward is received, the next reward in the sequence becomes the next target.
Example: Reward requires 5 openings. The player receives it only on the 5th opening, then moves on to the next reward in the sequence.
public static final GuaranteedRewardType REPETITIVE
Each guaranteed reward is given repeatedly every X openings. This allows players to receive the reward multiple times at fixed intervals.
Example: Reward requires 5 openings. The player receives the reward on every 5th opening (5th, 10th, 15th, ...).
public static GuaranteedRewardType[] values()
for (GuaranteedRewardType c : GuaranteedRewardType.values()) System.out.println(c);
public static GuaranteedRewardType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null
Oops... looks like the spiders padded through here
Add products to your cart and remove them from here Lets buy