Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh

    What about a hack downloader?

    I am really bored so I think I would made a hack downloader for MPGH...Like you select your favorite game and see which hacks are released for it, then you click a link and download it....? Just saying but to do this, I need the help of sum MPGH minions to keep me updated about the latest releases for each game.....

  2. #2
    heya:D's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    75
    Reputation
    11
    Thanks
    3
    Yeah...... How about no.

    I don't think thIs allowed

  3. #3
    Time's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    26,497
    Reputation
    3714
    Thanks
    4,530
    My Mood
    Mellow
    If you do make one make sure it only lets you download after the uploader has been thanked maybe? .

  4. #4
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,112
    My Mood
    Angelic
    Quote Originally Posted by Richard Nixon View Post
    I am really bored so I think I would made a hack downloader for MPGH...Like you select your favorite game and see which hacks are released for it, then you click a link and download it....? Just saying but to do this, I need the help of sum MPGH minions to keep me updated about the latest releases for each game.....

    if Dave would approve. (He will not)
    It would be very easy.

    Step 1:
    Web-Browser Control

    Step 2:
    Looping all the sites Elements.

    Step 3:
    Check the ClassName to get the [Release] Tag

    Step 4:
    Get the link of the thread

    Step 5:
    Get the Download link from the thread when selected.

    Something I made for the Collection Threads: (The Main Function of it)
    Code:
    void Act()
            {
                if (c==1)
                {
                    HtmlElementCollection Doc = webBrowser1.Document.All;
                    foreach (HtmlElement Ele in Doc)
                    {
                        if (Ele.GetAttribute("className") == "prefix understate")
                        {
                            if (Ele.OuterHtml.Contains(textBox1.Text)) // Release Tag
                                Yes = true;
                        }
    
                        if (Ele.GetAttribute("className") == "title" && Yes)
                        {
                            string Temp = Ele.OuterHtml;
                            Temp = Temp.Remove(0, Temp.IndexOf("href") + 6);
                            Temp = Temp.Remove(Temp.IndexOf(".html") + 5);
                            richTextBox1.AppendText("" + Ele.InnerText + "\n");
                            Yes = false;
                        }
                    }
                    label1.Text = "Ready";
                }
            }

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  5. #5
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    Quote Originally Posted by heya:D View Post
    Yeah...... How about no.

    I don't think thIs allowed
    Why it's not allowed? Even if I release the source code too?


    ---------- Post added at 10:39 AM ---------- Previous post was at 10:37 AM ----------

    Quote Originally Posted by Jorndel View Post



    if Dave would approve. (He will not)
    It would be very easy.

    Step 1:
    Web-Browser Control

    Step 2:
    Looping all the sites Elements.

    Step 3:
    Check the ClassName to get the [Release] Tag

    Step 4:
    Get the link of the thread

    Step 5:
    Get the Download link from the thread when selected.

    Something I made for the Collection Threads: (The Main Function of it)
    Code:
    void Act()
            {
                if (c==1)
                {
                    HtmlElementCollection Doc = webBrowser1.Document.All;
                    foreach (HtmlElement Ele in Doc)
                    {
                        if (Ele.GetAttribute("className") == "prefix understate")
                        {
                            if (Ele.OuterHtml.Contains(textBox1.Text)) // Release Tag
                                Yes = true;
                        }
    
                        if (Ele.GetAttribute("className") == "title" && Yes)
                        {
                            string Temp = Ele.OuterHtml;
                            Temp = Temp.Remove(0, Temp.IndexOf("href") + 6);
                            Temp = Temp.Remove(Temp.IndexOf(".html") + 5);
                            richTextBox1.AppendText("" + Ele.InnerText + "\n");
                            Yes = false;
                        }
                    }
                    label1.Text = "Ready";
                }
            }
    You would need the credentials of the user to do that, so it is better (more safe for the users) to re-upload the downloads somewhere else (like a personal FTP server) and then use a cache file to download them.

  6. #6
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,112
    My Mood
    Angelic
    Quote Originally Posted by Richard Nixon View Post


    Why it's not allowed? Even if I release the source code too?


    ---------- Post added at 10:39 AM ---------- Previous post was at 10:37 AM ----------



    You would need the credentials of the user to do that, so it is better (more safe for the users) to re-upload the downloads somewhere else (like a personal FTP server) and then use a cache file to download them.
    Waste of time :|

    One other way, but not sure if I can tell :P (Just some stuff...)
    Anyway, why Dave would not approve this:

    1: Lose of members. (Because they don't have to go to the site)
    2: Less Activity (Because they no longer have to visit us )
    3: We would not let our hacks be easy to leech by using the tool.
    4: We just like to have it on the site

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  7. The Following User Says Thank You to Jorndel For This Useful Post:

    heya:D (07-14-2012)

  8. #7
    heya:D's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    75
    Reputation
    11
    Thanks
    3
    I've tried this but was turned down since it is not allowed
    Dave doesn't allow it

  9. #8
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    Quote Originally Posted by Jorndel View Post


    Waste of time :|

    One other way, but not sure if I can tell :P (Just some stuff...)
    Anyway, why Dave would not approve this:

    1: Lose of members. (Because they don't have to go to the site)
    2: Less Activity (Because they no longer have to visit us )
    3: We would not let our hacks be easy to leech by using the tool.
    4: We just like to have it on the site
    Oh yeah makes sense...:/

  10. The Following User Says Thank You to ♪~ ᕕ(ᐛ)ᕗ For This Useful Post:

    Jorndel (07-14-2012)

  11. #9

  12. #10
    Bernard's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    Purgatory
    Posts
    26,364
    Reputation
    3488
    Thanks
    3,546
    My Mood
    Lurking
    Quote Originally Posted by Adam View Post
    If you do make one make sure it only lets you download after the uploader has been thanked maybe? .
    what if they dont like the hack? yet they still had to give a "thanks"
    Rep. Power: 126

    Minion: 11/28/12-3/15/14

  13. The Following User Says Thank You to Bernard For This Useful Post:

    heya:D (07-14-2012)

  14. #11
    The XXX Devil's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    AWOLnation.org
    Posts
    2,236
    Reputation
    206
    Thanks
    261
    My Mood
    Cold
    And there goes the forum experience .
     
    7xFox
    rabir007 - Cataclypse - Drifts - 3xBananaBoy - 2xjhonwdss
    3xNoShameAlts - 2xClubLife[7] - hunnuke
    3xpantsonfire - blackandyellow17
    MUJJ - the7skulls - wasredskin92 - Unit113
     
    List of successful trades but they got banned later.
    2xcozi94 - BurnRed¤ - rtdt44 - Kelly2580

     
    Gamerusher (Direct scam, just an average noob)
    F10 (Charged back the money)
    SeaNanners (Recovered by owner)
    Hayakuda (Got the money back though)
    d1nam1t (Got the account back though)
    [oG]Brian (Scammed by his brother using his account)

  15. #12
    Time's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    26,497
    Reputation
    3714
    Thanks
    4,530
    My Mood
    Mellow
    Quote Originally Posted by Pikaboom View Post


    what if they dont like the hack? yet they still had to give a "thanks"
    Didn't think of it that way boh5 .

  16. #13
    Amkay's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    Underground...
    Posts
    1,018
    Reputation
    80
    Thanks
    592
    My Mood
    Sneaky
    Quote Originally Posted by Jorndel View Post


    Waste of time :|

    One other way, but not sure if I can tell :P (Just some stuff...)
    Anyway, why Dave would not approve this:

    1: Lose of members. (Because they don't have to go to the site)
    2: Less Activity (Because they no longer have to visit us )
    3: We would not let our hacks be easy to leech by using the tool.
    4: We just like to have it on the site
    you are absolutely right. /nuffsaid


    ---------- Post added at 04:21 PM ---------- Previous post was at 04:20 PM ----------

    Quote Originally Posted by Jorndel View Post


    Waste of time :|

    One other way, but not sure if I can tell :P (Just some stuff...)
    Anyway, why Dave would not approve this:

    1: Lose of members. (Because they don't have to go to the site)
    2: Less Activity (Because they no longer have to visit us )
    3: We would not let our hacks be easy to leech by using the tool.
    4: We just like to have it on the site
    you are absolutely right. /nuffsaid

  17. #14
    Snake's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Dead-end
    Posts
    6,489
    Reputation
    1251
    Thanks
    1,362
    I think its a great idea.
    Need a custom image title? Check out my thread



  18. #15
    Austin's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Great White North
    Posts
    30,484
    Reputation
    6104
    Thanks
    8,326
    My Mood
    Lurking
    So, pretty much our idea. Even though it's kinda inactive.

    MPGH CF | Facebook




    VIP Support // May 2011
    CF Minion // January 2012
    Newsforce // August 2012
    Minion+ // March 2013
    Moderator // August 2014
    Former Staff // January 2015
    General Minion // July 2015
    Publicist // December 2015





Page 1 of 2 12 LastLast

Similar Threads

  1. what about conquer hacks ??
    By omario in forum General
    Replies: 5
    Last Post: 05-08-2011, 08:07 PM
  2. [Help] What about 5th slot hack ?
    By qunqurer in forum WarRock Discussions
    Replies: 1
    Last Post: 06-13-2010, 01:46 AM
  3. Umm what about Texture Hack for the new patch 1.0.175
    By Shai157 in forum Call of Duty Modern Warfare 2 Help
    Replies: 1
    Last Post: 01-14-2010, 08:14 AM
  4. What is bad about gordan hacks?
    By saadfmk in forum Combat Arms Hacks & Cheats
    Replies: 3
    Last Post: 10-17-2009, 04:46 PM
  5. Whats some Working hacks and easy to download?
    By inlovewifyou in forum Combat Arms Hacks & Cheats
    Replies: 6
    Last Post: 09-27-2009, 09:34 PM