Skyrim
0 of 0

File information

Last updated

Original upload

Created by

Chesko

Uploaded by

Chesko

Virus scan

Safe to use

14 comments

  1. TomTesoro
    TomTesoro
    • premium
    • 120 kudos
    I'm sad I didn't know this existed sooner. I'll be checking this out.
  2. kaikurokawa
    kaikurokawa
    • member
    • 3 kudos
    Hey. The expect function is an analogue of ternary operator (if, then, else) right? https://en.wikipedia.org/wiki/%3F:

    Papyrus allows to write a logical expression directly to the function argument, like this:

    ;int i = expectInt(x1 >= min && x1 <= max, x1, y1); returns x1 if, x1 in range min - max, otherwise returns y1

    int function expectInt(bool cond, int x1, int y1) global

    if(cond)

    return(x1)

    endIf

    return(y1)

    endFunction

    And it's much easier
  3. KidForToday
    KidForToday
    • supporter
    • 6 kudos
    Thank you for addressing one of the biggest complaints I had about developing scripts with Papyrus. The current cycle of 'develop', 'execute the game', 'hope your printf debug helps you figure out whats wrong' is tedious. Now I can have some level of assurance that my code is doing what it should be.

    THANK YOU <3
  4. Chesko
    Chesko
    • supporter
    • 3,923 kudos
    Lilac for Skyrim has been updated to 1.2, and Lilac 1.2 for Fallout 4 is now available.
  5. Chesko
    Chesko
    • supporter
    • 3,923 kudos
    Lilac is now "Lilac for Skyrim". I'll be updating Lilac to version 1.2 and publishing the Fallout 4 version momentarily.
  6. Chesko
    Chesko
    • supporter
    • 3,923 kudos
    I have added a page to the wiki, Refactoring Code To Be More Testable.
  7. Chesko
    Chesko
    • supporter
    • 3,923 kudos
    For fun, here is a real-world set of test results from Frostfall tests I'm currently writing. Here, I discovered that one of my arrays isn't being correctly resorted.



    Here is the test suite.
  8. athiust
    athiust
    • supporter
    • 10 kudos
    Simply awesome name and app. thx so much.
  9. Khenta
    Khenta
    • premium
    • 34 kudos
    As a developer, I am glad you took the time to create this. This will be a great tool to ensure the quality and consistency of scripts. I will be using this a whirl while I am revamping one of my mods to work with Frostfall 3.
  10. }{ellKnight
    }{ellKnight
    • premium
    • 348 kudos
    This is pretty impressive. Will endorse when I can. Thank you!