|
@@ -1,27 +1,35 @@
|
|
|
# mod_bestmod_options
|
|
|
|
|
|
*clr & cla
|
|
|
-usehtml = 1
|
|
|
-'<center><h1>Bestmod Settings</h1></center>'
|
|
|
+!!usehtml = 1
|
|
|
+'<center><h2>Bestmod Settings</h2></center>'
|
|
|
+'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.'
|
|
|
'<center><table cellspacing="0" cellpadding="20" valign="top">'
|
|
|
-'<tr><td cellspacing="0" cellpadding="20" valign="top">'
|
|
|
-'Player can be impregnated by beasts (Currently <<iif(bm_enable_preg = 0, "OFF", "ON")>>):'
|
|
|
-'</td>'
|
|
|
-'<td cellspacing="0" cellpadding="20" valign="top">'
|
|
|
-'<span style="color: red;">Warning: this doesn''t do anything yet!</span>'
|
|
|
-'<a href="exec: bm_enable_preg = (bm_enable_preg = 0) & gt ''mod_bestmod_options''">Toggle</a>'
|
|
|
-'</td></tr>'
|
|
|
-'<tr><td cellspacing="0" cellpadding="20" valign="top">'
|
|
|
-if bm_cheatBandit = 1:
|
|
|
- 'Bandit is always horny (Currently ON):'
|
|
|
- '<td cellspacing="0" cellpadding="20" valign="top"><a href="exec:bm_cheatBandit = 0 & gt ''mod_bestmod_options''">Turn OFF</a>'
|
|
|
-else
|
|
|
- 'Bandit is always horny (Currently OFF):'
|
|
|
- '<td cellspacing="0" cellpadding="20" valign="top"><a href="exec:bm_cheatBandit = 1 & gt ''mod_bestmod_options''">Turn ON</a>'
|
|
|
-end
|
|
|
-'</td></tr>'
|
|
|
+ '<tr><th colspan="2"><b>Gameplay</b></th></tr>'
|
|
|
+ '<tr><td>'
|
|
|
+ !! The return value of a conditional which evaluates to "true" is -1, so
|
|
|
+ !! to avoid issues when checking a variable assigned to with that value,
|
|
|
+ !! we''ll check if the variable is equal to 0 or not
|
|
|
+ 'Player can be impregnated by beasts:'
|
|
|
+ '</td>'
|
|
|
+ '<td>'
|
|
|
+ '<span style="color: red;">Warning: this doesn''t do anything yet!</span>'
|
|
|
+ !! See note above
|
|
|
+ '<a href="exec: bm_enable_preg = (bm_enable_preg = 0) & gt ''mod_bestmod_options''">Turn <<iif(bm_enable_preg = 0, "ON", "OFF")>></a>'
|
|
|
+ '</td></tr>'
|
|
|
+ !!'<tr><td colspan="2"> </td></tr>'
|
|
|
'</table></center>'
|
|
|
-!usehtml = 0
|
|
|
+
|
|
|
+'<center><table border="0" cellspacing="0" cellpadding="20" valign="top">'
|
|
|
+ '<tr><th colspan="2"><b>Cheats</b></th></tr>'
|
|
|
+ '<tr><td>'
|
|
|
+ 'Bandit is always horny:'
|
|
|
+ '</td>'
|
|
|
+ '<td>'
|
|
|
+ '<a href="exec:bm_cheatBandit = (bm_cheatBandit = 0) & gt ''mod_bestmod_options''">Turn <<iif(bm_cheatBandit = 0, "ON", "OFF")>></a>'
|
|
|
+ '</td></tr>'
|
|
|
+'</table></center>'
|
|
|
+
|
|
|
act 'Return': gt 'mod_setting'
|
|
|
|
|
|
--- mod_bestmod_options ---------------------------------
|