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">Scandalous</font></b></center>'
  11. '<center><img src="images/locations/city/citycenter/mall/scandalous/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. Its 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. if $ARGS[0] = 'swim':
  27. $loc_arg = 'swim'
  28. $loc = 'scandalicious'
  29. cls
  30. gs'stat'
  31. '<center><b><font color="maroon">Swimwear - one size fits all</font></b></center>'
  32. *nl
  33. gs 'clothing_QV', 'shop_header'
  34. act 'Return':
  35. cla
  36. minut += 1
  37. gt 'scandalicious', 'start'
  38. end
  39. if Clothingstock > 18:
  40. i = 1
  41. elseif Clothingstock > 12:
  42. i = 2
  43. elseif Clothingstock > 6:
  44. i = 3
  45. else
  46. i = 4
  47. end
  48. clothingfilter['qualitycheck'] = 7
  49. :loopquality
  50. :loopbeach
  51. if beach[i] = 0:
  52. gs 'clothing_attributes', 'beach', i
  53. gs 'clothing_QV', 'shop_filter'
  54. if clothingfilter['quality'] = 0 or clothingfilter['qualitycheck'] = CloQuality:
  55. 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/12beachbabe/<<i>>.jpg" height="250" /></a>'
  56. end
  57. end
  58. i += 4
  59. if i <= 199:jump 'loopbeach'
  60. if clothingfilter['quality'] = 1 and clothingfilter['qualitycheck'] > 0: clothingfilter['qualitycheck'] -=1 & jump 'loopquality'
  61. end
  62. if $ARGS[0] = 'swim1': gt 'clothing', 'view_clothing_item', 'shop', 'beach',i, 1750
  63. --- scandalicious ---------------------------------