Where to find code like PrintToChat?
Hey I'm new on plugins. I just followed API document try to make something. I have a question here. Where can developers find difference between Puts and PrintToChat? Or other code like them. Thanks for help.

object CanMountEntity(BasePlayer player, BaseMountable entity)
{
Puts("CanMountEntity works!");
PrintToChat("CanMountEntity works!");
return null;
Hey!
You can always use some decompilers. Open DLLs and search for the code you need.
Hooks and things such as Puts and PrintToChat are found under our GitHub. A lot can be found via the above method too.
In response to Wulf ():
Hooks and things such as Puts and PrintToChat are found under our GitHub. A lot can be found via the...
Thanks! Can you help me check on this plugin? I want to spawn a recycler and make it use player's rotation. But not working. Recycler always face one diraction.

[ChatCommand("spawnrec")]
private void cmdspawnrec (BasePlayer player, string command, string[] args)
{
var roty = player.GetNetworkRotation().y;
PrintToChat("Y is {0}", roty);

BaseEntity recyclerent = GameManager.server.CreateEntity("assets/bundled/prefabs/static/recycler_static.prefab", player.transform.position, Quaternion.Euler(0, roty, 0), true);
recyclerent.OwnerID = player.userID;
recyclerent.Spawn();
}