Facebook
From Dennis Andersen, 2 Weeks ago, written in C#.
Embed
Download Paste or View Raw
Hits: 148
  1. namespace Oxide.Plugins
  2. {
  3.     [Info("popAnnouncer", "Dennis", "1.0.0")]
  4.     public class popAnnouncer : RustPlugin
  5.     {
  6.         void OnPlayerConnected(BasePlayer player)
  7.         {
  8.             int playerCount = BasePlayer.activePlayerList.Count;
  9.             Server.Broadcast(String.Format("En spiller har joinet. I er nu {0}!", playerCount), steamID);
  10.         }
  11.     }
  12. }