BMloc.qsrc 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. # BMloc
  2. menu_off = 1
  3. gs 'stat'
  4. act 'Leave':gt 'pav_disco'
  5. act 'Dance':
  6. *clr & cla
  7. gs 'stat'
  8. gs 'boystat', $bmNane[Tboynum]
  9. $hookupboy = $bmNane[Tboynum]
  10. $npc_usedname[$npclastcalled] = $npc_nickname[$npclastcalled]
  11. if bmFrend[Tboynum] = 0:
  12. if bmHJ[Tboynum] > 0 or bmBJ[Tboynum] > 0 or bmSEX[Tboynum] > 0 or bmANAL[Tboynum] > 0 or bmGANG[Tboynum] > 0:
  13. if bmHJ[Tboynum] > 0:$text2 = 'you gave me a hand job.'
  14. if bmBJ[Tboynum] > 0:$text2 = 'you gave me a blowjob.'
  15. if bmSEX[Tboynum] > 0:$text2 = 'you let me fuck you.'
  16. if bmANAL[Tboynum] > 0:$text2 = 'you let me fuck you in the ass.'
  17. if bmGANG[Tboynum] > 0:$text2 = 'you let me and my friend fuck you.'
  18. '<<$niknameboy>> tells you "Remember me, <<$text2>>. I''m <<$boydesc>>."'
  19. else
  20. if bmKISS[Tboynum] > 0 or bmTITS[Tboynum] > 0:
  21. '<<$niknameboy>> tells you "Remember me, we hung out and drank together beer. I''m <<$boydesc>>."'
  22. else
  23. '<<$niknameboy>> tells you "Remember me, we danced together. I''m <<$boydesc>>."'
  24. end
  25. end
  26. end
  27. if bmTip[Tboynum] = 0:'After the Dance <<$boydesc>> offers to go out and drink beer.'
  28. if bmTip[Tboynum] = 1:'After the Dance <<$boydesc>> offers to go hang out.'
  29. if bmTip[Tboynum] = 2:'After the Dance <<$boydesc>> offers to go to his hotel.'
  30. gs 'willpower', 'drink', 'resist'
  31. if will_cost <= pcs_willpwr:
  32. act 'Refuse (<<will_cost>> Willpower)':
  33. gs 'exp_gain', 'sprt', rand(0,1)
  34. gs 'willpower', 'drink', 'resist'
  35. gs 'willpower', 'pay'
  36. gs 'stat'
  37. gt 'pav_disco'
  38. end
  39. else
  40. act 'Refuse (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  41. end
  42. act 'Agree':
  43. *clr & cla
  44. boynumBlock = 1
  45. if bmTip[Tboynum] = 0:
  46. gdk_nice_guy = 1
  47. gt 'pav_disco_sex', 'outside'
  48. end
  49. if bmTip[Tboynum] = 1:gt 'pav_disco_sex', 'outside'
  50. if bmTip[Tboynum] = 2:
  51. DPtipe = 2
  52. gt 'pav_disco_sex', 'hotel'
  53. end
  54. end
  55. end
  56. --- BMloc ---------------------------------