Bonjour je vous demande a ce qui si connaissent un minimum en codage pour me guider
Mon probleme et que je ne sais pas ou il faut mettre cette fonction et qu'elle est sont utilité :
Merci beaucoup si vous pouvez m'aider et BONNE ANNEE 2015 ^^
Mon probleme et que je ne sais pas ou il faut mettre cette fonction et qu'elle est sont utilité :
- public static void iPrintlnBold(int client, string text)
- {
- SV_GameSendServerCommand(client, "c \"" + text + "\"");
- }
- public static void iPrintln(int client, string text)
- {
- SV_GameSendServerCommand(client, "e \"" + text + "\"");
- }
- public static void SV_GameSendServerCommand(int client, string command)
- {
- Call(0x432BCC, client, 0, command + "\"");
- }
- public static uint Cbuf_AddText = 0x38FBDC;//CbufAddText
- public static void ExecuteCommand(int client, string command)
- {
- Call(Cbuf_AddText, new object[] { 0, command });
- }
- public static void setBlur(Int32 transitionTime)
- {
- SV_GameSendServerCommand(0, "i _ " + transitionTime + " ");
- }
- public static void Kick(int client)
- {
- SV_GameSendServerCommand(client, "v \" Kick" + client + "\"");
- }
- public static void SetVision(int clientIndex, string Vision)
- {
- SV_GameSendServerCommand(clientIndex, "J \"" + Vision + "\" ");
- }
- public static void Playsound(int clientIndex, string SoundName)
- {
- SV_GameSendServerCommand(clientIndex, "h \"" + SoundName + "\" ");
- }
Merci beaucoup si vous pouvez m'aider et BONNE ANNEE 2015 ^^