Quote:
Originally Posted by Super Aids
Try change it to:
Code:
public double ReadDouble(string Section, string Key)
{
double ret = 0;
string section = "[" + Section + "]";
IniSectionStructure ISS = null;
Sections.TryGetValue(section, out ISS);
if (ISS != null)
{
IniValueStructure IVS = null;
ISS.Variables.TryGetValue(Key, out IVS);
if (IVS != null)
double.TryParse(IVS.Value, out ret);
}
return ret;
}
|
Hmm.. FYI!
I'm not gay, but i freakin' LOVE you!<3
Thanks! :-)
-----------------------------------------------------------
EDIT: Having a problem where other people can't join!
I have to PC's!
PC 1. Hold the server(Where to source is)
PC 2. Use to play on the server
They are on same Hamachi room, and i changed the IP correct..
-----------------------------------------------------------
When i am going to login on PC2, i get: "Server maintenace or network congested. Try again later"
When i am going to login on PC1, it works...
BUT
When i use PC2 as the server, and i try login on PC1, it works
I works to host the server on PC 2 but not PC 1, why not? ;o
I am 100% sure that the ip's are correct
-----------------------------------------------------------
They both use the exact same client.
Anyone have an idea?