Ejemplo n.º 1
0
 private void Taunt()
 {
     if (!hasTaunted)
     {
         // Create a quip
         Guid g = Guid.NewGuid();
         QuipHelper.PlayQuip(ModState.Combat, g.ToString(),
                             this.AmbushTeam, "IED Ambush", Mod.Config.Quips.ExplosiveAmbush, this.timeToTaunt);
         hasTaunted = true;
     }
 }
Ejemplo n.º 2
0
 private void Taunt()
 {
     if (!hasTaunted)
     {
         Mod.Log.Debug?.Write("Taunting player.");
         // Create a quip
         Guid g = Guid.NewGuid();
         QuipHelper.PlayQuip(ModState.Combat, g.ToString(), AttackingActors[0].team,
                             "Infantry Ambush", Mod.Config.Quips.InfantryAmbush, this.timeToTaunt * 3f);
         hasTaunted = true;
     }
 }