L2JMobius

High Five Small Zaken fix

Invoke · 4 · 6113

Offline Invoke

  • Heir
  • **
    • Posts: 18
CavernOfThePirateCaptain instance


Code: [Select]
// Items
+ private static final int VORPAL_NECKLACE = 15765; // Sealed Vorpal Necklace
private static final int VORPAL_RING = 15763; // Sealed Vorpal Ring
private static final int VORPAL_EARRING = 15764; // Sealed Vorpal Earring

Code: [Select]
if (time <= 300000) // 5 minutes
{
if (getRandomBoolean())
{
- giveItems(playersInside, VORPAL_RING, 1);
+ giveItems(playersInside, VORPAL_NECKLACE, 1);
}
}
else if (time <= 600000) // 10 minutes
{


Online Mobius

  • Distinguished King
  • *****
    • Posts: 16011

Offline Invoke

  • Heir
  • **
    • Posts: 18
Sorry delete it, i was just relying too much on players. Turns out it was correct, and sorry again


Offline Trance

  • Elder
  • ****
    • Posts: 126
Do you do changes to your server based on players' reports? You have to check that info on your own before applying the changes. Players can bring it to your attention but you still have to double check it before.