Hello all! i have a problem! when the announcements of this event appears all players can see them but is repetable! If 5 players are online 5 annoucments in each player appears...
Thanks in advance!
/*
* 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 net.sf.l2j.gameserver.model.entity;
import java.util.Collection;
import net.sf.l2j.Config;
import net.sf.l2j.gameserver.ThreadPoolManager;
import net.sf.l2j.gameserver.Announcements;
import net.sf.l2j.gameserver.model.L2World;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
/**
* @creado KingBorracho69
*
*/
public class AutoRewarder
{
public static void getInstance()
{
ThreadPoolManager.getInstance().scheduleGeneralAtFixedRate(new Runnable()
{
public void run()
{
AutoReward();
}
}, 0,Config.AUTO_REWARD_DELAY * 1000);
}
public static void AutoReward()
{
Collection<L2PcInstance> pls = L2World.getInstance().getAllPlayers().values();
for (L2PcInstance p: pls)
{
Announcements.announceToAll("Online Time Reward!");
Announcements.announceToAll("Congratulations to all players!");
Announcements.announceToAll("Next reward in 30 minutes!");
p.addItem("Auto Reward Online", Config.AUTO_REWARD_ID, Config.AUTO_REWARD_COUNT, p, true);
}
}
}