I use Betterchat, but modified. Climbs error and I don't know what to do.Code:bool Api_IsMuted (string id) { Player pl = Find(id); if (pl == null) return false; return pl.mute.Muted; }
Solved Error CS0103: The name `Find' does not exist in the current context
Discussion in 'Rust Development' started by Joonyy, Oct 29, 2016.
-
Code:
bool Api_IsMuted (string id) { Player pl = Player.Find(id); if (pl == null) return false; return pl.mute.Muted; } -
Thanks for your attention and help!
