1. I see that the Paper Map uses MapEntity which has:
    Code:
        [NonSerialized]
        public uint[] fogImages = new uint[1];    [NonSerialized]
        public uint[] paintImages = new uint[144];
    So my question is how would I go about manipulating the map? For instance, how would I make the entire map visible and/or draw a circle to indicate something on the map?

    Also, is there a way to dump the RPCMessage that MapEntity -> ImageUpdate receives so that I can figure out what the values are?
     
    Last edited by a moderator: Mar 24, 2016
  2. Calytic

    Calytic Community Admin Community Mod

    fogImages, paintImages are referenced from filestorage. Look at filestorage (like used in SignArtist) to discern how this works.