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...
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...
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.
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.
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/
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.
Lmao i just noticed something, dude put this in the dev section
I thought it was in the dev section.
oops. lol.
Move this please.
nice dev but just a things when i have loaded it, i don't have see first screen, writing same colours that background.
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.
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
For example:Code:ConfigurationSettings.AppSettings["SettingField"].ToString();
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
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
so instead of this
I'd put what?Code:MySqlConnection conn; conn = new MySqlConnection(); conn.ConnectionString = "server=localhost; uid=root; password=123456; database=gmtool;";
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.
Although i created a class for the config to make my own code easier to read, but the code above should work fineCode: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());
and lol no i dont
Object reference not set to an instance of an object, Got that error, weird