Jump to content

Making a blank sheet of paper into a writeable/drawable "map" (Just opens a lined piece of paper image)


Jae

Recommended Posts

Hello! First time on the forums, and i've dabbled in modding before, but this one's got me stumped.

 

I was inspired by a few mods to make a checklist/blank sheet of my own that I could customize using the in-game Map symbols/writing functionality. I had thought just copying the code over from one of those basic mods and changing the variable for the actual map png would be a simple task, but i've been testing and tweaking and banging my head against this for two hours now with no results except "Their mods work, yours doesn't, solution unclear".

 

To be clear: I have no intention of stealing their content and reposting it as my own. I just want a simple mod for my solo game and I had thought copying their code would work.

 


module Base
{
 
    item Blanklist
    {
      Type                = Normal,
      DisplayName         = Blank List,
      Icon                = Map,
      Weight              = 0.001,
      Map                 = media/ui/LootableMaps/BlankPage.png,
      SurvivalGear        = TRUE,
      WorldStaticModel    = Map,
        CanBeWrite          = true,
    }

    recipe Make a Blank List
    {
       keep Pen,
       SheetPaper2 =1,
       Result:Blanklist,
       Time:90.0,
    }

    recipe Make a Blank List
    {
       keep RedPen,
       SheetPaper2 =1,
       Result:Blanklist,
       Time:90.0,
    }

    recipe Make a Blank List
    {
       keep BluePen,
       SheetPaper2 =1,
       Result:Blanklist,
       Time:90.0,
    }

    recipe Make a Blank List
    {
       keep Pencil,
       SheetPaper2 =1,
       Result:Blanklist,
       Time:90.0,
    }
}

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...