Esempio n. 1
0
 public static void InsultPlayer(Player p)
 {
     //check to see if the player being insulted has done anything notable
     if ((p.Goals > GameStats.myTeamScore) && (p.Goals > 3))
     {
         Chat.SendChatMessage(p.Name + " you f*****g ringer");
     }
     else
     {
         Chat.SendChatMessage("f**k you " + p.Name);
     }
 }
Esempio n. 2
0
 public static void ComplimentPlayer(Player p)
 {
     Chat.SendChatMessage("good job " + p.Name);
 }