Examples of restoreBonus()


Examples of l2p.gameserver.model.L2Player.restoreBonus()

                            continue;
                        }
                        client.setLoginName(e.get("account_name") == null ? "OfflineTrader_" + p.getName() : (String) e
                                .get("account_name"));
                        client.OnOfflineTrade();
                        p.restoreBonus();
                        p.spawnMe();
                        p.updateTerritories();
                        p.setOnlineStatus(false);
                        p.setOfflineMode(true);
                        p.setConnected(false);
View Full Code Here

Examples of l2p.gameserver.model.L2Player.restoreBonus()

      {
        e.printStackTrace();
      }
      player.getNetConnection().setBonus(Config.SERVICES_RATE_BONUS_VALUE[i]);
      player.getNetConnection().setBonusExpire(System.currentTimeMillis() / 1000 + Config.SERVICES_RATE_BONUS_DAYS[i] * 24 * 60 * 60);
      player.restoreBonus();
      if(player.getParty() != null)
      {
        player.getParty().recalculatePartyData();
      }
      show(Files.read("data/scripts/services/RateBonusGet.htm", player), player);
View Full Code Here

Examples of l2p.gameserver.model.L2Player.restoreBonus()

    }
    if(Config.SERVICES_NEW_CHARS_RATE_BONUS_DAYS > 0 && activeChar.getNetConnection().getBonus() < Config.SERVICES_RATE_BONUS_VALUE[0])
    {
      activeChar.getNetConnection().setBonus(Config.SERVICES_RATE_BONUS_VALUE[0]);
      activeChar.getNetConnection().setBonusExpire(System.currentTimeMillis() / 1000 + Config.SERVICES_NEW_CHARS_RATE_BONUS_DAYS * 24 * 60 * 60);
      activeChar.restoreBonus();
    }
  }

  public static void notifyFriends(L2Player cha, boolean login)
  {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.