mod_isample_setup.qsrc 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. # mod_isample_setup
  2. !input basic mod information here.
  3. !this location must be the first one
  4. $mod_info[0] = 'isample'
  5. !0=mod name, saved to $mod_name[i] array
  6. $mod_info[1] = '10203'
  7. !1=mod version
  8. !this will be displayed as version 1.2, fix3.
  9. !if you input 40500, will be showen as version 4.5
  10. $mod_info[2] = 'illume'
  11. !2=mod author
  12. $mod_info[3] = 'This is a sample for new mod system, please fill your own mod in this form'
  13. !3=mod description, input a short brief here.
  14. $mod_info[4] = 'Options'
  15. !4=mod options/settings link name.
  16. ! be aware, the following condition is case sensitive, you can use lcase() or ucase() to shft them before check.
  17. if $curloc = 'mod_<<$mod_info[0]>>_setup':
  18. usehtml = 1
  19. !this will be only showed if you exec mod file. This location should be only called by gs, so this line will not trigger on normal mod playing
  20. '<center><h1><font color=red>ACCESS DENIED</font></h1></center>'
  21. '<<$mod_info[0]>> is a mod for <b>Girl Life - English Community Version</b>, and can not be played individually.'
  22. ''
  23. 'You can find the main game in <a href="https://www.tfgamessite.com/index.php?module=viewgame&id=597">Tfgames site</a> (external link)'
  24. ''
  25. 'Our forum: <a href="https://tfgamessite.com/phpbb3/viewforum.php?f=70">Tfgames site</a> (external link)'
  26. end
  27. --- mod_isample_setup ---------------------------------