Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * 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 custom.ClanReputation;
- 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.instancemanager.QuestManager;
- import com.l2jserver.gameserver.network.SystemMessageId;
- import com.l2jserver.gameserver.network.serverpackets.PledgeShowInfoUpdate;
- import com.l2jserver.gameserver.network.serverpackets.SystemMessage;
- /*********************************
- * @author Gladicek *
- * Custom Npc 'Clan Reputation' *
- ********************************/
- public class ClanReputation extends Quest
- {
- // Npc
- private static final int NpcId = 49299; // Custom Npc
- // Item
- private static final int ItemId = 6673; // Festival Adena
- public ClanReputation(int questId, String name, String descr)
- {
- super(questId, name, descr);
- addStartNpc(NpcId);
- addFirstTalkId(NpcId);
- }
- @Override
- public String onFirstTalk(L2Npc npc, L2PcInstance player)
- {
- QuestState st = player.getQuestState(getName());
- if (st == null)
- {
- Quest q = QuestManager.getInstance().getQuest(getName());
- st = q.newQuestState(player);
- }
- return "49299.htm";
- }
- @Override
- public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
- {
- String htmltext = event;
- final QuestState st = player.getQuestState(getName());
- if (event.equalsIgnoreCase("1000"))
- {
- if (st.getQuestItemsCount(ItemId) >= 10 && player.getClan() != null)
- {
- player.getClan().addReputationScore(1000, true);
- player.getClan().broadcastToOnlineMembers(new PledgeShowInfoUpdate(player.getClan()));
- SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.CLAN_ADDED_S1S_POINTS_TO_REPUTATION_SCORE);
- sm.addItemNumber(1000);
- player.sendPacket(sm);
- return "49299.htm";
- }
- else
- return "49299-no.htm";
- }
- else if (event.equalsIgnoreCase("5000"))
- {
- if (st.getQuestItemsCount(ItemId) >= 50 && player.getClan() != null)
- {
- player.getClan().addReputationScore(5000, true);
- player.getClan().broadcastToOnlineMembers(new PledgeShowInfoUpdate(player.getClan()));
- SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.CLAN_ADDED_S1S_POINTS_TO_REPUTATION_SCORE);
- sm.addItemNumber(5000);
- player.sendPacket(sm);
- return "49299.htm";
- }
- else
- return "49299-no.htm";
- }
- return htmltext;
- }
- public static void main(String[] args)
- {
- new ClanReputation(-1, "ClanReputation", "custom");
- _log.info("ClanReputation: Loaded successfully.");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment