• Hello game master! Welcome to our growing community. Please take a moment to Register (top right button, see how: Slides).

    If you use Campaign Logger, you can use the same login details - we've linked the app to this forum for secure and easy single sign-on for you.

    And please drop by the Introductions thread and say hi.

Search results

  1. JochenL

    Generator API Access

    Here is a minimal python example to get you started: https://github.com/open-campaign-logger/cl-generator-rest-api-demo import http.client def loadAllGenerators(token): cxn = http.client.HTTPSConnection("generator.campaign-logger.com") cxn.request("GET", "/api2/generators", headers={...
  2. JochenL

    Generator API Access

    This is for Developers! Our generator service has an API: https://generator.campaign-logger.com/swagger/index.html This API is also used by our own UI: https://generator-ui.campaign-logger.com/ You can use it to: retrieve your generators (GET) update them (PATCH or PUT) create new ones (POST)...
  3. JochenL

    Poll: What are you using Campaign Logger for?

    I am curious: Do you use CL and if yes, how do you use it?
  4. JochenL

    Zorgon

    I am using Zorgon now and then, especially when in CL and stumped for ideas. My wife is using (him?) quite often to discuss characters backgrounds, plot details, magic items, monster moves, etc. There is also some general discussion of AI on the Discord server as well as an ask-zorgon channel...
  5. JochenL

    Multi-edit limit?

    None I have coded. Though, your browser or operating system may impose limits.
  6. JochenL

    Math in generators? vars working inconsistently?

    The best way to make sure a variable is defined is to add a "variables" property to a table and assign all variables (that are set by the table) a sensible defaults. (You can see an example of this in the source code I posted above.)
  7. JochenL

    Math in generators? vars working inconsistently?

    Math is a bit tricky as it only calculates variables when assigning to variables, but this should do what you want: { "name": "Example Variable Math", "resultPattern": "{start} holds {var:count} containers of {var:another_value}", "tables": [ { "variables": {...
  8. JochenL

    How to Cancel / unsubscribe Your Campaign Logger Subscription

    Support Link in the original post updated.
  9. JochenL

    How to Cancel / unsubscribe Your Campaign Logger Subscription

    On the start page (https://campaign-community.com/index.php) on the right side, you can access your loot and manage your ThriveCart account: The direct link is: https://johnn.thrivecart.com/updateinfo/ There you can cancel your subscription. You can also file a ticket...
  10. JochenL

    Writing Statblocks

    I expanded the new parser and editor with support for Bonus Actions, Reactions, Legendary Actions, and Lairs: https://saclmd.z1.web.core.windows.net/ (You might to Ctrl+F5 to refresh any cached content)
  11. JochenL

    Drop down list open automatically after I closed them

    The next update will contain a fix for this problem.
  12. JochenL

    Drop down list open automatically after I closed them

    I can reproduce it! And yes, it is a annoying! I file a bug for the coming to solve it.
  13. JochenL

    Writing Statblocks

    I will look into that for the next version!
  14. JochenL

    Multiline Table Entries

    Sadly not! We use markdown which does not support it out-of-the-box. The table addon is based on GitHub-flavored markdown. There is an additional extension that supports that, but it is difficult to manually write tables with that. Multiline cells are on my agenda, though.
  15. JochenL

    Sluggish Performance on a Large Log

    My test log contains 2K entries. I need to spin it up and take a look. I will come back here.
  16. JochenL

    CL Print to PDF

    You can use this template to read it into CL: https://campaign-community.com/index.php?resources/5rd-template.341/
  17. JochenL

    Logger won't let me use initiative Tracker

    Me, too. I already created a bug for it.
  18. JochenL

    Unexplained Formatting Errors on bulleted lists

    Got it! I already answered, and I found the problem!
  19. JochenL

    Can I link local files like I can web files for CL?

    You can try to use file:// instead of https:// but usually browsers don't allow navigation to local files.
  20. JochenL

    Unexplained Formatting Errors on bulleted lists

    Can you PM me? I would like to use your text for checking the parser.
Top