Results 1 to 8 of 8
  1. #1
    Ilja_'s Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    365
    My Mood
    Fine

    Lightbulb Does anyone know how to use the SV_GameSendServerCommand function ?

    Hello guys,

    I wanted to ask if anyone knows here how the function works and how to use ist. The addresses I have already. I know that it is possible with C # or VB.NET. But VB ist better, I am glad if someone can help me and can explain it

  2. #2
    Silent's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    5,070
    Reputation
    2172
    Thanks
    8,474
    My Mood
    Bitchy
    Quote Originally Posted by Ilja_ View Post
    Hello guys,

    I wanted to ask if anyone knows here how the function works and how to use ist. The addresses I have already. I know that it is possible with C # or VB.NET. But VB ist better, I am glad if someone can help me and can explain it
    its the same as cbuf_addtext but you need to have a thing to select client
    Click Here to visit the official MPGH wiki! Keep up with the latest news and information on games and MPGH! To check out pages dedicated to games, see the links below!











    dd/mm/yyyy
    Member - 31/01/2015
    Premium - 12/09/2016
    Call of Duty minion - 05/11/2016 - 05/11/2019
    BattleOn minion - 28/02/2017 - 05/11/2019
    Battlefield minion - 30/05/2017 - 05/11/2019
    Other Semi-Popular First Person Shooter Hacks minion - 21/09/2017 - 17/09/2019
    Publicist - 07/11/2017 - 02/08/2018
    Cock Sucker - 01/12/2017 - Unknown
    Minion+ - 06/03/2018 - 05/11/2019
    Fortnite minion - 08/05/2018 - 05/11/2019
    Head Publicist - 08/10/2018 - 10/01/2020
    Developer Team - 26/10/2019 - 10/01/2020
    Former Staff - 10/01/2020



  3. #3
    Ilja_'s Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    365
    My Mood
    Fine
    I have already known. I know that you can call via RPC various functions with certain parameters, one of them also cbuf_addtext.

  4. #4
    Nitro Gen's Avatar
    Join Date
    Jun 2015
    Gender
    female
    Location
    chair.
    Posts
    34
    Reputation
    10
    Thanks
    177
    Quote Originally Posted by Ilja_ View Post
    I have already known. I know that you can call via RPC various functions with certain parameters, one of them also cbuf_addtext.
    Code:
    typedef void(__cdecl* SendServerCommandT)(int clientNum, int reliable, char* command);
    SendServerCommandT SV_GameSendServerCommand = (SendServerCommandT)gssc_offset;
     
    void Examples(int i)
    {
        SV_GameSendServerCommand(i, 0, "s 0"); //Open the "mute" menu
        SV_GameSendServerCommand(i, 0, "u _ 0 1337"); //Send a headshot splash with 1337 points
        SV_GameSendServerCommand(i, 0, "c \"^1Hello there!\""); //Send a text to his screen
    }
    Credits: Skyfail

    (First result of google tho)
    Last edited by Nitro Gen; 01-28-2016 at 10:18 AM.

  5. #5
    Silent's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    5,070
    Reputation
    2172
    Thanks
    8,474
    My Mood
    Bitchy
    Quote Originally Posted by Nitro Gen View Post
    Code:
    typedef void(__cdecl* SendServerCommandT)(int clientNum, int reliable, char* command);
    SendServerCommandT SV_GameSendServerCommand = (SendServerCommandT)gssc_offset;
     
    void Examples(int i)
    {
        SV_GameSendServerCommand(i, 0, "s 0"); //Open the "mute" menu
        SV_GameSendServerCommand(i, 0, "u _ 0 1337"); //Send a headshot splash with 1337 points
        SV_GameSendServerCommand(i, 0, "c \"^1Hello there!\""); //Send a text to his screen
    }
    Credits: Skyfail

    (First result of google tho)
    bro thats c++ he asked for c# or vb
    @Ilja_add me on skype ****** ****** And i will help you with it
    Last edited by Silent; 12-19-2016 at 08:40 PM.
    Click Here to visit the official MPGH wiki! Keep up with the latest news and information on games and MPGH! To check out pages dedicated to games, see the links below!











    dd/mm/yyyy
    Member - 31/01/2015
    Premium - 12/09/2016
    Call of Duty minion - 05/11/2016 - 05/11/2019
    BattleOn minion - 28/02/2017 - 05/11/2019
    Battlefield minion - 30/05/2017 - 05/11/2019
    Other Semi-Popular First Person Shooter Hacks minion - 21/09/2017 - 17/09/2019
    Publicist - 07/11/2017 - 02/08/2018
    Cock Sucker - 01/12/2017 - Unknown
    Minion+ - 06/03/2018 - 05/11/2019
    Fortnite minion - 08/05/2018 - 05/11/2019
    Head Publicist - 08/10/2018 - 10/01/2020
    Developer Team - 26/10/2019 - 10/01/2020
    Former Staff - 10/01/2020



  6. #6
    Ilja_'s Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    365
    My Mood
    Fine
    @Nitro Gen @eithan1231

    Thanks for your help guys ^^ but I found it how its work a long time ago, I did it with C++

  7. #7
    Silent's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    5,070
    Reputation
    2172
    Thanks
    8,474
    My Mood
    Bitchy
    Quote Originally Posted by Ilja_ View Post
    @Nitro Gen @eithan1231

    Thanks for your help guys ^^ but I found it how its work a long time ago, I did it with C++
    here is a few commands:
    e - iPrintlnBold screen
    f - iPrintlnBold killfeed
    q = Mute (0 - mute , 1 - stop mute)
    n - makes sounds n 1 makes thunder
    I got more but there easy to find so yea
    Click Here to visit the official MPGH wiki! Keep up with the latest news and information on games and MPGH! To check out pages dedicated to games, see the links below!











    dd/mm/yyyy
    Member - 31/01/2015
    Premium - 12/09/2016
    Call of Duty minion - 05/11/2016 - 05/11/2019
    BattleOn minion - 28/02/2017 - 05/11/2019
    Battlefield minion - 30/05/2017 - 05/11/2019
    Other Semi-Popular First Person Shooter Hacks minion - 21/09/2017 - 17/09/2019
    Publicist - 07/11/2017 - 02/08/2018
    Cock Sucker - 01/12/2017 - Unknown
    Minion+ - 06/03/2018 - 05/11/2019
    Fortnite minion - 08/05/2018 - 05/11/2019
    Head Publicist - 08/10/2018 - 10/01/2020
    Developer Team - 26/10/2019 - 10/01/2020
    Former Staff - 10/01/2020



  8. #8
    Ilja_'s Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    365
    My Mood
    Fine
    Quote Originally Posted by eithan1231 View Post
    here is a few commands:
    e - iPrintlnBold screen
    f - iPrintlnBold killfeed
    q = Mute (0 - mute , 1 - stop mute)
    n - makes sounds n 1 makes thunder
    I got more but there easy to find so yea
    Thx bro but I have the most commands already

Similar Threads

  1. [Help Request] Does anyone know how to make the client use 16x16 or 32x32 images for Items?
    By Siphilice in forum Realm of the Mad God Private Servers Help
    Replies: 3
    Last Post: 11-21-2015, 07:22 PM
  2. Does anyone know how to use the back 2 basics hack ?
    By joanmas in forum DayZ Help & Requests
    Replies: 3
    Last Post: 05-19-2014, 07:05 AM
  3. Does anyone know how to use a ps3 remote with crossifre??
    By KilljoyJr in forum CrossFire Discussions
    Replies: 12
    Last Post: 04-29-2010, 06:57 AM
  4. DEOS ANYONE KNOW HOW TO USE THE HS AIMBOT?
    By batboy60 in forum Combat Arms Discussions
    Replies: 5
    Last Post: 09-07-2009, 03:45 AM
  5. Does anyone know how to make the combat arms load faster
    By ChristopherBigWallace in forum Combat Arms Hacks & Cheats
    Replies: 8
    Last Post: 07-03-2009, 09:47 AM