/* * 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 . */ package com.l2jserver.gameserver.taskmanager.tasks; import java.sql.Connection; import java.sql.PreparedStatement; import java.util.logging.Level; import java.util.logging.Logger; import com.l2jserver.L2DatabaseFactory; import com.l2jserver.gameserver.taskmanager.Task; import com.l2jserver.gameserver.taskmanager.TaskManager; import com.l2jserver.gameserver.taskmanager.TaskManager.ExecutedTask; import com.l2jserver.gameserver.taskmanager.TaskTypes; /** ** @author Gnacik ** */ public class TaskDailyQuestClean extends Task { private static final Logger _log = Logger.getLogger(TaskDailyQuestClean.class.getName()); private static final String NAME = "daily_quest_clean"; private static final String[] _daily_names = { "463_IMustBeaGenius", "464_Oath", "458_PerfectForm", "461_RumbleInTheBase" }; /** * * @see com.l2jserver.gameserver.taskmanager.Task#getName() */ @Override public String getName() { return NAME; } /** * * @see com.l2jserver.gameserver.taskmanager.Task#onTimeElapsed(com.l2jserver.gameserver.taskmanager.TaskManager.ExecutedTask) */ @Override public void onTimeElapsed(ExecutedTask task) { Connection con = null; try { con = L2DatabaseFactory.getInstance().getConnection(); for(String name : _daily_names) { PreparedStatement statement = con.prepareStatement("DELETE FROM character_quests WHERE name=? AND var='' AND value='Completed';"); statement.setString(1, name); statement.execute(); statement.close(); } } catch (Exception e) { _log.log(Level.SEVERE, "Could not reset daily quests: " + e); } finally { L2DatabaseFactory.close(con); } _log.config("Daily quests cleared"); } /** * * @see com.l2jserver.gameserver.taskmanager.Task#initializate() */ @Override public void initializate() { super.initializate(); TaskManager.addUniqueTask(NAME, TaskTypes.TYPE_GLOBAL_TASK, "1", "06:30:00", ""); } }