Realized the start event packet after a zoneIn kickevent is weird and malformed, fixed for that usecase. Fixed bug with getting PrivateArea script. Missing area scripts now don't show a message (they were optional). Finished scripting out Limsa opening battle.

This commit is contained in:
Filip Maj 2017-03-19 11:39:21 -04:00
parent 545ce18f1f
commit 77e0639410
3 changed files with 9 additions and 4 deletions

View file

@ -63,7 +63,10 @@ namespace FFXIVClassic_Map_Server.packets.receive.events
binReader.BaseStream.Seek(0x31, SeekOrigin.Begin);
luaParams = LuaUtils.ReadLuaParams(binReader);
if (binReader.PeekChar() == 0x1)
luaParams = new List<LuaParam>();
else
luaParams = LuaUtils.ReadLuaParams(binReader);
}
catch (Exception){
invalidPacket = true;