Code:
public static void LoadPortals()
{
try
{
string[] PortalsC = File.ReadAllLines(System.Windows.Forms.Application.StartupPath + @"\Data\load\portals.ini");
Portals = new ushort[PortalsC.Length][];
for (int i = 0; i < PortalsC.Length; i++)
{
string[] a = PortalsC[i].Split('#');
Portals[i] = new ushort[6] { ushort.Parse(a[1]), ushort.Parse(a[1]), ushort.Parse(a[3]), ushort.Parse(a[4]), ushort.Parse(a[5]), ushort.Parse(a[6]) };
}
}
catch (Exception Exc) { General.WriteLine(Convert.ToString(Exc)); }
}
Code:
1#1002#224#197#1015#1010#710# 2#1002#963#557#1011#11#376# 3#1002#555#964#1020#381#21#






