booty_call.qsrc 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590
  1. # booty_call
  2. if $ARGS[0] = 'scheduler':
  3. !! clear SMS
  4. !! clear schedule
  5. killvar 'booty_call_time'
  6. killvar 'npc_booty_call'
  7. killvar 'npc_booty_call_time'
  8. i = 0
  9. gs 'booty_call', 'fuckbuddy_scheduler2'
  10. end
  11. if $ARGS[0] = 'fuckbuddy_scheduler2':
  12. if i <= arrsize('$fuckbuddy'):
  13. $temp = 'FuckBuddy'
  14. gs 'booty_call', 'fb_npc_stat_update'
  15. !! if (rand(1,10) <= npc_sexdrive[$FuckBuddy[i]] or npc_booty_call[$FuckBuddy[i]] = daystart) and npc_rel[$FuckBuddy[i]] > 0 and npc_no_booty_call[$FuckBuddy[i]] ! daystart and npc_big_fight[$FuckBuddy[i]] < daystart - 7:
  16. !! temporary removal of npc_rel requirement until boy initiated breakups can occur
  17. !! if (rand(1,10) <= npc_sexdrive[$FuckBuddy[i]] or npc_booty_call[$FuckBuddy[i]] = daystart) and npc_no_booty_call[$FuckBuddy[i]] ! daystart and (npc_big_fight[$FuckBuddy[i]] < daystart - 7 and daystart > 7):
  18. if $npc_rel_type[$FuckBuddy[i]] = 'sugar_daddy':
  19. if npc_sugar_daddy_timer[$FuckBuddy[i]] - (npc_rel[$FuckBuddy[i]] / 10) > daystart:
  20. npc_no_booty_call[$FuckBuddy[i]] = daystart
  21. elseif (npc_booty_call_date[$FuckBuddy[i]] = daystart or rand(1,10) <= npc_sexdrive[$FuckBuddy[i]] or rand(1,100) <= npc_rel[$FuckBuddy[i]]) and npc_no_booty_call[$FuckBuddy[i]] ! daystart:
  22. sugar_daddy_call[$FuckBuddy[i]] = 1
  23. gs 'booty_call', 'fuckbuddy_scheduler3'
  24. else
  25. npc_no_booty_call[$FuckBuddy[i]] = daystart
  26. end
  27. else
  28. if (npc_booty_call_date[$FuckBuddy[i]] = daystart or rand(1,10) <= npc_sexdrive[$FuckBuddy[i]] or rand(1,100) <= npc_rel[$FuckBuddy[i]]) and npc_no_booty_call[$FuckBuddy[i]] ! daystart:
  29. gs 'booty_call', 'fuckbuddy_scheduler3'
  30. else
  31. npc_no_booty_call[$FuckBuddy[i]] = daystart
  32. end
  33. end
  34. i += 1
  35. gs 'booty_call', 'fuckbuddy_scheduler2'
  36. else
  37. i = 0
  38. gs 'booty_call', 'sugar_daddy_scheduler2'
  39. end
  40. end
  41. if $ARGS[0] = 'sugar_daddy_scheduler2':
  42. if i <= arrsize('$sugar_daddy'):
  43. gs 'booty_call', 'sd_npc_stat_update'
  44. !! if (rand(1,10) <= npc_sexdrive[$FuckBuddy[i]] or npc_booty_call[$FuckBuddy[i]] = daystart) and npc_rel[$FuckBuddy[i]] > 0 and npc_no_booty_call[$FuckBuddy[i]] ! daystart and npc_big_fight[$FuckBuddy[i]] < daystart - 7:
  45. !! temporary removal of npc_rel requirement until boy initiated breakups can occur
  46. !! if (rand(1,10) <= npc_sexdrive[$FuckBuddy[i]] or npc_booty_call[$sugar_daddy[i]] = daystart) and npc_no_booty_call[$sugar_daddy[i]] ! daystart and (npc_big_fight[$sugar_daddy[i]] < daystart - 7 and daystart > 7):
  47. if $npc_rel_type[$sugar_daddy[i]] = 'sugar_daddy':
  48. if npc_sugar_daddy_timer[$sugar_daddy[i]] - (npc_rel[$sugar_daddy[i]] / 10) > daystart:
  49. npc_no_booty_call[$sugar_daddy[i]] = daystart
  50. elseif (npc_booty_call_date[$sugar_daddy[i]] = daystart or rand(1,10) <= npc_sexdrive[$sugar_daddy[i]] or rand(1,100) <= npc_rel[$sugar_daddy[i]]) and npc_no_booty_call[$sugar_daddy[i]] ! daystart:
  51. sugar_daddy_call[$sugar_daddy[i]] = 1
  52. gs 'booty_call', 'sugar_daddy_scheduler3'
  53. else
  54. npc_no_booty_call[$sugar_daddy[i]] = daystart
  55. end
  56. else
  57. if (npc_booty_call_date[$sugar_daddy[i]] = daystart or rand(1,10) <= npc_sexdrive[$sugar_daddy[i]] or rand(1,100) <= npc_rel[$sugar_daddy[i]]) and npc_no_booty_call[$sugar_daddy[i]] ! daystart:
  58. gs 'booty_call', 'sugar_daddy_scheduler3'
  59. else
  60. npc_no_booty_call[$sugar_daddy[i]] = daystart
  61. end
  62. end
  63. i += 1
  64. gs 'booty_call', 'sugar_daddy_scheduler2'
  65. end
  66. end
  67. if $ARGS[0] = 'fuckbuddy_scheduler3':
  68. if npc_booty_call[$FuckBuddy[i]] = daystart:
  69. booty_call_time[$FuckBuddy[i]] = ((npc_booty_call_time[$FuckBuddy[i]] * 60) + rand(0,180))
  70. elseif week = npc_day_off[$FuckBuddy[i]]:
  71. booty_call_time[$FuckBuddy[i]] = (600 + rand(0,720))
  72. elseif week ! npc_day_off[$FuckBuddy[i]]:
  73. booty_call_time[$FuckBuddy[i]] = (rand(npc_start_free_time[$FuckBuddy[i]],(npc_end_free_time[$FuckBuddy[i]] - 1)) * 60) + rand(0,180)
  74. else
  75. booty_call_time[$FuckBuddy[i]] = 2000
  76. end
  77. end
  78. if $ARGS[0] = 'sugar_daddy_scheduler3':
  79. if npc_booty_call[$sugar_daddy[i]] = daystart:
  80. booty_call_time[$sugar_daddy[i]] = ((npc_booty_call_time[$sugar_daddy[i]] * 60) + rand(0,180))
  81. elseif week = npc_day_off[$sugar_daddy[i]]:
  82. booty_call_time[$sugar_daddy[i]] = (600 + rand(0,720))
  83. elseif week ! npc_day_off[$sugar_daddy[i]]:
  84. booty_call_time[$sugar_daddy[i]] = (rand(npc_start_free_time[$sugar_daddy[i]],(npc_end_free_time[$sugar_daddy[i]] - 1)) * 60) + rand(0,180)
  85. else
  86. booty_call_time[$sugar_daddy[i]] = 2000
  87. end
  88. end
  89. !! if npc_start_free_time[$FuckBuddy[i]] = 0 or npc_day_off[$FuckBuddy[i]] = 0 or npc_end_free_time[$FuckBuddy[i]] = 0:
  90. !! $boy = $FuckBuddy[i]
  91. !! end
  92. !! if ((rand(1,10) <= npc_sexdrive[$FuckBuddy[i]] or npc_booty_call[$FuckBuddy[i]] = daystart) and (rand(1,npc_rel[$FuckBuddy[i]]) > 0)) and npc_no_booty_call[$FuckBuddy[i]] ! daystart and npc_big_fight[$FuckBuddy[i]] < daystart - 7:
  93. !! elseif week < 6:
  94. !! booty_call_time[$FuckBuddy[i]] = 900 + rand(0,210)
  95. !! else
  96. !! booty_call_time[$FuckBuddy[i]] = 600 + rand(0,720)
  97. if $ARGS[0] = 'set_booty_call_date':
  98. sex_ev['set_date'] = 1
  99. if sex_ev['invite_today'] = 1 or hour < 5:
  100. npc_booty_call_date[$boy] = daystart
  101. elseif sex_ev['invite_tomorrow'] = 1:
  102. npc_booty_call_date[$boy] = daystart + 1
  103. end
  104. if npc_booty_call_time[$boy] = 0:
  105. npc_booty_call_time[$boy] = npc_start_free_time[$boy]
  106. end
  107. if $npc_rel_type[$boy] = 'sugar_daddy': sugar_daddy_call[$boy] = 1
  108. end
  109. if $ARGS[0] = 'block_booty_calls':
  110. if sex_ev['invite_today'] = 1:
  111. npc_booty_call_date[$boy] = 0
  112. npc_no_booty_call[$boy] = daystart
  113. npc_booty_call_time[$boy] = 0
  114. elseif sex_ev['invite_tomorrow'] = 1:
  115. npc_no_booty_call[$boy] = daystart + 1
  116. end
  117. end
  118. if $ARGS[0] = 'SMS raiser':
  119. i = 0
  120. :fuckbuddy_sms_raiser_loop
  121. if i < arrsize('$FuckBuddy'):
  122. if booty_call_time[$FuckBuddy[i]] < ((hour * 60) + minut) and npc_no_booty_call[$FuckBuddy[i]] ! daystart and npc_last_booty_call[$FuckBuddy[i]] ! daystart:
  123. gs 'booty_call_sms', 'start', $FuckBuddy[i]
  124. booty_call_time[$FuckBuddy[i]] = 2399
  125. !! this is a bit superfluous, but it makes the code run faster.
  126. booty_call_invite[$FuckBuddy[i]] = daystart
  127. end
  128. i += 1
  129. jump 'fuckbuddy_sms_raiser_loop'
  130. end
  131. i = 0
  132. :sugar_daddy_sms_raiser_loop
  133. if i < arrsize('$sugar_daddy'):
  134. if booty_call_time[$sugar_daddy[i]] < ((hour * 60) + minut) and npc_no_booty_call[$sugar_daddy[i]] ! daystart and npc_last_booty_call[$sugar_daddy[i]] ! daystart:
  135. gs 'booty_call_sms', 'start', $sugar_daddy[i]
  136. booty_call_time[$sugar_daddy[i]] = 2399
  137. !! this is a bit superfluous, but it makes the code run faster.
  138. booty_call_invite[$sugar_daddy[i]] = daystart
  139. end
  140. i += 1
  141. jump 'sugar_daddy_sms_raiser_loop'
  142. end
  143. end
  144. if $ARGS[0] = 'home_links':
  145. i=0
  146. *nl
  147. :loopFB_homes
  148. if (npc_residence[$Fuckbuddy[i]] = 1 and $loc = 'pav_residential') or (npc_residence[$Fuckbuddy[i]] = 3 and $loc = 'city_residential')or (npc_residence[$Fuckbuddy[i]] = 4 and $loc = 'city_center'):
  149. dynamic(' ''<a href="exec: minut += 2 & gt ''''sex_ev_start'''',''''initiate_pre'''',''''<<$Fuckbuddy[i]>>'''' "><<$npc_firstname[$Fuckbuddy[i]]>>''''s</a> apartment is nearby.'' ')
  150. !! ''''
  151. end
  152. !! dynamic(' ''<a href="exec: minut += 2 & gt ''''sex_ev_start'''',''''fb_npc_home_start'''',''''<<$Fuckbuddy[i]>>'''' "><<$npc_firstname[$Fuckbuddy[i]]>>''''s</a> apartment is nearby.'' ')
  153. i +=1
  154. if i < arrsize('$Fuckbuddy') : jump 'loopFB_homes'
  155. i=0
  156. *nl
  157. :loopSD_homes
  158. if (npc_residence[$sugar_daddy[i]] = 1 and $loc = 'pav_residential') or (npc_residence[$sugar_daddy[i]] = 3 and $loc = 'city_residential')or (npc_residence[$sugar_daddy[i]] = 4 and $loc = 'city_center'):
  159. dynamic(' ''<a href="exec: minut += 2 & gt ''''sex_ev_start'''',''''initiate_pre'''',''''<<$sugar_daddy[i]>>'''' "><<$npc_firstname[$sugar_daddy[i]]>>''''s</a> apartment is nearby.'' ')
  160. !! ''''
  161. end
  162. !! dynamic(' ''<a href="exec: minut += 2 & gt ''''sex_ev_start'''',''''fb_npc_home_start'''',''''<<$sugar_daddy[i]>>'''' "><<$npc_firstname[$sugar_daddy[i]]>>''''s</a> apartment is nearby.'' ')
  163. i +=1
  164. if i < arrsize('$sugar_daddy') : jump 'loopSD_homes'
  165. end
  166. if $ARGS[0] = 'hotel_links':
  167. i=0
  168. *nl
  169. :loopFB_hotel
  170. if $booty_call_hotel[$Fuckbuddy[i]] = $region and booty_call_invite[$FuckBuddy[i]] = daystart:
  171. dynamic(' ''<a href="exec: minut += 2 & gt ''''sex_ev_start'''',''''initiate_pre'''',''''<<$Fuckbuddy[i]>>'''' "><<$npc_firstname[$Fuckbuddy[i]]>></a> booked a hotel room to meet you in.'' ')
  172. !! ''''
  173. end
  174. i +=1
  175. if i < arrsize('$Fuckbuddy') : jump 'loopFB_hotel'
  176. i=0
  177. *nl
  178. :loopSD_hotel
  179. if $booty_call_hotel[$sugar_daddy[i]] = $region and booty_call_invite[$sugar_daddy[i]] = daystart:
  180. dynamic(' ''<a href="exec: minut += 2 & gt ''''sex_ev_start'''',''''initiate_pre'''',''''<<$sugar_daddy[i]>>'''' "><<$npc_firstname[$sugar_daddy[i]]>></a> booked a hotel room to meet you in.'' ')
  181. !! ''''
  182. end
  183. i +=1
  184. if i < arrsize('$sugar_daddy') : jump 'loopSD_hotel'
  185. end
  186. !! booty_call_invite['B0']
  187. if $ARGS[0] = 'text':
  188. !! boy code?
  189. !! IMAGE HERE
  190. 'Your phone buzzes and you pull it out to see what''s happening. It''s a text from [boy code here].'
  191. *nl
  192. ' <b><font color="blue">hey <<$pcs_nickname>></font></b>'
  193. '<b><font color="pink">hey yourself</font></b>'
  194. *nl
  195. 'you text back.'
  196. *nl
  197. ' <b><font color="blue">i was thinking about you today</font></b>'
  198. act'What about?':
  199. cla & *clr
  200. !! IMAGE HERE
  201. ' <b><font color="blue">i was thinking about you today</font></b>'
  202. '<b><font color="pink">what were you thinking about?</font></b>'
  203. booty_call['text'] = rand(1,3)
  204. if booty_call['text'] = 1:
  205. ' <b><font color="blue">wanted to know if you wanted to come over to my place</font></b>'
  206. ' <b><font color="blue">have some fun?</font></b>'
  207. *nl
  208. 'You think you know what kind of fun he wants.'
  209. elseif booty_call['text'] = 2:
  210. ' <b><font color="blue">your mouth around my cock</font></b>'
  211. *nl
  212. 'You think you know what kind of fun he wants.'
  213. elseif booty_call['text'] = 3:
  214. ' <b><font color="blue">fucking you on my couch</font></b>'
  215. *nl
  216. 'You think you know what kind of fun he wants.'
  217. end
  218. end
  219. act'Me too':
  220. gt ''
  221. end
  222. act'About fucking me?':
  223. gt ''
  224. end
  225. end
  226. if $ARGS[0] = 'invite_yourself':
  227. end
  228. if $ARGS[0] = 'get_invited':
  229. if rand(0,1) = 1:
  230. '"Why don''t you come over to my place right now and we can have some fun?"'
  231. else
  232. '"Why don''t you come over to my place tonight and we can have some fun?"'
  233. end
  234. end
  235. !! ----------------------- text dialogue saved for possible future usage later ---------------------------------------
  236. if $ARGS[0] = 'text1':
  237. !! boy code?
  238. !! missing code
  239. !! IMAGE HERE
  240. 'Your phone buzzes and you pull it out to see what''s happening. It''s a text from [boy code here].'
  241. *nl
  242. ' <b><font color="blue">hey <<$pcs_nickname>></font></b>'
  243. '<b><font color="pink">hey yourself</font></b>'
  244. *nl
  245. 'you text back.'
  246. *nl
  247. ' <b><font color="blue">i was thinking about you today</font></b>'
  248. act'What about?':
  249. cla & *clr
  250. !! IMAGE HERE
  251. ' <b><font color="blue">i was thinking about you today</font></b>'
  252. '<b><font color="pink">what were you thinking about?</font></b>'
  253. booty_call['text'] = rand(1,3)
  254. if booty_call['text'] = 1:
  255. ' <b><font color="blue">wanted to know if you wanted to come over to my place</font></b>'
  256. ' <b><font color="blue">have some fun?</font></b>'
  257. *nl
  258. 'You think you know what kind of fun he wants.'
  259. elseif booty_call['text'] = 2:
  260. ' <b><font color="blue">your mouth around my cock</font></b>'
  261. elseif booty_call['text'] = 3:
  262. ' <b><font color="blue">fucking you on my bed</font></b>'
  263. end
  264. gs'booty_call_start','text2'
  265. end
  266. act'Me too':
  267. cla & *clr
  268. !! IMAGE HERE
  269. ' <b><font color="blue">i was thinking about you today</font></b>'
  270. '<b><font color="pink">me too</font></b>'
  271. ' <b><font color="blue">come over</font></b>'
  272. !! booty_call['text'] = rand(1,3)
  273. !! if booty_call['text'] = 1:
  274. ' <b><font color="blue">lets fuck like bunnies</font></b>'
  275. end
  276. end
  277. if $ARGS[0] = 'text2':
  278. act'Can''t':
  279. cla & *nl
  280. '<b><font color="pink">sorry, i cant</font></b>'
  281. '<b><font color="pink">i have stuff to do</font></b>'
  282. ' <b><font color="blue">shit</font></b>'
  283. ' <b><font color="blue">maybe next time then</font></b>'
  284. act'Put your phone away':gt'somewhere'
  285. end
  286. act'I''m on my way':
  287. cla & *nl
  288. '<b><font color="pink">ill come right now ;)</font></b>'
  289. if npc_humor[$boy] <= 1:
  290. ' <b><font color="blue">my cock is waiting for you</font></b>'
  291. elseif npc_humor[$boy] = 2:
  292. ' <b><font color="blue">in the street?</font></b>'
  293. ' <b><font color="blue">damn!</font></b>'
  294. ' <b><font color="blue">keep it in your pants till you get here!</font></b>'
  295. elseif npc_humor[$boy] = 3:
  296. ' <b><font color="blue">phrasing</font></b>'
  297. end
  298. !! missing code
  299. !! confirm player is coming over
  300. act'Put away your phone':gt $loc, $loc_arg
  301. end
  302. act'I''ll swing by later':
  303. cla & *nl
  304. '<b><font color="pink">not right now</font></b>'
  305. '<b><font color="pink">but i can come by later?</font></b>'
  306. ' <b><font color="blue">when?</font></b>'
  307. act 'Pick a time':
  308. cla & *clr
  309. !! IMAGE HERE
  310. !! missing code
  311. !! fix this code to work with this event
  312. contMeetHour[Call4Date["ContactIndex"]] = input ("When do you want to go over to his place? It is now <<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>>. [Enter the hour only <<hour>> - 22]")
  313. if contMeetHour[Call4Date["ContactIndex"]] <= hour or contMeetHour[Call4Date["ContactIndex"]] > 23:contMeetHour[Call4Date["ContactIndex"]] = 20
  314. '<b><font color="pink">maybe around <<contMeetHour[Call4Date["ContactIndex"]]>>:00?</font></b>'
  315. '"How about <<contMeetHour[Call4Date["ContactIndex"]]>>:00?."'
  316. '<<$Call4Date["CallerName"]>>, "Okay <<$Call4Date["SvetaName"]>>, see you at <<contMeetHour[Call4Date["ContactIndex"]]>>:00."'
  317. act'Put away your phone':gt $loc, $loc_arg
  318. end
  319. end
  320. end
  321. if $ARGS[0] = 'invite_yourself1':
  322. !! boy code?
  323. !! missing code
  324. !! IMAGE HERE
  325. 'You tap out a quick message on your and hit send.'
  326. *nl
  327. '<b><font color="pink">hey</font></b>'
  328. '<b><font color="pink">doing anything right now?</font></b>'
  329. *nl
  330. !! missing code
  331. !! better way of randomizing this? personality based?
  332. if rand(1,3) = 3:
  333. 'You don''t receive a response. He must be busy.'
  334. act'Put away your phone':gt $loc, $loc_arg
  335. elseif rand(1,2) = 2 and hour < 18:
  336. ' <b><font color="blue">im at work</font></b>'
  337. act'Sorry, never mind':
  338. cla & *nl
  339. '<b><font color="pink">oh</font></b>'
  340. '<b><font color="pink">sorry</font></b>'
  341. '<b><font color="pink">never mind</font></b>'
  342. '<b><font color="pink">i''ll text you later</font></b>'
  343. act'Put away your phone':gt $loc, $loc_arg
  344. end
  345. act'This is a booty call':
  346. cla & *nl
  347. '<b><font color="pink">when do you get off?</font></b>'
  348. '<b><font color="pink">this is a booty call</font></b>'
  349. ' <b><font color="blue">ill probably be free at 19:00</font></b>'
  350. ' <b><font color="blue">wanna come then?</font></b>'
  351. gs'booty_call_start','invite_yourself2'
  352. end
  353. act'I wanna fuck':
  354. cla & *nl
  355. '<b><font color="pink">i wanna fuck</font></b>'
  356. '<b><font color="pink">when do you get off?</font></b>'
  357. ' <b><font color="blue">ill probably be free at 19:00</font></b>'
  358. ' <b><font color="blue">wanna come then?</font></b>'
  359. gs'booty_call_start','invite_yourself2'
  360. end
  361. else
  362. ' <b><font color="blue">i was thinking about your naked body in my bed</font></b>'
  363. act'How about right now?':
  364. cla & *nl
  365. '<b><font color="pink">then we''re on the same page</font></b>'
  366. '<b><font color="pink">can i come over now?</font></b>'
  367. ' <b><font color="blue">yes</font></b>'
  368. ' <b><font color="blue">hurry</font></b>'
  369. ' <b><font color="blue">i want to fuck you right now</font></b>'
  370. '<b><font color="pink">i''m on my way <3</font></b>'
  371. !! missing code
  372. act'Put away your phone':gt $loc, $loc_arg
  373. end
  374. act'Can I come later?':
  375. cla & *nl
  376. !! missing code
  377. contMeetHour[Call4Date["ContactIndex"]] = input ("When do you want to go over to his place? It is now <<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>>. [Enter the hour only <<hour>> - 22]")
  378. if contMeetHour[Call4Date["ContactIndex"]] <= hour or contMeetHour[Call4Date["ContactIndex"]] > 23:contMeetHour[Call4Date["ContactIndex"]] = 20
  379. '<b><font color="pink">then we''re on the same page</font></b>'
  380. '<b><font color="pink">but i''m just trying to plan my day</font></b>'
  381. '<b><font color="pink">can i come over at <<contMeetHour[Call4Date["ContactIndex"]]>>:00?</font></b>'
  382. ' <b><font color="blue">what the fuck am i supposed to do until then?</font></b>'
  383. act'I don''t know':
  384. cla & *nl
  385. '<b><font color="pink">i dont know</font></b>'
  386. '<b><font color="pink">figure something out til i get there</font></b>'
  387. act'Put away your phone':gt $loc, $loc_arg
  388. end
  389. act'Try to stay hard':
  390. cla & *nl
  391. '<b><font color="pink">just try to stay hard</font></b>'
  392. '<b><font color="pink">i don''t want to get there and find out my meat stick has gone soft</font></b>'
  393. act'Put away your phone':gt $loc, $loc_arg
  394. end
  395. act'Dream on it':
  396. cla & *nl
  397. '<b><font color="pink">dream on it ;)</font></b>'
  398. act'Put away your phone':gt $loc, $loc_arg
  399. end
  400. end
  401. end
  402. end
  403. if $ARGS[0] = 'invite_yourself2':
  404. act'I''m busy then':
  405. cla & *nl
  406. '<b><font color="pink">shit</font></b>'
  407. '<b><font color="pink">im busy then</font></b>'
  408. '<b><font color="pink">maybe another day</font></b>'
  409. !! missing code
  410. !! add prevention so you can''t ask again today
  411. act'Put away your phone':gt $loc, $loc_arg
  412. end
  413. act'Yes':
  414. cla & *nl
  415. '<b><font color="pink">yeah, id like to come around that time ;)</font></b>'
  416. ' <b><font color="blue">great</font></b>'
  417. !! missing code
  418. !! add event to schedule
  419. act'Put away your phone':gt $loc, $loc_arg
  420. end
  421. end
  422. !! ------------ NPC Stat Updater ------------------------
  423. if $ARGS[0] = 'fb_npc_stat_update':
  424. if npc_start_free_time[$FuckBuddy[i]] = 0 or npc_day_off[$FuckBuddy[i]] = 0:
  425. if npc_finance[$FuckBuddy[i]] = 0:
  426. if rand(1,3) = 1:
  427. npc_start_free_time[$FuckBuddy[i]] = 9
  428. npc_end_free_time[$FuckBuddy[i]] = 12
  429. elseif rand(1,2) = 1:
  430. npc_start_free_time[$FuckBuddy[i]] = 16
  431. npc_end_free_time[$FuckBuddy[i]] = 20
  432. else
  433. npc_start_free_time[$FuckBuddy[i]] = 20
  434. npc_end_free_time[$FuckBuddy[i]] = 23
  435. end
  436. elseif npc_finance[$FuckBuddy[i]] = 1:
  437. if rand(1,2) = 1:
  438. npc_start_free_time[$FuckBuddy[i]] = 9
  439. npc_end_free_time[$FuckBuddy[i]] = 12
  440. else
  441. npc_start_free_time[$FuckBuddy[i]] = 20
  442. npc_end_free_time[$FuckBuddy[i]] = 23
  443. end
  444. elseif npc_finance[$FuckBuddy[i]] = 2:
  445. if rand(1,2) = 1:
  446. npc_start_free_time[$npclastgenerated] = 8
  447. npc_end_free_time[$npclastgenerated] = 12
  448. npc_work_start[$npclastgenerated] = 13
  449. npc_work_end[$npclastgenerated] = 21
  450. else
  451. npc_start_free_time[$npclastgenerated] = 18
  452. npc_end_free_time[$npclastgenerated] = 22
  453. npc_work_start[$npclastgenerated] = 9
  454. npc_work_end[$npclastgenerated] = 17
  455. end
  456. npc_apt_type[$FuckBuddy[i]] = 5
  457. !!npc_apt_type[$npclastgenerated] = rand(5,6)
  458. !! apt_type 6 is disabled until pictures are added
  459. npc_occupation[$FuckBuddy[i]] = rand(14,18)
  460. npc_car[$FuckBuddy[i]] = rand(0,1)
  461. end
  462. npc_day_off[$FuckBuddy[i]] = rand(1,7)
  463. end
  464. end
  465. if $ARGS[0] = 'sd_npc_stat_update':
  466. if npc_start_free_time[$sugar_daddy[i]] = 0 or npc_day_off[$sugar_daddy[i]] = 0:
  467. if npc_finance[$sugar_daddy[i]] = 0:
  468. if rand(1,3) = 1:
  469. npc_start_free_time[$sugar_daddy[i]] = 9
  470. npc_end_free_time[$sugar_daddy[i]] = 12
  471. elseif rand(1,2) = 1:
  472. npc_start_free_time[$sugar_daddy[i]] = 16
  473. npc_end_free_time[$sugar_daddy[i]] = 20
  474. else
  475. npc_start_free_time[$sugar_daddy[i]] = 20
  476. npc_end_free_time[$sugar_daddy[i]] = 23
  477. end
  478. elseif npc_finance[$sugar_daddy[i]] = 1:
  479. if rand(1,2) = 1:
  480. npc_start_free_time[$sugar_daddy[i]] = 9
  481. npc_end_free_time[$sugar_daddy[i]] = 12
  482. else
  483. npc_start_free_time[$sugar_daddy[i]] = 20
  484. npc_end_free_time[$sugar_daddy[i]] = 23
  485. end
  486. elseif npc_finance[$sugar_daddy[i]] = 2:
  487. if rand(1,2) = 1:
  488. npc_start_free_time[$npclastgenerated] = 8
  489. npc_end_free_time[$npclastgenerated] = 12
  490. npc_work_start[$npclastgenerated] = 13
  491. npc_work_end[$npclastgenerated] = 21
  492. else
  493. npc_start_free_time[$npclastgenerated] = 18
  494. npc_end_free_time[$npclastgenerated] = 22
  495. npc_work_start[$npclastgenerated] = 9
  496. npc_work_end[$npclastgenerated] = 17
  497. end
  498. npc_apt_type[$sugar_daddy[i]] = 5
  499. !!npc_apt_type[$npclastgenerated] = rand(5,6)
  500. !! apt_type 6 is disabled until pictures are added
  501. npc_occupation[$sugar_daddy[i]] = rand(14,18)
  502. npc_car[$sugar_daddy[i]] = rand(0,1)
  503. end
  504. npc_day_off[$sugar_daddy[i]] = rand(1,7)
  505. end
  506. end
  507. !! ------------ Legacy Backup ------------------------
  508. if $ARGS[0] = 'draw':
  509. ! this routine should invoke a the booty call sms from random friend in $lover list
  510. ! but I cannnot randomize the time because the probability is 100 % now
  511. ! I suppose that the routine will be modified later to take in account the lovers preferences
  512. if booty_call['A0'] ! daystart :
  513. $lover_drawn = $fuckbuddy[rand(0,arrsize('$fuckbuddy')-1)]
  514. gs 'booty_call_sms', 'start',$lover_drawn
  515. ! gs 'booty_call_sms', 'Add SMS', $lover_drawn
  516. booty_call['A0'] = daystart
  517. end
  518. end
  519. --- booty_call ---------------------------------