024_din_bad 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # din_bad
  2. $d_salf = {
  3. clr
  4. salfetka -= 1
  5. pl '<a href="exec:gs ''stat''"><B>Throw out tissue</B></a>'
  6. if cumface > 0: pl '<a href="exec:cumface = 0 & gs ''stat''"><B>Wipe your face</B></a>'
  7. if cumfrot > 0: pl '<a href="exec:cumfrot = 0 & gs ''stat''"><B>Wipe clothing</B></a>'
  8. if mop ! 1: pl '<a href="exec:mop = 1 & gs ''stat''"><B>Wipe cosmetics</B></a>'
  9. }
  10. $d_kosmetitka = {
  11. clr
  12. pl '<a href="exec:gs ''stat''"><B>Close makeup bag</B></a>'
  13. if kosmetitka >= 1: pl '<a href="exec:mop = 2 & kosmetitka -= 1 & gs ''stat''"><B>Light make-up</B></a>'
  14. if kosmetitka >= 2: pl '<a href="exec:mop = 3 & kosmetitka -= 2 & gs ''stat''"><B>Natural make-up</B></a>'
  15. if kosmetitka >= 3: pl '<a href="exec:mop = 4 & kosmetitka -= 3 & gs ''stat''"><B>Heavy make-up</B></a>'
  16. }
  17. $d_bag_heroin = {
  18. clr
  19. heroin -= 1
  20. minut += 5
  21. StrongNarkota += 25
  22. SNarkTimes += 1
  23. gs 'stat'
  24. $tempval = ''
  25. if narkoman ! 0: $tempval = ' with trembling hands'
  26. 'You injected yourself<<$tempval>>'
  27. }
  28. $d_bag = {
  29. clr
  30. pl '<a href="exec:gs ''stat''"><B>Close bag</B></a>'
  31. if salfetka > 0: pl 'You have <<salfetka>> wet wipes. <a href="exec:dynamic $d_salf"><B>Take tissue</B></a>'
  32. if kosmetitka > 0 and mop = 1: pl 'You have portable makeup bag. Cometic applications left <<kosmetitka>>. <a href="exec:dynamic $d_kosmetitka"><B>Put on makeup</B></a>'
  33. if kosmetitka > 0 and mop ! 1: pl 'You have portable makeup bag. Cometic applications left <<kosmetitka>>.'
  34. if greben > 0 and hapri = 0: pl 'You have a hairbrush. <a href="exec:hapri = 1 & gs ''stat''"><B>Brush your hair</B></a>'
  35. if greben > 0 and hapri = 1: pl 'You have a hairbrush.'
  36. if prezik > 0: pl 'You have <<prezik>> condoms. <a href="exec:prezik = 0& gs ''stat''"><B>Throw away</B></a>'
  37. if tabletki > 0: pl 'You have <<tabletki>> birth control pills. <a href="exec:tabletki = 0 & gs ''stat''"><B>Throw away</B></a>'
  38. if lubri > 0: pl 'Lubricant enough for <<lubri>> applications.'
  39. if bottle > 0: pl 'You have a bottle of water. <a href="exec:bottle = 0 & water = 20 & cumlip = 0 & gs ''stat''"><B>Drink</B></a>'
  40. if buterbrod > 0: pl 'You have a sandwich. <a href="exec:buterbrod = 0 & energy+= 20 & cumlip = 0 & salo += 1 & gs ''stat''"><B>Eat</B></a>'
  41. if heroin > 0: pl 'You have <<heroin>> doses of heroin. <a href="exec:dynamic $d_bag_heroin"><B>Inject</B></a>'
  42. if selfPornvidDVDCarry > 0: pl 'You are carrying <<selfPornvidDVDCarry>> of your amateur porn DVDs.'
  43. }
  44. --- din_bad ---------------------------------