Maplestory Downloader(Any version)

Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 33
  1. #16
    Xephizion Development Ehab is offline
    MemberRank
    Apr 2008 Join Date
    Somewhere I BelLocation
    1,935Posts

    Re: Maplestory Downloader(Any version)

    vbasic code:
    TextBox maybe?

    process.start("http://nexon's shit here/MSSetupv"+TextBox1.Text )

  2. #17
    Account Upgraded | Title Enabled! X-Tasis is offline
    MemberRank
    Feb 2009 Join Date
    1,192Posts

    Re: Maplestory Downloader(Any version)

    Quote Originally Posted by Ehab View Post
    vbasic code:
    TextBox maybe?

    process.start("http://nexon's shit here/MSSetupv"+TextBox1.Text )
    I used VB for 2 years, I know it's not long code. not even 50 lines with the pre-defined ones that does the IDE.

  3. #18
    Xephizion Development Ehab is offline
    MemberRank
    Apr 2008 Join Date
    Somewhere I BelLocation
    1,935Posts

    Re: Maplestory Downloader(Any version)

    hell no ... it's maximum 5 lines + pre-defined ones that the ide writes

  4. #19
    bleh.... Shawn is offline
    MemberRank
    Oct 2008 Join Date
    Mississauga, CaLocation
    5,904Posts

    Re: Maplestory Downloader(Any version)

    ya know... this kinda upsets me. granted this could probably be done in an easier way, there's no need to flame the guy for it. if this works, it's a good release in my opinion. it's a universal downloader. think of all the servers, where people always ask stupid shit like "where do i get the download" and other moronic shit. think of this forum as well, where people always say "i need a link for a v62 install" or something similar. with this release, all they do is type in the damn version and it gets it. this guy may not be pro, but at least this is useful.

    @ontopic: i still have yet to see anyone else say it's legit, but if it is, good job on this.

  5. #20
    Novice firmanain is offline
    MemberRank
    Dec 2007 Join Date
    4Posts

    Re: Maplestory Downloader(Any version)

    Virus !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    ITS A VIRUS !!!!!!!!!!!!!!!!! TROJEN

  6. #21
    Dead & gone... xQuasar is offline
    MemberRank
    Aug 2008 Join Date
    519Posts

    Re: Maplestory Downloader(Any version)

    lolfail

  7. #22
    Mother effin' clouds SaintsIan is offline
    MemberRank
    Apr 2008 Join Date
    fyrechat.netLocation
    2,809Posts

    Re: Maplestory Downloader(Any version)

    Haha agrees ^^

  8. #23
    Banned BarW54 is offline
    BannedRank
    Aug 2009 Join Date
    In my serverLocation
    40Posts

    Re: Maplestory Downloader(Any version)

    Its not a trojan!
    look at the code:
    Code:
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    
    namespace MaplestoryDownloader
    {
        public partial class Maplestory : Form
        {
            public Maplestory()
            {
                InitializeComponent();
            }
    
            private void textBox1_Click(object sender, EventArgs e)
            {
                if (textBox1.Text == "Version:")
                {
                    textBox1.Clear();
                }
            }
    
            private void button1_Click(object sender, EventArgs e)
            {
                try
                {
                    Form1 f = new Form1();
                    f.webBrowser1.Navigate("http://download3.nexon.net/maplestory/fullversion/MSSetupv" + Convert.ToInt16(textBox1.Text) + ".exe");
                }
                catch (FormatException)
                {
                    MessageBox.Show("The version have to be a number!", "Error", MessageBoxButtons.OK);
                }
            }
        }
    }
    Coded at C#.
    It was with two forms:
    1.Maplestory downloader (Where is the textbox)
    2.Form1 (WebBrowser)
    And when i write 100 lines I exaggerated...
    Copyright BarW45 inc.
    Last edited by BarW54; 12-10-09 at 02:26 PM. Reason: Copyright

  9. #24
    Valued Member Vulpes is offline
    MemberRank
    Sep 2009 Join Date
    Hong KongLocation
    114Posts

    Re: Maplestory Downloader(Any version)

    Lol at what everyone else said.

    @BarW54: Nice attempt at your first release anyway

  10. #25
    Account Upgraded | Title Enabled! ElternalFire is offline
    MemberRank
    Aug 2009 Join Date
    The NetherlandsLocation
    441Posts

    Re: Maplestory Downloader(Any version)

    Nice virus, reported!

  11. #26
    Banned BarW54 is offline
    BannedRank
    Aug 2009 Join Date
    In my serverLocation
    40Posts

    Re: Maplestory Downloader(Any version)

    What? its not virus!!

  12. #27
    Valued Member TeamH is offline
    MemberRank
    Jun 2008 Join Date
    126Posts

    Re: Maplestory Downloader(Any version)

    It looks clean to me O.o no virus from my knowledge.

  13. #28
    Account Upgraded | Title Enabled! xSilv3rbullet is offline
    MemberRank
    Apr 2009 Join Date
    1,226Posts

    Re: Maplestory Downloader(Any version)

    Nice program. (Tries to be supportive)
    But you really don't need the hidden webbrowser.

    That's just idiotic.

    What if the person using your program doesn't have IE?
    They could run into some problems.

    @the people who suggested

    Process.Start(<link>);
    That's stupid too.
    Mozilla Firefox and Google Chrome have the download manager in the browser, unlike IE, whereas its a completely new window.

    So yea, this is a bit of fail, since it's just navigating to the website.

    What you could do is the following:
    Use webclient to connect to the download link, then download the code (which will be the exe code) and save it as an EXE.

    Now, you have a complete download manager.

  14. #29
    Banned BarW54 is offline
    BannedRank
    Aug 2009 Join Date
    In my serverLocation
    40Posts

    Re: Maplestory Downloader(Any version)

    Quote Originally Posted by xSilv3rbullet View Post
    Nice program. (Tries to be supportive)
    But you really don't need the hidden webbrowser.

    That's just idiotic.

    What if the person using your program doesn't have IE?
    They could run into some problems.

    @the people who suggested

    Process.Start(<link>);
    That's stupid too.
    Mozilla Firefox and Google Chrome have the download manager in the browser, unlike IE, whereas its a completely new window.

    So yea, this is a bit of fail, since it's just navigating to the website.

    What you could do is the following:
    Use webclient to connect to the download link, then download the code (which will be the exe code) and save it as an EXE.

    Now, you have a complete download manager.
    Yea... I know.. I dont really know why I did it...
    But i dont want it to much megabites... it good like it is now..
    and its not matter if you have IE or not... this is windows download manager
    Last edited by BarW54; 13-10-09 at 04:43 PM.

  15. #30
    Proficient Member tomer001 is offline
    MemberRank
    Sep 2008 Join Date
    In JEWISH WorldLocation
    150Posts

    Re: Maplestory Downloader(Any version)

    whats the point in it?
    its ms development



Page 2 of 3 FirstFirst 123 LastLast

Advertisement