mod_bestmod_options.qsrc 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. # mod_bestmod_options
  2. *clr & cla
  3. !!usehtml = 1
  4. '<center><h2>Bestmod Settings</h2></center>'
  5. 'Change some settings for bestmod. If you are a cheater (you''re not a cheater, are you?), you can toggle some cheats as well in the lower part of the page.'
  6. '<center><table cellspacing="0" cellpadding="20" valign="top">'
  7. '<tr><th colspan="2"><b>Gameplay</b></th></tr>'
  8. '<tr><td>'
  9. !! The return value of a conditional which evaluates to "true" is -1, so
  10. !! to avoid issues when checking a variable assigned to with that value,
  11. !! we''ll check if the variable is equal to 0 or not
  12. 'Player can be impregnated by beasts:'
  13. '</td>'
  14. '<td>'
  15. '<span style="color: red;">Warning: this doesn''t do anything yet!</span>'
  16. !! See note above
  17. '<a href="exec: bm_enable_preg = (bm_enable_preg = 0) & gt ''mod_bestmod_options''">Turn <<iif(bm_enable_preg = 0, "ON", "OFF")>></a>'
  18. '</td></tr>'
  19. !!'<tr><td colspan="2">&nbsp;</td></tr>'
  20. '</table></center>'
  21. '<center><table border="0" cellspacing="0" cellpadding="20" valign="top">'
  22. '<tr><th colspan="2"><b>Cheats</b></th></tr>'
  23. '<tr><td>'
  24. 'Bandit is always horny:'
  25. '</td>'
  26. '<td>'
  27. '<a href="exec:bm_cheatBandit = (bm_cheatBandit = 0) & gt ''mod_bestmod_options''">Turn <<iif(bm_cheatBandit = 0, "ON", "OFF")>></a>'
  28. '</td></tr>'
  29. '</table></center>'
  30. act 'Return': gt 'mod_setting'
  31. --- mod_bestmod_options ---------------------------------