|
@@ -155,6 +155,11 @@ if $ARGS[0] = 'default':
|
|
|
end
|
|
|
act 'Add as a new custom set': gt 'wardrobe', 'default_entry_set', ARRSIZE('defclothingnumber')
|
|
|
'<center>Note: Selecting an outfit will show the bonus for equipped shoes, this is only applied when outside.</center>'
|
|
|
+
|
|
|
+ '<center><table width="600">'
|
|
|
+ if quickdress = 0:'Display clothing set shortcuts: Currently OFF - <a href="exec:quickdress = 1 & gt ''wardrobe'', ''default''">Turn ON</a>'
|
|
|
+ if quickdress = 1:'Display clothing set shortcuts: Currently ON - <a href="exec:quickdress = 0 & gt ''wardrobe'', ''default''">Turn OFF</a>'
|
|
|
+ '</table></center>'
|
|
|
end
|
|
|
|
|
|
if $ARGS[0] = 'default_entry_wear':
|
|
@@ -216,10 +221,14 @@ if $ARGS[0] = 'default_entry_wear':
|
|
|
cls
|
|
|
'<center><video autoplay loop src="images/pc/activities/misc/dress_1.mp4"></video></center>'
|
|
|
'Your put on your <<$def_clothing_name[default_entry]>> outfit without any problems.'
|
|
|
- act 'Return to wardrobe':
|
|
|
- killvar 'default_entry'
|
|
|
- gs 'stat'
|
|
|
- gt 'wardrobe', 'start'
|
|
|
+ act 'Return':
|
|
|
+ if $wloc = 'wardrobe':
|
|
|
+ gt 'wardrobe', 'start'
|
|
|
+ elseif $wloc = 'workout':
|
|
|
+ gt 'exercise', 'workout'
|
|
|
+ else
|
|
|
+ gt $loc, $loc_arg
|
|
|
+ end
|
|
|
end
|
|
|
!! do not own this clothing anymore
|
|
|
elseif dyneval('RESULT = <<$defclothingtype[default_entry]>>[<<defclothingnumber[default_entry]>>]') = 0:
|
|
@@ -273,10 +282,14 @@ if $ARGS[0] = 'default_entry_wear':
|
|
|
cls
|
|
|
'<center><video autoplay loop src="images/pc/activities/misc/dress_1.mp4"></video></center>'
|
|
|
'Your put on your <<$def_clothing_name[default_entry]>> outfit without any problems.'
|
|
|
- act 'Return to wardrobe':
|
|
|
- killvar 'default_entry'
|
|
|
- gs 'stat'
|
|
|
- gt 'wardrobe', 'start'
|
|
|
+ act 'Return':
|
|
|
+ if $wloc = 'wardrobe':
|
|
|
+ gt 'wardrobe', 'start'
|
|
|
+ elseif $wloc = 'workout':
|
|
|
+ gt 'exercise', 'workout'
|
|
|
+ else
|
|
|
+ gt $loc, $loc_arg
|
|
|
+ end
|
|
|
end
|
|
|
end
|
|
|
!! clothing ok to wear without needing hip check and passing all other checks
|
|
@@ -284,10 +297,14 @@ if $ARGS[0] = 'default_entry_wear':
|
|
|
cls
|
|
|
'<center><video autoplay loop src="images/pc/activities/misc/dress_1.mp4"></video></center>'
|
|
|
'Your put on your <<$def_clothing_name[default_entry]>> outfit without any problems.'
|
|
|
- act 'Return to wardrobe':
|
|
|
- killvar 'default_entry'
|
|
|
- gs 'stat'
|
|
|
- gt 'wardrobe', 'start'
|
|
|
+ act 'Return':
|
|
|
+ if $wloc = 'wardrobe':
|
|
|
+ gt 'wardrobe', 'start'
|
|
|
+ elseif $wloc = 'workout':
|
|
|
+ gt 'exercise', 'workout'
|
|
|
+ else
|
|
|
+ gt $loc, $loc_arg
|
|
|
+ end
|
|
|
end
|
|
|
end
|
|
|
end
|
|
@@ -611,5 +628,27 @@ if $ARGS[0] = 'school_outfit':
|
|
|
gs 'clothing', 'wear', $schbrand, schtype
|
|
|
end
|
|
|
|
|
|
+!!-- quickdress
|
|
|
+
|
|
|
+if $ARGS[0] = 'quickdress':
|
|
|
+ if quickdress = 1:
|
|
|
+ '<table width="600">'
|
|
|
+ '<tr><td>'
|
|
|
+ 'You can access your <a href="exec: quick_dress = 1 & gt ''wardrobe'', ''default''">default clothing</a> options directly.'
|
|
|
+ '<b><<$sports_clothing_name>>:</b> <a href="exec:gs ''wardrobe'', ''sports_entry_wear''">Wear</a>'
|
|
|
+ if ARRSIZE('defclothingnumber') > 0:
|
|
|
+ i = 0
|
|
|
+ :loopdefclothing
|
|
|
+ '<b><<$def_clothing_name[i]>>:</b> <a href="exec:gs ''wardrobe'', ''default_entry_wear'', <<i>>">Wear</a>'
|
|
|
+ i += 1
|
|
|
+ if i < ARRSIZE('defclothingnumber'):jump 'loopdefclothing'
|
|
|
+ end
|
|
|
+ '</td></tr>'
|
|
|
+ '</table>'
|
|
|
+ else:
|
|
|
+ 'You can access your <a href="exec: quick_dress = 1 & gt ''wardrobe'', ''default''">default clothing</a> options directly.'
|
|
|
+ end
|
|
|
+end
|
|
|
+
|
|
|
--- wardrobe ---------------------------------
|
|
|
|