DistrictServer.World.DW.RegisterDistrict.RegisterDistrict C# (CSharp) Method

RegisterDistrict() public method

public RegisterDistrict ( Byte type, Byte Id, Byte language, String password, String IP, String Port, String Token ) : System
type Byte
Id Byte
language Byte
password String
IP String
Port String
Token String
return System
        public RegisterDistrict(Byte type, Byte Id, Byte language, String password, String IP, String Port, String Token) : base()
        {
            WriteByte((Byte)OpCodes.WD_REGISTER_DISTRICT);
            WriteByte(type);
            WriteByte(Id);
            WriteByte(language);
            WriteS(password);
            WriteS(IP);
            WriteS(Port);
            WriteS(Token);
        }
    }
RegisterDistrict