So I was trying to think of a way to do this using an array, example:
I couldn't think of a way to call it though.
So then I used this method (which most likely is the worst way to do it):
If anyone can show me the best way to do it, that would be great, and something to learn off of.
Thank you
Code:
byte[] iVal = new byte[12] { 5, 10, etc };
So then I used this method (which most likely is the worst way to do it):
Code:
public static void iSave()
{
byte i = 1;
Restart:
while (i <= 12)
{
World.SaveAllChars();
Thread.Sleep(300000);
i++;
}
goto Restart;
}
Thank you