using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace byteEmu { internal class IncomingPackets { internal const int VersionCheck = 4000; // login shit internal const int SendData = 3326; // send credits //internal const int HomeRoom = 3670; // send home room, if there's a room id above 0, sends user to room internal const int SendMe = 2129; // send your default data internal const int SendCatalogue = 1069; // send catalogue data, only all pages list internal const int SendFriendBar = 979; // send the friend bar, within new release added snowstorm, nothing needed for that. internal const int SendCataloguePage = 3040; // send a catalogue page, with it's content. } }