123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281 |
- /*
- * This program is free software: you can redistribute it and/or modify it under
- * the terms of the GNU General Public License as published by the Free Software
- * Foundation, either version 3 of the License, or (at your option) any later
- * version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
- * details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this program. If not, see <http://www.gnu.org/licenses/>.
- */
- package retail.PriestOfBlessing;
- import com.l2jserver.gameserver.model.actor.L2Npc;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.model.quest.Quest;
- import com.l2jserver.gameserver.model.quest.QuestState;
- import com.l2jserver.gameserver.model.quest.State;
- import com.l2jserver.gameserver.network.SystemMessageId;
- import com.l2jserver.gameserver.network.serverpackets.NpcHtmlMessage;
- import com.l2jserver.gameserver.network.serverpackets.SystemMessage;
- import com.l2jserver.gameserver.util.Util;
- import com.l2jserver.util.Rnd;
- /**
- * @author Gnacik
- */
- public class PriestOfBlessing extends Quest
- {
- // Spawn state
- private static boolean _spawned = false;
- // NPC
- private static final int _priest = 32783;
- // Prices
- private static final int _price_voice = 100000;
- //
- private static final int _nevit_voice = 17094;
- //
- private static final int[] _prices_hourglass =
- {
- 4000, 30000, 110000, 310000, 970000, 2160000, 5000000
- };
- //
- private static final int[][] _hourglasses =
- {
- {
- 17095, 17096, 17097, 17098, 17099
- },
- {
- 17100, 17101, 17102, 17103, 17104
- },
- {
- 17105, 17106, 17107, 17108, 17109
- },
- {
- 17110, 17111, 17112, 17113, 17114
- },
- {
- 17115, 17116, 17117, 17118, 17119
- },
- {
- 17120, 17121, 17122, 17123, 17124
- },
- {
- 17125, 17126, 17127, 17128, 17129
- }
- };
- // Spawns
- private static final int[][] _spawns =
- {
- {
- -84139, 243145, -3704, 8473
- },
- {
- -119702, 44557, 360, 33023
- },
- {
- 45413, 48351, -3056, 50020
- },
- {
- 115607, -177945, -896, 38058
- },
- {
- 12086, 16589, -4584, 3355
- },
- {
- -45032, -113561, -192, 32767
- },
- {
- -83112, 150922, -3120, 2280
- },
- {
- -13931, 121938, -2984, 30212
- },
- {
- 87127, -141330, -1336, 49153
- },
- {
- 43520, -47590, -792, 43738
- },
- {
- 148060, -55314, -2728, 40961
- },
- {
- 82801, 149381, -3464, 53707
- },
- {
- 82433, 53285, -1488, 22942
- },
- {
- 147059, 25930, -2008, 56399
- },
- {
- 111171, 221053, -3544, 2058
- },
- {
- 15907, 142901, -2688, 14324
- },
- {
- 116972, 77255, -2688, 41951
- }
- };
-
- @Override
- public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
- {
- String htmltext = event;
- QuestState st = player.getQuestState(getName());
- if (st == null)
- {
- return null;
- }
-
- if (event.equalsIgnoreCase("buy_voice"))
- {
- if (st.getQuestItemsCount(57) >= _price_voice)
- {
- String value = loadGlobalQuestVar(player.getAccountName() + "_voice");
- long _reuse_time = value == "" ? 0 : Long.parseLong(value);
-
- if (System.currentTimeMillis() > _reuse_time)
- {
- st.setState(State.STARTED);
- st.takeItems(57, _price_voice);
- st.giveItems(_nevit_voice, 1);
- saveGlobalQuestVar(player.getAccountName() + "_voice", Long.toString(System.currentTimeMillis() + (20 * 3600000)));
- }
- else
- {
- long remainingTime = (_reuse_time - System.currentTimeMillis()) / 1000;
- int hours = (int) (remainingTime / 3600);
- int minutes = (int) ((remainingTime % 3600) / 60);
- SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.AVAILABLE_AFTER_S1_S2_HOURS_S3_MINUTES);
- sm.addItemName(_nevit_voice);
- sm.addNumber(hours);
- sm.addNumber(minutes);
- player.sendPacket(sm);
- }
- return null;
- }
- else
- {
- htmltext = "32783-adena.htm";
- }
- }
- else if (event.equalsIgnoreCase("buy_hourglass"))
- {
- int _index = getHGIndex(player.getLevel());
- int _price_hourglass = _prices_hourglass[_index];
-
- if (st.getQuestItemsCount(57) >= _price_hourglass)
- {
- String value = loadGlobalQuestVar(player.getAccountName() + "_hg_" + _index);
- long _reuse_time = value == "" ? 0 : Long.parseLong(value);
-
- if (System.currentTimeMillis() > _reuse_time)
- {
- int[] _hg = _hourglasses[_index];
- int _nevit_hourglass = _hg[Rnd.get(0, _hg.length - 1)];
-
- st.setState(State.STARTED);
- st.takeItems(57, _price_hourglass);
- st.giveItems(_nevit_hourglass, 1);
- saveGlobalQuestVar(player.getAccountName() + "_hg_" + _index, Long.toString(System.currentTimeMillis() + (20 * 3600000)));
- }
- else
- {
- long remainingTime = (_reuse_time - System.currentTimeMillis()) / 1000;
- int hours = (int) (remainingTime / 3600);
- int minutes = (int) ((remainingTime % 3600) / 60);
- SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.AVAILABLE_AFTER_S1_S2_HOURS_S3_MINUTES);
- sm.addString("Nevit's Hourglass");
- sm.addNumber(hours);
- sm.addNumber(minutes);
- player.sendPacket(sm);
- }
- return null;
- }
- else
- {
- htmltext = "32783-adena.htm";
- }
- }
- return htmltext;
- }
-
- @Override
- public String onFirstTalk(L2Npc npc, L2PcInstance player)
- {
- QuestState st = player.getQuestState(getName());
- if (st == null)
- {
- st = newQuestState(player);
- }
- final NpcHtmlMessage html = new NpcHtmlMessage(0);
- final String content = getHtm(player.getHtmlPrefix(), "32783.htm");
- html.setHtml(content);
- html.replace("%donate%", Util.formatAdena(_prices_hourglass[getHGIndex(player.getLevel())]));
- player.sendPacket(html);
- return null;
- }
-
- private int getHGIndex(int lvl)
- {
- int index = 0;
- if (lvl < 20)
- {
- index = 0;
- }
- else if (lvl < 40)
- {
- index = 1;
- }
- else if (lvl < 52)
- {
- index = 2;
- }
- else if (lvl < 61)
- {
- index = 3;
- }
- else if (lvl < 76)
- {
- index = 4;
- }
- else if (lvl < 80)
- {
- index = 5;
- }
- else if (lvl < 86)
- {
- index = 6;
- }
- return index;
- }
-
- public PriestOfBlessing(int questId, String name, String descr)
- {
- super(questId, name, descr);
-
- addStartNpc(_priest);
- addFirstTalkId(_priest);
- addTalkId(_priest);
- if (!_spawned)
- {
- for (int[] _spawn : _spawns)
- {
- addSpawn(_priest, _spawn[0], _spawn[1], _spawn[2], _spawn[3], false, 0);
- }
- _spawned = true;
- }
- }
-
- public static void main(String[] args)
- {
- new PriestOfBlessing(-1, "PriestOfBlessing", "retail");
- }
- }
|