1
0

_body_image.qsrc 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. # $body_image
  2. !This function will return url of image, and set additonal texts to $body_image_msg
  3. !for example, you can VIEW FUNC('$body_image', 'body') to view body image in popup window, and
  4. !pl $body_image_msg to display extra texts
  5. $body_image_msg = ''
  6. if $ARGS[0] = 'body':
  7. !! This displays the body image; $bodimgsets[x9] is the folder name
  8. if salocatnow >= 1 and salocatnow <= 5:
  9. $RESULT = 'images/pc/body/shape/<<$bodimgsets[((bodset * 10) + 9)]>>/<<salocatnow>>.jpg'
  10. elseif salocatnow <= 0:
  11. $RESULT = 'images/pc/body/shape/0.jpg'
  12. elseif salocatnow = 6:
  13. if imgset6ovr[bodset] = 1:
  14. $RESULT = 'images/pc/body/shape/<<$bodimgsets[((bodset * 10) + 9)]>>/6.jpg'
  15. else
  16. $RESULT = 'images/pc/body/shape/6.jpg'
  17. end
  18. else
  19. if imgset7ovr[bodset] = 1:
  20. $RESULT = 'images/pc/body/shape/<<$bodimgsets[((bodset * 10) + 9)]>>/7.jpg'
  21. else
  22. $RESULT = 'images/pc/body/shape/7.jpg'
  23. end
  24. end
  25. $body_image_msg += 'You are <<pcs_hgt>>cm tall and <<$body>>'
  26. end
  27. if $ARGS[0] = 'coat':
  28. if defaultcoat = 0:
  29. $RESULT = ''
  30. $body_image_msg += 'You have no default coat set.'
  31. $body_image_msg += '<br>Your health will suffer if you don''t wear a coat in the winter.'
  32. else
  33. $RESULT = 'images/pc/clothing/11coat/<<defaultcoat>>.jpg'
  34. $body_image_msg += 'Your current default coat is Coat<<defaultcoat>>.<br>'
  35. !make sure to sync these with [outdoors]~364
  36. if defaultcoat_warmth = 1:
  37. $body_image_msg += 'It''ll keep you fairly warm down to -10C.'
  38. elseif defaultcoat_warmth = 2:
  39. $body_image_msg += 'It will handle temperatures down to -20C.'
  40. elseif defaultcoat_warmth = 3:
  41. $body_image_msg += 'You will be nice and warm even in the depths of winter.'
  42. else
  43. $body_image_msg += 'Your health will suffer if you don''t wear a coat in the winter.'
  44. end
  45. end
  46. end
  47. if $ARGS[0] = 'clothes':
  48. if $clothingworntype = 'nude' and towel = 1 and $pantyworntype = 'none':
  49. $RESULT = 'images/pc/clothing/towel.jpg'
  50. $body_image_msg += 'You are only wearing a towel'
  51. elseif $clothingworntype = 'nude' and $pantyworntype ! 'none':
  52. $RESULT = 'images/pc/clothing/nude.jpg'
  53. $body_image_msg += 'You are only wearing panties'
  54. elseif $clothingworntype = 'nude' and $pantyworntype = 'none':
  55. $RESULT = 'images/pc/clothing/nude1.jpg'
  56. $body_image_msg += 'You are completely naked.'
  57. else
  58. $RESULT = FUNC('$clothing_image', $clothingworntype, clothingwornnumber)
  59. $body_image_msg += 'You are wearing ' + FUNC('$short_description', $clothingworntype, PCloStyle2) + '<<clothingwornnumber>>.'
  60. if PClobimbo = 1:$body_image_msg += '<br>You are dressed like a bimbo.'
  61. if $clothingworntype ! 'coat' and $clothingworntype ! 'swimwear':
  62. gs 'clothing_attributes', $clothingworntype, clothingwornnumber
  63. gs 'clothing_descriptions'
  64. $body_image_msg += '<br><<$description>>'
  65. else
  66. $body_image_msg += FUNC('$clothing_name', $clothingworntype, clothingwornnumber)
  67. end
  68. *nl
  69. if $clothingworntype = 'uniform':
  70. if PCloStyle2 = 1:
  71. $body_image_msg += '<br>This outfit is considered to be a maid uniform.'
  72. elseif PCloStyle2 = 3:
  73. $body_image_msg += '<br>This is a stripper outfit.'
  74. else
  75. $body_image_msg += '<br>This outfit is a server uniform, suitable for jobs that require one.'
  76. end
  77. end
  78. end
  79. end
  80. if $ARGS[0] = 'panties':
  81. if $pantyworntype = 'none':
  82. if pcs_pubes <= 3:
  83. $RESULT = 'images/pc/body/pussy/pussy.jpg'
  84. elseif pcs_pubes <= 10:
  85. $RESULT = 'images/pc/body/pussy/stpussy.jpg'
  86. elseif pcs_pubes <= 20:
  87. $RESULT = 'images/pc/body/pussy/spussy.jpg'
  88. else
  89. $RESULT = 'images/pc/body/pussy/hpussy.jpg'
  90. end
  91. $body_image_msg += 'You are not wearing any panties.'
  92. else
  93. $RESULT = FUNC('$panty_image', $pantyworntype, pantywornnumber)
  94. !Kevin, please edit this line. I can not find panties description
  95. !$body_image_msg += 'You are wearing ' + FUNC('$shoe_description', $shoeworntype) + '<<shoewornnumber>>.'
  96. $body_image_msg += 'You are wearing <<$pantyworntype>> panty <<pantywornnumber>>'
  97. end
  98. end
  99. if $ARGS[0] = 'bra':
  100. if $braworntype = 'none':
  101. $RESULT = 'images/pc/body/tits/t<<tits>>.jpg'
  102. $body_image_msg += 'You are not wearing a bra. Your breasts would be considered an EU <<$titsize>>'
  103. else
  104. $RESULT = FUNC('$bra_image', $braworntype, brawornnumber)
  105. !Kevin, please edit this line. I can not find bra description
  106. !$body_image_msg += 'You are wearing ' + FUNC('$shoe_description', $shoeworntype) + '<<shoewornnumber>>.'
  107. $body_image_msg += 'You are wearing <<$braworntype>> bra <<brawornnumber>>. Your breasts would be considered an EU <<$titsize>>'
  108. end
  109. end
  110. if $ARGS[0] = 'shoes':
  111. if $clothingworntype = 'nude' or $shoeworntype = 'none':
  112. $RESULT = 'images/pc/body/feet.jpg'
  113. else
  114. $RESULT = FUNC('$shoe_image', $shoeworntype, shoewornnumber)
  115. $body_image_msg += 'You are wearing ' + FUNC('$shoe_description', $shoeworntype) + '<<shoewornnumber>>.'
  116. end
  117. end
  118. --- $body_image ---------------------------------