using System;
public class Program
{
public static void Main()
// Pylon ID List From World File (This Same Array Can Be Used When The World Loads To Upload Pylons XYZ And ID)
string schemdata = "200,3500";
// Get XYZ Data
string[] Pylon = schemdata.Split(',');
int Item = int.Parse(Pylon[0]);
int Stack = int.Parse(Pylon[1]);
// Display Pylon Location
Console.WriteLine("Item: " + Item + " Stack: " + Stack);
}