sell_young_clothes 612 B

1234567891011121314151617181920212223242526272829303132333435
  1. # sell_young_clothes
  2. $metka = $ARGS[0]
  3. $loc = $CURLOC
  4. cls
  5. gs'stat'
  6. act 'Return':
  7. cla
  8. minut += 5
  9. gt 'young_shop'
  10. end
  11. i = Clothingstock + 1
  12. if Clothingstock - 12 >= 0:i -= 12
  13. :loopaverage
  14. if average[i] = 0:*p '<a href="exec: i = <<i>> & dynamic $yshopclo"><img src="images/pc/clothing/2average/<<i>>.jpg" height="250" /></a>'
  15. i += 12
  16. if i <= 132:jump 'loopaverage'
  17. $yshopclo = {
  18. cla
  19. if average[i] ! 0:
  20. msg 'You already own these clothes.'
  21. gt 'sell_young_clothes'
  22. end
  23. gt 'clothing', 'view_clothing_item', 'shop', 'average',i, 7500
  24. }
  25. --- sell_young_clothes ---------------------------------