1
0

city_experimental_trials_pharmacy.qsrc 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # city_experimental_trials_pharmacy
  2. if $ARGS[0] = 'counter':
  3. '<center><B><font color="maroon">Experimental Pharmacy</font></B></center>'
  4. if rand(0, 1) = 0:
  5. '<center><img <<$set_imgh>> src="images\locations\city\residential\clinic\experiments\pharmacist1.jpg"></center>'
  6. *nl
  7. 'You approach the pharmacy front desk. The older pharmacist behind the counter looks up at you and gives you a smile.'
  8. '"How can I help you?"'
  9. else
  10. '<center><img <<$set_imgh>> src="images\locations\city\residential\clinic\experiments\pharmacist2.jpg"></center>'
  11. *nl
  12. 'You approach the pharmacy front desk. The middle aged pharmacist behind the counter looks up at you and smiles.'
  13. '"How can I help you".'
  14. end
  15. *nl
  16. if experimentQW['times_participated_1'] = 0 and experimentQW['times_participated_2'] = 0 and experimentQW['times_participated_3'] = 0 and experimentQW['times_participated_4'] = 0 and experimentQW['times_participated_5'] = 0:
  17. '"If any of our experimental trials lead to a breakthrough, we will sell the medicine those trials produced here. Currently all of our trials are ongoing so there''s nothing in stock, do check back later. Sign up for a trial, if you want to help us develop medicine for the future."'
  18. else
  19. act 'Buy something': gt 'city_experimental_trials_pharmacy', 'cart'
  20. end
  21. act 'Go back to the front desk': gt 'city_experimental_trials', 'front_desk'
  22. end
  23. if $ARGS[0] = 'cart':
  24. *clr & cla
  25. $loc_s = 'city_experimental_trials_pharmacy'
  26. $args_s = 'cart'
  27. gs 'item_cart', 'shoppping_aisle', 'experimental_trials'
  28. gs 'themes', 'indoors'
  29. gs 'stat'
  30. act 'Exit shopping cart': gt 'city_experimental_trials_pharmacy', 'counter'
  31. end
  32. --- city_experimental_trials_pharmacy ---------------------------------