Quests rework.

This commit is contained in:
MobiusDev
2016-02-11 21:39:33 +00:00
parent b2cafd8e2e
commit 09976b0ce6
173 changed files with 6416 additions and 4720 deletions

View File

@@ -195,11 +195,11 @@ public final class Q00371_ShrieksOfGhosts extends Quest
if (random < info.getFirstChance())
{
qs.giveItemRandomly(npc, ANCIENT_ASH_URN, 1, 0, 1.0, true);
giveItemRandomly(qs.getPlayer(), npc, ANCIENT_ASH_URN, 1, 0, 1.0, true);
}
else if (random < info.getSecondChance())
{
qs.giveItemRandomly(npc, ANCIENT_PORCELAIN, 1, 0, 1.0, true);
giveItemRandomly(qs.getPlayer(), npc, ANCIENT_PORCELAIN, 1, 0, 1.0, true);
}
return super.onKill(npc, killer, isSummon);
}