placer_man.qsrc 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. # placer_man
  2. !!calculation of the probability of dating
  3. placerParameter['want_to_meet'] = 0
  4. if rand(0, 150) < pcs_apprnc and (rand(0, 10) > 2 or placerParameter['friend_index'] = 14):
  5. placerParameter['want_to_meet'] = 1
  6. if placerParameter['number_of_man'] = 1:
  7. $placerStringParameter['text_someone'] = 'guy' & $kol_man_text_a = 'man' & $kol_man_prefiks_he = 'he'
  8. elseif placerParameter['number_of_man'] = 2:
  9. $placerStringParameter['text_someone'] = 'two guys' & $kol_man_text_a = 'man' & $kol_man_prefiks_he = 'they'
  10. elseif placerParameter['number_of_man'] = 3:
  11. $placerStringParameter['text_someone'] = 'three guys' & $kol_man_text_a = 'man' & $kol_man_prefiks_he = 'they'
  12. elseif placerParameter['number_of_man'] = 4:
  13. $placerStringParameter['text_someone'] = 'four guys' & $kol_man_text_a = 'man' & $kol_man_prefiks_he = 'they'
  14. elseif placerParameter['number_of_man'] = 5:
  15. $placerStringParameter['text_someone'] = 'five guys' & $kol_man_text_a = 'man' & $kol_man_prefiks_he = 'they'
  16. elseif placerParameter['number_of_man'] = 6:
  17. $placerStringParameter['text_someone'] = 'six guys' & $kol_man_text_a = 'man' & $kol_man_prefiks_he = 'they'
  18. end
  19. $placerStringParameter['text_start_meet'] = ''
  20. !!iconic moments
  21. if fame['pav_slut'] >= 50 and placerParameter['know_slut'] = 0:
  22. if placerParameter['recognize_status'] = 1:knowrand = rand(0, 1)
  23. if placerParameter['recognize_status'] = 2:knowrand = rand(0, 4)
  24. if knowrand = 0:placerParameter['know_slut'] = 1
  25. end
  26. if placerParameter['friend_index'] = 0:
  27. placerParameter['slut_visual'] = 0
  28. if pcs_makeup = 4:placerParameter['slut_visual'] += 1
  29. if pirsA > 0 and pirsA < 10000:placerParameter['slut_visual'] += 1
  30. if pirsB > 0 and pirsB < 10000:placerParameter['slut_visual'] += 1
  31. !!if tits > 2:end
  32. !!if pcs_hips-pcs_waist > 30:end
  33. !!if glamur > 0 or ski > 0:end
  34. !!if sport > 0:end
  35. $txt_a= 'Hello there,'
  36. $txt_b= 'beautiful!'
  37. if placerParameter['recognize_status'] = 2:
  38. textrand = rand(0, 1)
  39. if textrand = 0:$txt_a = 'Hi'
  40. if textrand = 1:$txt_a = 'Hey,'
  41. textrand2 = rand(0, 1)
  42. if textrand2 = 0:$txt_b = 'gorgeous!'
  43. if textrand2 = 1:$txt_b = 'cutie!'
  44. end
  45. $placerStringParameter['text_start_meet'] = '<<$txt_a>> <<$txt_b>>'
  46. else
  47. $placerStringParameter['text_start_meet'] = 'Hey ladies!'
  48. end
  49. elseif placerParameter['friend_index'] = 0:
  50. if placerParameter['know_slut'] = 1:
  51. if placerParameter['number_of_man'] = 1:
  52. $placerStringParameter['text_start_meet'] = ' The guy grins, he recognizes who you are.'
  53. elseif placerParameter['number_of_man'] > 1:
  54. $placerStringParameter['text_start_meet'] = ' The guys whisper to one another: "Look guys, it''s <<$pcs_nickname>>. She''s a pretty big <<$gnikname>>, from what I heard."'
  55. end
  56. end
  57. else
  58. $placerStringParameter['text_start_meet'] = 'Hey girl!'
  59. if placerParameter['recognize_status'] = 2:$placerStringParameter['text_start_meet'] = 'Hi honey!'
  60. end
  61. if PCloStyle = 4:
  62. randtext = rand(0, 5)
  63. if randtext = 0:$txt_a = 'Nice clothes, slut!'
  64. if randtext = 1:$txt_a = 'Hey, slut!'
  65. if randtext = 2:$txt_a = 'Hey, whore!'
  66. if randtext = 3:$txt_a = 'Hey girl!'
  67. if randtext = 4:$txt_a = 'Aren''t you a whore?'
  68. if randtext = 5:$txt_a = 'Oh, a prostitute!'
  69. randtext2 = rand(0, 5)
  70. if randtext2 = 0:$txt_b = 'How much for a blowjob?'
  71. if randtext2 = 1:$txt_b = 'Didn''t I see you at the brothel the other day?'
  72. if randtext2 = 2:$txt_b = 'I''m saving up for you, babe!'
  73. if randtext2 = 3:$txt_b = 'Nice rack!'
  74. if randtext2 = 4:$txt_b = 'Is this where you usually work?'
  75. if randtext2 = 5:$txt_b = 'I''d like to see you work that mouth.'
  76. $placerStringParameter['text_start_meet'] = '<<$txt_a>> <<$txt_b>>'
  77. end
  78. --- placer_man ---------------------------------