mirror of
				https://bitbucket.org/Ioncannon/project-meteor-server.git
				synced 2025-05-20 08:26:59 -04:00 
			
		
		
		
	Got Fade to White 99% scripted out. Got Path Companion data all setup and saving/loading. Fixed the BgKeepouts and they properly show their msgs. Added quests to MarketEntrances. Fixed MarketEntrances. Hooked cutscene book to the Patch Companion you use.
This commit is contained in:
		| @@ -79,7 +79,7 @@ namespace Meteor.Map.packets.send.player | ||||
|         public const ushort OPCODE = 0x01A3; | ||||
|         public const uint PACKET_SIZE = 0x150; | ||||
|  | ||||
|         public SubPacket BuildPacket(uint sourceActorId, string sNpcName, short sNpcActorIdOffset, byte sNpcSkin, byte sNpcPersonality, bool[] completedQuests) | ||||
|         public SubPacket BuildPacket(uint sourceActorId, string sNpcName, byte sNpcSkin, byte sNpcPersonality, short sNpcCoordinate, bool[] completedQuests) | ||||
|         { | ||||
|             byte[] data = new byte[PACKET_SIZE - 0x20]; | ||||
|  | ||||
| @@ -93,9 +93,9 @@ namespace Meteor.Map.packets.send.player | ||||
|                     binWriter.Seek(0x01 ,SeekOrigin.Begin); | ||||
|                     binWriter.Write((Int16)2); | ||||
|                     binWriter.Write((Byte)0); | ||||
|                     binWriter.Write((Int16)sNpcActorIdOffset); | ||||
|                     binWriter.Write((Byte)sNpcSkin); | ||||
|                     binWriter.Write((Int16)sNpcSkin); | ||||
|                     binWriter.Write((Byte)sNpcPersonality); | ||||
|                     binWriter.Write((Byte)sNpcCoordinate); | ||||
|  | ||||
|                     if (binStream.Length <= PACKET_SIZE - 0x20) | ||||
|                         binWriter.Write(binStream); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user