I have some problem

Jianxian

New Member
Trusted Member
Member
Feb 8, 2017
26
4
3
China
1)What command in C# write text to the console on F1
2)What command in C# write text to the chat
3)What command in C# write text between the server and client
Do not Hook
 
Last edited:

Rama

New Member
Trusted Member
Member
Dec 17, 2015
6
0
1
37
Try it
1) Player.SendCommand (Your_text);
2) Player.SendCommand("chat.add " + "Your_chat_text")


It depends on what context you want.
English is not my native language. I use a translator
 

Jianxian

New Member
Trusted Member
Member
Feb 8, 2017
26
4
3
China
Try it
1) Player.SendCommand (Your_text);
2) Player.SendCommand("chat.add " + "Your_chat_text")


It depends on what context you want.
English is not my native language. I use a translator
thanks
 

Pompeyo

Plugin Developer
Plugin Developer
Jan 6, 2018
87
237
33
43
Cuba
Try to write text to the chat:
C#:
Fougerite.Server.GetServer().Broadcast("Text");
To write a message on the console F1, try:
C#:
Debug.Log("Text");