Results 1 to 9 of 9
  1. #1
    Bayden1's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Location
    1337
    Posts
    77
    Reputation
    10
    Thanks
    19
    My Mood
    Cheerful

    Need help if possible

    hey guys, im wanting to make a exe tool, anything from a simple UAV/Redboxes/Name Changer for Steam
    no idea how to start it :S only tools ive made was for PS3 not PC







  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 Bayden1 View Post
    hey guys, im wanting to make a exe tool, anything from a simple UAV/Redboxes/Name Changer for Steam
    no idea how to start it :S only tools ive made was for PS3 not PC
    jorndel has a mint tutorial (https://www.mpgh.net/forum/showthread.php?t=455740)
    and here are sone addresses to get you started
    Code:
            int InGame_G_CompassshowEnimies = 0x59EAB18;//offset 0xC
            int InGame_Health = 0x01A62FC4;
            int Fov_Address = 0x059E4EC4;

    EDIT:I havent tested g_compassshowenimies but it should work

    Last edited by Silent; 05-05-2016 at 03:27 AM.
    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. The Following User Says Thank You to Silent For This Useful Post:

    Bayden1 (05-05-2016)

  4. #3
    Bayden1's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Location
    1337
    Posts
    77
    Reputation
    10
    Thanks
    19
    My Mood
    Cheerful
    Quote Originally Posted by eithan1231 View Post


    jorndel has a mint tutorial (https://www.mpgh.net/forum/showthread.php?t=455740)
    and here are sone addresses to get you started
    Code:
            int InGame_G_CompassshowEnimies = 0x59EAB18;//offset 0xC
            int InGame_Health = 0x01A62FC4;
            int Fov_Address = 0x059E4EC4;

    EDIT:I havent tested g_compassshowenimies but it should work

    thanks man!, (p.s love your work used alot of your tools )

    edit : how would you implement something such as something you just listed for example changing the FOV or something

    im using the coding like this so far >>
    if(Process_Handle("iw5mp"));
    {
    WriteInteger(0x1CE1048, int.Parse(textBox1.Text));
    }
    //if i do
    if(Process_Handle("iw5mp"));
    {
    WriteInteger(0x1CE1048); //for example it'll become an error
    }
    that's near enough the only thing i can do i dont know what it means when people say "Float" or how to change the value
    Last edited by Bayden1; 05-05-2016 at 10:16 AM.







  5. #4
    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 Bayden1 View Post


    thanks man!, (p.s love your work used alot of your tools )

    edit : how would you implement something such as something you just listed for example changing the FOV or something

    im using the coding like this so far >>
    if(Process_Handle("iw5mp"));
    {
    WriteInteger(0x1CE1048, int.Parse(textBox1.Text));
    }
    //if i do
    if(Process_Handle("iw5mp"));
    {
    WriteInteger(0x1CE1048); //for example it'll become an error
    }
    that's near enough the only thing i can do i dont know what it means when people say "Float" or how to change the value
    ok so to just write a int just writeintger(0xAddy, valueToWrite);
    so for fov i use a numereticupdown so now to write fov(fov is a float)
    writefloat(FovAddy, (float)NumeriticUpDown.Value);
    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. The Following User Says Thank You to Silent For This Useful Post:

    Bayden1 (05-05-2016)

  7. #5
    Bayden1's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Location
    1337
    Posts
    77
    Reputation
    10
    Thanks
    19
    My Mood
    Cheerful
    Quote Originally Posted by eithan1231 View Post


    ok so to just write a int just writeintger(0xAddy, valueToWrite);
    so for fov i use a numereticupdown so now to write fov(fov is a float)
    writefloat(FovAddy, (float)NumeriticUpDown.Value);
    so written like vv is this the number? like FOV 80 if you put 80 instead of(float)??
    Writefloat(0x59E4EC4, (float)NumeriticUpDown.Value)
    --------------------------------------
    just tried a few things around ^^^^ and i kept getting errors but this is kinda the style i want

    private void button4_Click(object sender, EventArgs e)
    {
    { //wanting to use textbox to change the value so it can be customly set
    Writefloat(0x59E4EC4, (float) int.Parse(textBox4).Value);
    }
    }

    - - - Updated - - -

    i think this looks messy but its all i can do for now XD

    private void button4_Click(object sender, EventArgs e) //!!!When clicking this button for UAV sends me to this vv!!!
    {
    if (Process_Handle("iw5mp")) ;
    {
    WriteInteger(0x59EAB18); //uav
    }
    }


    private void Writefloat(int p1, float p2)
    {
    throw new NotImplementedException();
    }


    private void WriteInteger(int p)
    {
    throw new NotImplementedException(); //!!!and gives me a error here and the tool stops working!!!
    }
    Last edited by Bayden1; 05-05-2016 at 09:21 PM. Reason: update







  8. #6
    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 Bayden1 View Post


    so written like vv is this the number? like FOV 80 if you put 80 instead of(float)??
    Writefloat(0x59E4EC4, (float)NumeriticUpDown.Value)
    --------------------------------------
    just tried a few things around ^^^^ and i kept getting errors but this is kinda the style i want

    private void button4_Click(object sender, EventArgs e)
    {
    { //wanting to use textbox to change the value so it can be customly set
    Writefloat(0x59E4EC4, (float) int.Parse(textBox4).Value);
    }
    }

    - - - Updated - - -

    i think this looks messy but its all i can do for now XD

    private void button4_Click(object sender, EventArgs e) //!!!When clicking this button for UAV sends me to this vv!!!
    {
    if (Process_Handle("iw5mp")) ;
    {
    WriteInteger(0x59EAB18); //uav
    }
    }


    private void Writefloat(int p1, float p2)
    {
    throw new NotImplementedException();
    }


    private void WriteInteger(int p)
    {
    throw new NotImplementedException(); //!!!and gives me a error here and the tool stops working!!!
    }
    With your if(processHandel("iw5mp")); Don't have the; because your checking somthing just do if(processhandel("iw5mp")) writemem.... like that and you shouldent get a error and to write 80 fov do: writefloat(fovaddy, 80); like that
    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



  9. #7
    Bayden1's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Location
    1337
    Posts
    77
    Reputation
    10
    Thanks
    19
    My Mood
    Cheerful
    Quote Originally Posted by eithan1231 View Post


    With your if(processHandel("iw5mp")); Don't have the; because your checking somthing just do if(processhandel("iw5mp")) writemem.... like that and you shouldent get a error and to write 80 fov do: writefloat(fovaddy, 80); like that
    private void button7_Click(object sender, EventArgs e)
    {
    if (Process_Handle("iw5mp"))
    {
    Writefloat(0x59E4EC4, 80); //FOV
    }
    }


    private void Writefloat(int p1, int p2) <<<still creating error>>>
    {
    throw new NotImplementedException();
    }
    }
    }







  10. #8
    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 Bayden1 View Post


    private void button7_Click(object sender, EventArgs e)
    {
    if (Process_Handle("iw5mp"))
    {
    Writefloat(0x59E4EC4, 80); //FOV
    }
    }


    private void Writefloat(int p1, int p2) <<<still creating error>>>
    {
    throw new NotImplementedException();
    }
    }
    }
    My skype is ****** ****** just add me and i will help you mpgh is hard to help people over
    Last edited by Silent; 12-19-2016 at 08:41 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



  11. #9
    Bayden1's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Location
    1337
    Posts
    77
    Reputation
    10
    Thanks
    19
    My Mood
    Cheerful
    Quote Originally Posted by eithan1231 View Post


    My skype is ****** ****** just add me and i will help you mpgh is hard to help people over
    Added
    //2short
    Last edited by Silent; 12-19-2016 at 09:11 PM. Reason: removing my name







Similar Threads

  1. [Solved] CSGO - Need help if possible with trading
    By Wacke031 in forum Counter-Strike 2 Help
    Replies: 4
    Last Post: 07-01-2015, 05:31 PM
  2. Need some help if possible.
    By Rocko17 in forum Member Introduction & Return
    Replies: 0
    Last Post: 10-19-2014, 06:40 AM
  3. Need Help can make possible bot
    By HappyMan20 in forum Realm of the Mad God Discussions
    Replies: 4
    Last Post: 01-07-2014, 01:39 PM
  4. [Solved] NEED HELP SO FAST AS F* POSSIBLE.
    By 2o12 in forum Runescape Help
    Replies: 12
    Last Post: 09-01-2011, 09:54 PM
  5. Possible breakthrough NEED HELP QUICK
    By sendi12 in forum Combat Arms Mod Discussion
    Replies: 9
    Last Post: 02-03-2010, 11:07 PM