hey guys can u help me make my vote reward system to no give rewards to offline traders
im using this offline trade system http://www.maxcheaters.com/topic/165825-offline-shop-craft-309-rev/
and my check for dual box is
for(L2PcInstance player : pls)
{
if(player != null)
{
if(checkSingleBox(player))
{
player.addItem("reward", Config.TOPZONE_REWARD_ID, Config.TOPZONE_REWARD_COUNT, player, true);
}
}
}
can u tell me how to fix this?