Search the Community

Showing results for tags 'scriptrunner'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Official Buildings
    • GM Hall
    • City Hall
    • Game News
    • Public Test Board
  • Back Streets
    • Town Square
    • Community Assistance
    • Village Recruitment Center
    • Suggestions & Ideas
    • The Creative Commons
    • Wood Scraps
  • Northern Freedom Isles
    • Harmony
    • Melody
    • Cadence
    • Northern Freedom Isles Market
  • Southern Freedom Isles
    • Celebration
    • Deliverance
    • Exodus
    • Independence
    • Pristine
    • Release
    • Xanadu
    • Southern Freedom Isles Market
  • Maintenance Buildings
    • Technical Issues
    • Server Bugs
    • Client Bugs
    • Model and Sound Bugs
    • Other Bugs and Issues
    • Wurmpedia / Wiki Maintenance
  • Wurm Unlimited
    • Unlimited Discussion
    • Unlimited Modding
    • Server Listings & Advertisement
    • Technical Issues

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Chaos


Independence


Deliverance


Exodus


Celebration


Xanadu


Release


Pristine


Epic


Cadence


Defiance


Harmony


Melody


Acc1


Acc2


Acc3

Found 1 result

  1. For this mod, because I think ccfp is stupid, I made it so my ccfp values are basically always maxed. Required -Ago's server modloader -You need to have the scriptrunner mod installed and setup as explained on github wiki page: https://github.com/ago1024/WurmServerModLauncher/wiki/Mods-ScriptRunner Install 1. Copy the javaScript code from the code box. 2. Paste that into any simple text editor. 3. Save the file and I named this, "ccfp-maximizer.js". You could use whatever name you want as long as its unique and it ends with ".js". 4. Put it in the directory, "~Wurm Unlimited Dedicated Server\mods\scriptrunner\scripts\onItemTemplatesCreated". If the, "onItemTemplatesCreated" folder doesn't exists, create it. 5. Change the values for carbs, calories, fats or proteins if you want something different. var ItemTemplateFactory = Packages.com.wurmonline.server.items.ItemTemplateFactory; var Logger = Packages.java.util.logging.Logger; var logger = Logger.getLogger("com.joedobo27.scriptRunnerMods.ccfp-maximizer"); function onItemTemplatesCreated() { var templates = ItemTemplateFactory.getInstance().getTemplates(); var maxValue = Packages.java.lang.Short.MAX_VALUE; //*************************************************** // Use maxValue to max and 0 to minimize. var carbs = maxValue; var calories = maxValue; var fats = maxValue; var proteins = maxValue; //*************************************************** for (i = 0; i < templates.length; i++) { templates[i].setNutritionValues(carbs, calories, fats, proteins); } logger.info("CCFP simplified, template count: " + templates.length); } Take note that ccfp values are scaled based on a standard unit size of 1-kg. A pumpkin is 32k and a garlic 1.6k because its .05 or 5% of 1kg. I'm not sure what is going on with fish but weights and sizes for them seems constantly strange.