1
0

scandalicious.qsrc 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. # scandalicious
  2. if $ARGS[0] = 'start':
  3. $loc = 'scandalicious'
  4. $loc_arg = 'swim'
  5. $location_type = 'public_indoors'
  6. cls
  7. menu_off = 0
  8. gs 'stat'
  9. gs 'themes', 'indoors'
  10. '<center><b><font color="maroon">Scandalicious</font></b></center>'
  11. '<center><img src="images/locations/city/citycenter/mall/scandalicious/shop.jpg"></center>'
  12. *nl
  13. 'This store is cheap and tacky. The clothing lives up to the name though and you assume they saved a lot of money on fabric.
  14. It''s not somewhere you''d go with your Mom or let her know you''d even looked in the window but if you want to show off your body there is nowhere better to shop. The staff aren''t judging anyone so it feels relaxed but there is still a mix of those hiding their embarrassment and those exuding confidence.'
  15. *nl
  16. act 'Leave':
  17. cla
  18. minut += 3
  19. gt 'torgcentr'
  20. end
  21. act 'View swimwear':
  22. cla
  23. minut += 5
  24. gt 'scandalicious', 'swim'
  25. end
  26. end
  27. if $ARGS[0] = 'swim':
  28. $loc_arg = 'swim'
  29. $loc = 'scandalicious'
  30. cls
  31. gs'stat'
  32. '<center><b><font color="maroon">Swimwear - one size fits all</font></b></center>'
  33. *nl
  34. gs 'clothing_QV', 'shop_header'
  35. act 'Return':
  36. cla
  37. minut += 1
  38. gt 'scandalicious', 'start'
  39. end
  40. clothingfilter['qualitycheck'] = 7
  41. :loopquality
  42. if Clothingstock > 18:
  43. i = 1
  44. elseif Clothingstock > 12:
  45. i = 2
  46. elseif Clothingstock > 6:
  47. i = 3
  48. else
  49. i = 4
  50. end
  51. :loopbeach
  52. if beach[i] = 0:
  53. gs 'clothing_attributes', 'beach', i
  54. gs 'clothing_QV', 'shop_filter'
  55. if clothingfilter['quality'] = 0 or clothingfilter['qualitycheck'] = CloQuality:
  56. if clothingfilter_risk = 1 and clothingfilter_pandb = 1 and clothingfilter_norm2 = 1: *p '<a href="exec: i = <<i>> & gt ''scandalicious'', ''swim1''"><img src="images/pc/clothing/15beachbabe/<<i>>.jpg" height="250" /></a>'
  57. end
  58. end
  59. i += 4
  60. if i <= 103:jump 'loopbeach'
  61. if clothingfilter['quality'] = 1 and clothingfilter['qualitycheck'] > 0: clothingfilter['qualitycheck'] -=1 & jump 'loopquality'
  62. end
  63. if $ARGS[0] = 'swim1': gt 'clothing', 'view_clothing_item', 'shop', 'beach',i, 1750
  64. --- scandalicious ---------------------------------