Ok well im kinda stuck i know how to make this Ini but i dont know how to make this where it will make it all ini i only know how to do it for one here is this in mysql now i dont want to add this but can someone show me how to make all that into Ini?
Quote:
public static void SaveWHPW(Character Charr)
{
try
{
MySqlCommand Command = null;
Command = new MySqlCommand("UPDATE `Characters` SET `WHPW` = '" + Charr.WHPW + "',`WHPWcheck` = '" + Charr.WHPWcheck + "' WHERE `Account` = '" + Charr.MyClient.Account + "'", Connection);
Command.ExecuteNonQuery();
}
catch (Exception Exc) { General.WriteLine(Convert.ToString(Exc)); }
}
|