Skip to content

Instantly share code, notes, and snippets.

@amis92
Created May 17, 2019 10:06
Show Gist options
  • Save amis92/38780961c7c215bcd26396de5344001e to your computer and use it in GitHub Desktop.
Save amis92/38780961c7c215bcd26396de5344001e to your computer and use it in GitHub Desktop.

a few points on how things (should) work:

  1. A modifier without conditions/repeats will always be applied
  2. A modifier with conditions/repeats will be applied if the conditions are met (if the condition is "true")
  3. BattleScribe doesn't randomly "pick" which modifiers to apply - any modifiers will apply assuming their conditions are met Groups:
  4. A modifier group has conditions/repeats, and also modifiers. all modifiers in the group are applied if the condition group's conditions are met
  5. Modifiers in a group can also have their own conditions. These modifiers will only be applied if the group's conditions are met and the modifier's own conditions Note that all conditions must be met before a modifier or group is applied. You can use "and" and "or" condition groups to define more specific behaviour/condition combinations The upshot: both your methods for the dog handler should work:
ModifierGroup
    Modifier
        Repeat
    Modifier
        Repeat

and

ModifierGroup
    Repeat
    Modifier
    Modifier

(the second is what's intended for groups though as it's smaller) If something's not working it might be a bug @Miku2020 To the best of my knowledge my system is clean - there shouldn't be any malware. I've seen this a few times before where virus scanners pick up BattleScribe. It's never for a specific piece of malware though, just "generic" which leads me to believe it's because BattleScribe talks to the internet and also contains a web server for sign-in purposes. It's a false positive. I suggest updating your virus scanner to the latest version. Also, it goes without saying that you shouldn't install any software that you don't trust... I promise I'm not using BattleScribe for Bitcoin mining 😉

@amis92
Copy link
Author

amis92 commented May 17, 2019

From discord

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment