12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- /*
- * 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 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;
- public class TaskDailySkillReuseClean extends Task
- {
- private static final Logger _log = Logger.getLogger(TaskDailySkillReuseClean.class.getName());
-
- private static final String NAME = "daily_skill_clearn";
-
- private static final int[] _daily_skills = {
- 2510
- };
- /**
- *
- * @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(int skill_id : _daily_skills)
- {
- PreparedStatement statement = con.prepareStatement("DELETE FROM character_skills_save WHERE skill_id=?;");
- statement.setInt(1, skill_id);
- statement.execute();
- statement.close();
- }
- }
- catch (Exception e)
- {
- _log.log(Level.SEVERE, "Could not reset daily skill reuse: " + e);
- }
- finally
- {
- L2DatabaseFactory.close(con);
- }
- _log.config("Daily skill reuse 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", "");
- }
-
- }
|