Example #1
0
 public void TryPlayGoldEff(Units inAttacker, Units inTarget, AddMoneyType inAddType)
 {
     if (inAttacker == null || inTarget == null)
     {
         return;
     }
     if (inTarget.isVisible && inAttacker.isPlayer && inTarget.isMonster && !inTarget.IsMonsterCreep() && inAddType == AddMoneyType.Kill)
     {
         this.PlayGoldEff(inTarget);
     }
 }
Example #2
0
 public void TryJumpGoldFont(Units inAttacker, Units inTarget, AddMoneyType inAddType, int inAddOnMoney)
 {
     if (inAttacker == null || inTarget == null)
     {
         return;
     }
     if ((inTarget.isVisible || !inTarget.isLive) && inAttacker.isPlayer && inAddType == AddMoneyType.Kill)
     {
         inTarget.JumpFont("+" + inAddOnMoney + "g", HUDText.goldColor);
     }
 }
Example #3
0
        public void LogAddMoney(AddMoneyType masterType, AddMoneyType sonType, int userId, int moneys, int SpareMoney)
        {

        }
Example #4
0
 public void LogAddMoney(AddMoneyType masterType, AddMoneyType sonType, int userId, int moneys, int SpareMoney)
 {
 }
Example #5
0
 public void LogAddMoney(AddMoneyType masterType, AddMoneyType sonType, int userId, int moneys, int SpareMoney)
 {
     LogMgr.LogMoneyAdd((LogMoneyType)masterType, (LogMoneyType)sonType, userId, moneys, SpareMoney, 0, 0, 0, 0, "", "", "");
 }