Changing chat icon?Solved
Hello,

Great plugin. Is there some way to change the icon for this spesific plugin? Something in the line of 

"Chat Icon (SteamID)": 7878787878787,

Or

Replacing something such as
PrintToChat(constructMsg()); with Server.Broadcast(constructMsg(), 123456789);

Appreciate replies!
In response to elli ():
Hello,

Great plugin. Is there some way to change the icon for this spesific plugin? Somet...
Add this little bit of code somewhere in Helper Methods
private void Message(BasePlayer player, string key) => Player.Message(player, GetMsg(key, player), 123456789);
then you gotta replace all SendReply methods with Message for example if it's SendReply (player, GetMsg ("Denied: Generic", player)); then replace it with
Message(player, "Denied: Generic");
In response to Tricky ():
Add this little bit of code somewhere in Helper Methods
private void Message(BasePlayer player,...
I am no coder - so could you point me in the right direction (file/caption) of "helper methods" ? 
In response to elli ():
I am no coder - so could you point me in the right direction (file/caption) of "helper methods" ? 
http://prntscr.com/o6z1ko


In the last line like that
In response to Tricky ():
http://prntscr.com/o6z1ko


In the last line like that
How do I for instance, replace a line like this? 

SendReply (player, string.Format (GetMsg ("Cooldown: Seconds", player), timelefts.ToString ()));

SendReply (targetPlayer, GetMsg ("Status: Received", targetPlayer), player.displayName);

SendReply (trade.targetPlayer, GetMsg (msg, trade.targetPlayer));
Locked automatically