mod_Ibiza_options.qsrc 615 B

1234567891011121314151617181920
  1. # mod_Ibiza_options
  2. *clr & cla
  3. if $ARGS[0] = '':
  4. *pl 'You can set here the color of some part of the text, namely of the the direct speech.'
  5. *pl 'Also you can set and reset test mode of the mod. Curently it is set to <<ibizatest>>'
  6. act 'Set color fonts': gs 'mod_IbizaStart','cfonts'
  7. act 'Set black fonts': gs 'mod_IbizaStart','bwfonts'
  8. if ibizatest = 0:
  9. act 'Cheat (set ibizatest to 1)': ibizatest = 1 & gt 'mod_Ibiza_options'
  10. end
  11. if ibizatest = 1:
  12. act 'End test': ibizatest = 0 & gt 'mod_Ibiza_options'
  13. end
  14. act 'Return': gt 'mod_setting'
  15. end
  16. --- mod_Ibiza_options ---------------------------------