mod_broodseal_options.qsrc 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # mod_broodseal_options
  2. *clr&cla
  3. ! This is where you place the configuration options for your mod.
  4. 'There are currently no options available for this mod.'
  5. 'But there might be some variables to check'
  6. if mod_broodseal_init ! 1:
  7. mod_broodseal_init = 1
  8. mod_broodseal_speed = 1
  9. mod_broodseal = 0
  10. mod_broodseal_hour = 0
  11. mod_broodseal_day = 0
  12. mod_broodseal_debt = 0
  13. mod_broodseal_n = 0
  14. mod_broodseal_lottery = 0
  15. mod_broodseal_org = 0
  16. mod_broodseal_pwr = 0
  17. mod_broodseal_level = 0
  18. mod_broodseal_preg = 0
  19. end
  20. 'Has the mod been initialized? 0/1: <<mod_broodseal_init>>'
  21. 'Have you been cursed? 0/1: <<mod_broodseal>>'
  22. 'The latest pulse lottery: <<mod_broodseal_lottery>>'
  23. 'The curse level variable, starts at one and increases every time pregnancy ends(birth/miscarriage): <<mod_broodseal_level>>'
  24. 'Curse pulse set to go off after: <<mod_broodseal_hour>>'
  25. 'How many pulses are pending: <<mod_broodseal_debt>>'
  26. 'The day curse last triggered: <<mod_broodseal_day>> and the current day: <<daystart>>'
  27. 'How many orgasms has the curse registered: <<mod_broodseal_org>> and how many has the game recorded: <<orgasm>>'
  28. 'Orgasms are used to power up the pulse, current power is: <<mod_broodseal_pwr>>'
  29. 'Should curse level speed up pregnancy up to 7x?: <a href="exec:mod_broodseal_speed = 1"><b>Yes</b></a> <a href="exec:mod_broodseal_speed = 0"><b>No</b></a>'
  30. 'Speed up toggle currently 0/1: <<mod_broodseal_speed>>'
  31. act 'return': gt 'mod_setting'
  32. --- mod_broodseal_options ---------------------------------