gamingislove said: That might be their battle AI - I'd recommend checking move AI for detected targets in the battle AI.Umm... Yeah, but this is a tutorial for ORK 3. I'm using ORK 2.
E.g. check this part of the 3D Action RPG tutorials.
public void com1 (string t) {
compressedData = new GZipCompression ().CompressString ( t );
}
public void dec2 () {
decompressedData = new GZipCompression ().DecompressString (compressedData);
DataObject testData = new XMLParser(decompressedData, null).Parse();
}
public void dec2 () {
decompressedData = new GZipCompression ().DecompressString (compressedData2);
testData2 = new XMLParser (decompressedData, null).Parse ();
}
public void dec3 () {
testData = ORK.SaveGame.GetSaveData ();
xmlData = testData.GetDataFile ("filename", false).GetXML ();
compressedData2 = new GZipCompression ().CompressString (xmlData);
}
It looks like you're new here. If you want to get involved, click one of these buttons!