FlyFF/MapleStory GM Tool

Page 2 of 4 FirstFirst 1234 LastLast
Results 16 to 30 of 52
  1. #16
    It won't fit Supicioso is offline
    MemberRank
    May 2007 Join Date
    LouisianaLocation
    2,385Posts

    Re: FlyFF/MapleStory GM Tool

    Like I said, I'm not done with it. I'm working on an item editor as we speak. There's a lot of items in this game when you actually have to do it all by hand...

  2. #17
    Account Upgraded | Title Enabled! BBim is offline
    MemberRank
    Sep 2008 Join Date
    127.0.0.1Location
    1,110Posts

    Re: FlyFF/MapleStory GM Tool

    Quote Originally Posted by l1ght3r View Post
    Then you didn't read the whole thing,

    1. You don't need the db user or password.

    2. I said I wasn't adding a config option because this isn't for public leecher use

    3. Read the whole post, very slowly and you wouldn't have to ask me what's already stated in the original post.


    Next I'm working on adding an option where a server gives you a choice of tracking everyone who logs into the the GM panel and waht he/she uses, or does with the tool.
    Read you again...theres nowhere like: This tool is to change a player stats, level and such or nothing like this.
    1 - Why I dont need? it dont connect to the database? if it connects I need to know what username and pass you put in the connection string or everyone with different pass/user will get errors, so its impossible to test.
    2 - I saw that, if you will not release it and need people just to test it for you, at least tell your configs, if you will release again, put a config file or anything, maybe even a login screen with some fields to put that.
    3 - like I said, theres nothing telling what this do.

  3. #18
    It won't fit Supicioso is offline
    MemberRank
    May 2007 Join Date
    LouisianaLocation
    2,385Posts

    Re: FlyFF/MapleStory GM Tool

    It's for testing purpose's only, when I do decide to release a working one that everyone will be able to use they will have those options, until then it's connecting only to my db.

    I don't know how to add .ini or config files, but I can add in an option that will allow you to add in custom db strings in like 5 mins or less. If it's that important, just let me know.

  4. #19
    Account Upgraded | Title Enabled! BBim is offline
    MemberRank
    Sep 2008 Join Date
    127.0.0.1Location
    1,110Posts

    Re: FlyFF/MapleStory GM Tool

    Quote Originally Posted by l1ght3r View Post
    It's for testing purpose's only, when I do decide to release a working one that everyone will be able to use they will have those options, until then it's connecting only to my db.

    I don't know how to add .ini or config files, but I can add in an option that will allow you to add in custom db strings in like 5 mins or less. If it's that important, just let me know.
    So, they are connecting to your computer database, is that what its doing?
    For .ini files, put on google "ini <programming language>"...

  5. #20
    Account Upgraded | Title Enabled! chanaz is offline
    MemberRank
    Dec 2007 Join Date
    North CarolinaLocation
    461Posts

    Re: FlyFF/MapleStory GM Tool

    dude ._. why would u release this since we cant effing use it, and u wont tell us what we need to know to be able to. Oh and what items are you talking about? its just as simple as .item

    And http://jachman.wordpress.com/2006/09...iles-in-c-net/

  6. #21
    It won't fit Supicioso is offline
    MemberRank
    May 2007 Join Date
    LouisianaLocation
    2,385Posts

    Re: FlyFF/MapleStory GM Tool

    Not everyone has access to the flyff DB on a private server. This is for GMs who you want to give little but not all access to be able to edit characters.

    Also, what am I not telling you? It should be plain an simple.

    @Chanaz
    I'm not really posting this for everyone to use with their server's YET. I want everything to be working before people want to be able to use it with their own personal server. No one likes an incomplete project.

  7. #22
    Account Upgraded | Title Enabled! chanaz is offline
    MemberRank
    Dec 2007 Join Date
    North CarolinaLocation
    461Posts

    Re: FlyFF/MapleStory GM Tool

    Lmao i just noticed something, dude put this in the dev section

  8. #23
    It won't fit Supicioso is offline
    MemberRank
    May 2007 Join Date
    LouisianaLocation
    2,385Posts

    Re: FlyFF/MapleStory GM Tool

    I thought it was in the dev section.

    oops. lol.

    Move this please.

  9. #24
    Account Upgraded | Title Enabled! ayboangelus is offline
    MemberRank
    Sep 2008 Join Date
    franceLocation
    715Posts

    Re: FlyFF/MapleStory GM Tool

    nice dev but just a things when i have loaded it, i don't have see first screen, writing same colours that background.

  10. #25
    It won't fit Supicioso is offline
    MemberRank
    May 2007 Join Date
    LouisianaLocation
    2,385Posts

    Re: FlyFF/MapleStory GM Tool

    I'm purely no good with creating ini files. I've been reading a few manuals and I've gone through 2 whole manuals on ini files and I still can't seem to get it right. So screw it, I'm just going to add an in-program option that will allow you to change the db.

  11. #26
    Account Upgraded | Title Enabled! Imortal is offline
    MemberRank
    Aug 2006 Join Date
    EverywhereLocation
    293Posts

    Re: FlyFF/MapleStory GM Tool

    With C# you can just use a .config file, thats what i used with mine.
    You must reference System.Configuration, and to access each section in the config file
    Code:
    ConfigurationSettings.AppSettings["SettingField"].ToString();
    For example:
    App.config:
    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <configuration>
      <appSettings>
        <add key="Server" value="localhost" />
        <add key="Database" value="flyff" />
        <add key="Username" value="root" />
        <add key="Password" value="" />
        <add key="Port" value="3306" />
        <add key="ClientSettingsProvider.ServiceUri" value="" />
      </appSettings>
    </configuration>
    Code:
    ConfigurationSettings.AppSettings["Server"].ToString(); -> Returns Localhost
    ConfigurationSettings.AppSettings["Database"].ToString(); -> Returns flyff
    ConfigurationSettings.AppSettings["Username"].ToString(); -> Returns root
    ConfigurationSettings.AppSettings["Password"].ToString(); -> Returns as empty
    ConfigurationSettings.AppSettings["Port"].ToString(); -> Returns 3306

  12. #27
    Apprentice witti91 is offline
    MemberRank
    Sep 2008 Join Date
    10Posts

    Re: FlyFF/MapleStory GM Tool

    can't download it


    Diese Datei ist weder einem Premiumaccount, noch einem Collector's Account zugeordnet und kann deshalb insgesamt nur 10 mal heruntergeladen werden.

    Dieses Limit ist erreicht.

    Um diese Datei herunterladen zu k

  13. #28
    It won't fit Supicioso is offline
    MemberRank
    May 2007 Join Date
    LouisianaLocation
    2,385Posts

    Re: FlyFF/MapleStory GM Tool

    Quote Originally Posted by Imortal View Post
    With C# you can just use a .config file, thats what i used with mine.
    You must reference System.Configuration, and to access each section in the config file
    Code:
    ConfigurationSettings.AppSettings["SettingField"].ToString();
    For example:
    App.config:
    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <configuration>
      <appSettings>
        <add key="Server" value="localhost" />
        <add key="Database" value="flyff" />
        <add key="Username" value="root" />
        <add key="Password" value="" />
        <add key="Port" value="3306" />
        <add key="ClientSettingsProvider.ServiceUri" value="" />
      </appSettings>
    </configuration>
    Code:
    ConfigurationSettings.AppSettings["Server"].ToString(); -> Returns Localhost
    ConfigurationSettings.AppSettings["Database"].ToString(); -> Returns flyff
    ConfigurationSettings.AppSettings["Username"].ToString(); -> Returns root
    ConfigurationSettings.AppSettings["Password"].ToString(); -> Returns as empty
    ConfigurationSettings.AppSettings["Port"].ToString(); -> Returns 3306

    so instead of this

    Code:
    MySqlConnection conn;
    conn = new MySqlConnection();
    conn.ConnectionString = "server=localhost; uid=root; password=123456; database=gmtool;";
    I'd put what?
    I've never dealt with config files before.

    Also imortal do you have msn? I'd rather not spam up the forums if I don't have to.

  14. #29
    Account Upgraded | Title Enabled! Imortal is offline
    MemberRank
    Aug 2006 Join Date
    EverywhereLocation
    293Posts

    Re: FlyFF/MapleStory GM Tool

    Code:
    MySqlConnection conn;
    conn = new MySqlConnection();
    conn.ConnectionString = String.Format("server={0}; uid={1}; password={2}; database={3};", ConfigurationSettings.AppSettings["Server"].ToString(), ConfigurationSettings.AppSettings["Username"].ToString(), ConfigurationSettings.AppSettings["Password"].ToString(), ConfigurationSettings.AppSettings["Database"].ToString());
    Although i created a class for the config to make my own code easier to read, but the code above should work fine

    and lol no i dont

  15. #30
    It won't fit Supicioso is offline
    MemberRank
    May 2007 Join Date
    LouisianaLocation
    2,385Posts

    Re: FlyFF/MapleStory GM Tool

    Object reference not set to an instance of an object, Got that error, weird



Page 2 of 4 FirstFirst 1234 LastLast

Advertisement