Hello, how to change PrintToChat to private message only for this guy who will type !vip ?
Thanks.
using Rust;
namespace Oxide.Plugins
{
[Info("vip", "qw", "0.1.0")]
public class vip : RustPlugin
{
void OnPlayerChat(BasePlayer player, string message)
{
if (message.Contains("!vip"))
{
PrintToChat($"<color=red> RUSTICAL VIPS</color>");
PrintToChat("");
PrintToChat("<color=#20EAED> VIP</color>");
PrintToChat("<color=#E32623>Benefits:</color>");
PrintToChat("<color=#51E138>1. Can use SkinBox</color> <color=red>/skin</color>");
PrintToChat("<color=#51E138>2. Can use Sign Image Uploading</color> <color=red>/sil 'url'</color>");
PrintToChat("<color=#51E138>3. Has special prefix </color><color=#20EAED>[VIP]</color><color=#51E138> instead</color> <color=#55aaff>[Guest]</color>");
PrintToChat("<color=#51E138>4. Sleeping bags cooldown is 200s instead 300s, Beds cooldown is 100s instead 150s");
PrintToChat("<color=#51E138>5. Kits contains instruments(music instruments) and another kit for decorative items (screens on discord).");
PrintToChat("<color=#51E138>6. Will increase server life. :)</color>");
PrintToChat("<color=red> PRICES</color>");
PrintToChat("<color=#51E138>Price: 10€ per month</color>");
PrintToChat("<color=#51E138>We support only PayPal for now.</color>");
PrintToChat("<color=#51E138>If you want to buy it, you must contact admin before you buy it, beacause we don't support </color><color=red>Refunds!</color>");
PrintToChat("<color=#51E138>You can contact admin on our discord. My name is </color><color=red>qw();</color>");
}
}
}
}