lusso.qsrc 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. # lusso
  2. !2021/04/29
  3. if $ARGS[0] = 'start':
  4. $loc_arg = $ARGS[0]
  5. $loc = 'lusso'
  6. $location_type = 'public_indoors'
  7. $menu_loc = 'lusso'
  8. $menu_arg = 'start'
  9. menu_off = 0
  10. *clr & cla
  11. mag = 1
  12. gs 'stat'
  13. gs 'themes', 'indoors'
  14. '<center><b><font color="maroon">Lusso Intimo</font></b></center>'
  15. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/mall/lusso/lusso.jpg"></center>'
  16. *nl
  17. 'The décor is bright and modern the flowers are real and the dressers made with expensive woods.'
  18. 'This is clearly a high end underwear shop. Just knowing you are wearing these will make you stand out more and they will feel so nice you might never want to go back to wearing the cheap ill fitting underwear you used to have to put up with. That is of course assuming you can afford the prices here.'
  19. act 'Leave': gt 'torgcentr'
  20. act 'View panties': minut += 5 & gt 'lusso', 'panties'
  21. act 'View bras': minut += 5 & gt 'lusso', 'bras'
  22. end
  23. if $ARGS[0] = 'panties':
  24. $loc_arg = 'panties'
  25. $loc = 'lusso'
  26. $menu_loc = 'lusso'
  27. $menu_arg = 'panties'
  28. menu_off = 0
  29. *clr & cla
  30. gs'stat'
  31. act 'Return': minut += 1 & gt 'lusso', 'start'
  32. i = 1
  33. :loopboutique_panties
  34. if boutique_panties[i] = 0:*p '<a href="exec: i = <<i>> & gt ''lusso'', ''panties2''"><img src="images/pc/panties/boutique/<<i>>.jpg" height="150" /></a> '
  35. i += 1
  36. if i <= 82:jump 'loopboutique_panties'
  37. end
  38. if $ARGS[0] = 'panties2':
  39. cla
  40. menu_off = 1
  41. if boutique_panties[i] ! 0:
  42. msg 'You already own these panties.'
  43. gt 'lusso', 'panties'
  44. end
  45. gt 'panties', 'view_panty_item', 'shop', 'boutique',i, 1000
  46. end
  47. if $ARGS[0] = 'bras':
  48. $loc_arg = 'bras'
  49. $loc = 'lusso'
  50. $menu_loc = 'lusso'
  51. $menu_arg = 'bras'
  52. menu_off = 0
  53. *clr & cla
  54. gs'stat'
  55. act 'Return': minut += 1 & gt 'lusso', 'start'
  56. i = 1
  57. :loopboutique_bras
  58. if boutique_bras[i] = 0:*p '<a href="exec: i = <<i>> & gt ''lusso'', ''bras2''"><img src="images/pc/bras/boutique/<<i>>.jpg" height="150" /></a> '
  59. i += 1
  60. if i <= 33:jump 'loopboutique_bras'
  61. end
  62. if $ARGS[0] = 'bras2':
  63. cla
  64. menu_off = 1
  65. if boutique_bras[i] ! 0:
  66. msg 'You already own these bras.'
  67. gt 'lusso', 'bras'
  68. end
  69. gt 'bras', 'view_bra_item', 'shop', 'boutique',i, 1000
  70. end
  71. --- lusso ---------------------------------