invertika_game.Game.AccountConnection.updateMapVar C# (CSharp) Method

updateMapVar() private method

private updateMapVar ( MapComposite map, string name, string value ) : void
map MapComposite
name string
value string
return void
        void updateMapVar(MapComposite map, string name, string value)
        {
            MessageOut msg=new MessageOut(Protocol.GAMSG_SET_VAR_MAP);
            msg.writeInt32(map.getID());
            msg.writeString(name);
            msg.writeString(value);
            send(msg);
        }