booty_call.tw 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445
  1. :: booty_call
  2. <<set $here = 'booty_call'>>
  3. <<set $ARGS = $location_var[$here]>>
  4. <<if $location_var[$here][0] == 'scheduler'>>
  5. <!-- !! clear SMS-->
  6. <!-- !! clear schedule-->
  7. <<set $booty_call_time to null>>
  8. <<set $npc_booty_call to null>>
  9. <<set $npc_booty_call_time to null>>
  10. <<set $i = 0>>
  11. <<gs 'booty_call' 'scheduler2'>>
  12. <</if>>
  13. <<if $location_var[$here][0] == 'scheduler2'>>
  14. <<if $i <= arrsize('$fuckbuddy')>>
  15. <<gs 'booty_call' 'npc_stat_update'>>
  16. <!-- !! 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:-->
  17. <!-- !! temporary removal of npc_rel requirement until boy initiated breakups can occur-->
  18. <!-- !! 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):-->
  19. <<if $npcs.get($boy,'booty_call_date') != $time.daystart and (rand(1,10) <= $npcs.get($FuckBuddy[$i,'sexdrive')] or $npcs.get($FuckBuddy[$i,'booty_call')] == daystart) and $npcs.get($FuckBuddy[$i,'no_booty_call')] != $time.daystart>>
  20. <<gs 'booty_call' 'scheduler3'>>
  21. <<else>>
  22. <<setinit $npcs.get($FuckBuddy[$i,'no_booty_call')] = $time.daystart>>
  23. <</if>>
  24. <<set $i += 1>>
  25. <<gs 'booty_call' 'scheduler2'>>
  26. <</if>>
  27. <</if>>
  28. <<if $location_var[$here][0] == 'scheduler3'>>
  29. <<if $npcs.get($FuckBuddy[$i,'booty_call')] == $time.daystart>>
  30. <<setinit $booty_call_time[$FuckBuddy[$i]] = (($npcs.get($FuckBuddy[$i,'booty_call_time')] * 60) + rand(0,180))>>
  31. <<elseif $time.weekday == $npcs.get($FuckBuddy[$i,'day_off')]>>
  32. <<setinit $booty_call_time[$FuckBuddy[$i]] = (600 + rand(0,720))>>
  33. <<elseif $time.weekday != $npcs.get($FuckBuddy[$i,'day_off')]>>
  34. <<setinit $booty_call_time[$FuckBuddy[$i]] = (rand(npc_start_free_time[$FuckBuddy[$i]],($npcs.get($FuckBuddy[$i,'end_free_time')] - 1)) * 60) + rand(0,180)>>
  35. <<else>>
  36. <<setinit $booty_call_time[$FuckBuddy[$i]] = 2000>>
  37. <</if>>
  38. <</if>>
  39. <!-- !! if npc_start_free_time[$FuckBuddy[$i]] = 0 or npc_day_off[$FuckBuddy[$i]] = 0 or npc_end_free_time[$FuckBuddy[$i]] = 0:-->
  40. <!-- !! $boy = $FuckBuddy[$i]-->
  41. <!-- !! end-->
  42. <!-- !! 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:-->
  43. <!-- !! elseif week < 6:-->
  44. <!-- !! booty_call_time[$FuckBuddy[$i]] = 900 + rand(0,210)-->
  45. <!-- !! else-->
  46. <!-- !! booty_call_time[$FuckBuddy[$i]] = 600 + rand(0,720)-->
  47. <<if $location_var[$here][0] == 'set_booty_call_date'>>
  48. <<if getvar("$sex_ev['invite_today']") == 1>>
  49. <<run $npcs.set($boy,'booty_call_date',$time.daystart)>>
  50. <<elseif getvar("$sex_ev['invite_tomorrow']") == 1>>
  51. <<run $npcs.set($boy,'booty_call_date',$time.daystart + 1)>>
  52. <</if>>
  53. <<if $npcs.get($boy,'booty_call_time') == 0>>
  54. <<run $npcs.set($boy,'booty_call_time',$npcs.get($boy,'start_free_time'))>>
  55. <</if>>
  56. <</if>>
  57. <<if $location_var[$here][0] == 'block_booty_calls'>>
  58. <<if getvar("$sex_ev['invite_today']") == 1>>
  59. <<run $npcs.set($boy,'booty_call_date',0)>>
  60. <<run $npcs.set($boy,'no_booty_call',$time.daystart)>>
  61. <<run $npcs.set($boy,'booty_call_time',0)>>
  62. <<elseif getvar("$sex_ev['invite_tomorrow']") == 1>>
  63. <<run $npcs.set($boy,'no_booty_call',$time.daystart + 1)>>
  64. <</if>>
  65. <</if>>
  66. <<if $location_var[$here][0] == 'SMS raiser'>>
  67. <<set $i = 0>>
  68. <<warn 'JUMP MARKER ENCOUNTERED: :booty_call_sms_raiser_loop'>>
  69. <<if $i < arrsize('$FuckBuddy')>>
  70. <<if $booty_call_time[$FuckBuddy[$i]] < ((hour * 60) + minut) and $npcs.get($FuckBuddy[$i,'no_booty_call')] != $time.daystart and $npcs.get($boy,'last_booty_call') != $time.daystart>>
  71. <<gs 'booty_call_sms' 'start' $FuckBuddy[$i]>>
  72. <<gs 'booty_call_sms' 'Add SMS' $FuckBuddy[$i]>>
  73. <<setinit $booty_call_time[$FuckBuddy[$i]] = 2399>>
  74. <!-- !! this is a bit superfluous, but it makes the code run faster.-->
  75. <<setinit $booty_call_invite[$FuckBuddy[$i]] = $time.daystart>>
  76. <</if>>
  77. <<set $i += 1>>
  78. <<warn 'JUMP COMMAND ENCOUNTERED: jump booty_call_sms_raiser_loop'>>
  79. <</if>>
  80. <</if>>
  81. <<if $location_var[$here][0] == 'home_links'>>
  82. <<set $i = 0>>
  83. <<warn 'JUMP MARKER ENCOUNTERED: :loopBC_homes'>>
  84. <<if ($npcs.get($Fuckbuddy[$i,'residence')] == 1 and $loc == 'pav_residential') or ($npcs.get($Fuckbuddy[$i,'residence')] == 3 and $loc == 'city_residential')or $CON_HELPER_2>>
  85. <!-- !! dynamic(' ''<a href="exec: minut += 2 & gt ''''sex_ev_start'''',''''fb_npc_home_start'''',''''<<$Fuckbuddy[$i]>>'''' "><<<<=$npcs.get($Fuckbuddy[$i,'firstname')>>]>>''''s</a> apartment is nearby.'' ')-->
  86. dynamic(' ''<<link '<<<<=$npcs.get($Fuckbuddy[$i,'firstname')>>]>>''''s'>><<setn $time.minutes += 2>><<gt ''sex_ev_start'' ''initiate_pre'' ''<<$Fuckbuddy[$i]>>'' >><</link>> apartment is nearby.'' ')
  87. <!-- !! ''''-->
  88. <</if>>
  89. <<set $i += 1>>
  90. <<if $i < arrsize('$Fuckbuddy')>>
  91. <<warn 'JUMP COMMAND ENCOUNTERED: jump loopBC_homes'>>
  92. <</if>>
  93. <</if>>
  94. <<if $location_var[$here][0] == 'text'>>
  95. <!-- !! boy code?-->
  96. <!-- !! IMAGE HERE-->
  97. <p>Your phone buzzes and you pull it out to see what's happening. It's a text from [boy code here].</p>
  98. <!-- FAILED TO CONVERT
  99. ' <b><font color="blue">hey <<$pc.name_nick>></font></b>'
  100. -----
  101. <<set ERROR: FAILED TO CONVERT LITERAL: """' <b><font color""" = ERROR: FAILED TO CONVERT LITERAL: """"blue">hey $pc.name_nick<""" / ERROR: FAILED TO CONVERT LITERAL: """font><""" / ERROR: FAILED TO CONVERT LITERAL: """b>'""">>
  102. -->
  103. <<warn "CONVERSION ERROR f08a08a605a0bdedd08d47b3ed153019">>
  104. <b><font color="pink">hey yourself</font></b>
  105. you text back.
  106. <b><font color="blue">i was thinking about you today</font></b>
  107. <<actCLA 'What about?'>>
  108. <!-- !! IMAGE HERE-->
  109. <b><font color="blue">i was thinking about you today</font></b>
  110. <b><font color="pink">what were you thinking about?</font></b>
  111. <<setinit $booty_call['text'] = rand(1,3)>>
  112. <<if getvar("$booty_call['text']") == 1>>
  113. <b><font color="blue">wanted to know if you wanted to come over to my place</font></b>
  114. <!-- FAILED TO CONVERT
  115. ' <b><font color="blue">have some fun?</font></b>'
  116. -----
  117. <<set ERROR: FAILED TO CONVERT LITERAL: """' <b><font color""" = ERROR: FAILED TO CONVERT LITERAL: """"blue">have some fun?<""" / ERROR: FAILED TO CONVERT LITERAL: """font><""" / ERROR: FAILED TO CONVERT LITERAL: """b>'""">>
  118. -->
  119. <<warn "CONVERSION ERROR 9f45628758b6f716741830d1c3d2f95d">>
  120. You think you know what kind of fun he wants.
  121. <<elseif getvar("$booty_call['text']") == 2>>
  122. <b><font color="blue">your mouth around my cock</font></b>
  123. You think you know what kind of fun he wants.
  124. <<elseif getvar("$booty_call['text']") == 3>>
  125. <b><font color="blue">fucking you on my couch</font></b>
  126. You think you know what kind of fun he wants.
  127. <</if>>
  128. <</actCLA>>
  129. <<actCLA 'Me too'>>
  130. <<gt ''>>
  131. <</actCLA>>
  132. <<actCLA 'About fucking me?'>>
  133. <<gt ''>>
  134. <</actCLA>>
  135. <</if>>
  136. <<if $location_var[$here][0] == 'invite_yourself'>>
  137. <</if>>
  138. <<if $location_var[$here][0] == 'get_invited'>>
  139. <<if rand(0,1) == 1>>
  140. <p>"Why don't you come over to my place right now and we can have some fun?"</p>
  141. <<else>>
  142. <p>"Why don't you come over to my place tonight and we can have some fun?"</p>
  143. <</if>>
  144. <</if>>
  145. <!-- !! ----------------------- text dialogue saved for possible future usage later ----------------------------------------->
  146. <<if $location_var[$here][0] == 'text1'>>
  147. <!-- !! boy code?-->
  148. <!-- !! missing code-->
  149. <!-- !! IMAGE HERE-->
  150. <p>Your phone buzzes and you pull it out to see what's happening. It's a text from [boy code here].</p>
  151. <!-- FAILED TO CONVERT
  152. ' <b><font color="blue">hey <<$pc.name_nick>></font></b>'
  153. -----
  154. <<set ERROR: FAILED TO CONVERT LITERAL: """' <b><font color""" = ERROR: FAILED TO CONVERT LITERAL: """"blue">hey $pc.name_nick<""" / ERROR: FAILED TO CONVERT LITERAL: """font><""" / ERROR: FAILED TO CONVERT LITERAL: """b>'""">>
  155. -->
  156. <<warn "CONVERSION ERROR f08a08a605a0bdedd08d47b3ed153019">>
  157. <b><font color="pink">hey yourself</font></b>
  158. you text back.
  159. <b><font color="blue">i was thinking about you today</font></b>
  160. <<actCLA 'What about?'>>
  161. <!-- !! IMAGE HERE-->
  162. <b><font color="blue">i was thinking about you today</font></b>
  163. <b><font color="pink">what were you thinking about?</font></b>
  164. <<setinit $booty_call['text'] = rand(1,3)>>
  165. <<if getvar("$booty_call['text']") == 1>>
  166. <b><font color="blue">wanted to know if you wanted to come over to my place</font></b>
  167. <!-- FAILED TO CONVERT
  168. ' <b><font color="blue">have some fun?</font></b>'
  169. -----
  170. <<set ERROR: FAILED TO CONVERT LITERAL: """' <b><font color""" = ERROR: FAILED TO CONVERT LITERAL: """"blue">have some fun?<""" / ERROR: FAILED TO CONVERT LITERAL: """font><""" / ERROR: FAILED TO CONVERT LITERAL: """b>'""">>
  171. -->
  172. <<warn "CONVERSION ERROR 9f45628758b6f716741830d1c3d2f95d">>
  173. You think you know what kind of fun he wants.
  174. <<elseif getvar("$booty_call['text']") == 2>>
  175. <b><font color="blue">your mouth around my cock</font></b>
  176. <<elseif getvar("$booty_call['text']") == 3>>
  177. <b><font color="blue">fucking you on my bed</font></b>
  178. <</if>>
  179. <<gs 'booty_call_start' 'text2'>>
  180. <</actCLA>>
  181. <<actCLA 'Me too'>>
  182. <!-- !! IMAGE HERE-->
  183. <b><font color="blue">i was thinking about you today</font></b>
  184. <b><font color="pink">me too</font></b>
  185. <b><font color="blue">come over</font></b>
  186. <!-- !! booty_call['text'] = rand(1,3)-->
  187. <!-- !! if booty_call['text'] = 1:-->
  188. <b><font color="blue">lets fuck like bunnies</font></b>
  189. <</actCLA>>
  190. <</if>>
  191. <<if $location_var[$here][0] == 'text2'>>
  192. <<actCLA 'Can`t'>>
  193. <b><font color="pink">sorry, i cant</font></b>
  194. <b><font color="pink">i have stuff to do</font></b>
  195. <b><font color="blue">shit</font></b>
  196. <b><font color="blue">maybe next time then</font></b>
  197. <<actCLA 'Put your phone away'>>
  198. <<gt 'somewhere'>>
  199. <</actCLA>>
  200. <</actCLA>>
  201. <<actCLA 'I`m on my way'>>
  202. <b><font color="pink">ill come right now ;)</font></b>
  203. <<if $npcs.get($boy,'humor') <= 1>>
  204. <b><font color="blue">my cock is waiting for you</font></b>
  205. <<elseif $npcs.get($boy,'humor') == 2>>
  206. <!-- FAILED TO CONVERT
  207. ' <b><font color="blue">in the street?</font></b>'
  208. -----
  209. <<set ERROR: FAILED TO CONVERT LITERAL: """' <b><font color""" = ERROR: FAILED TO CONVERT LITERAL: """"blue">in the street?<""" / ERROR: FAILED TO CONVERT LITERAL: """font><""" / ERROR: FAILED TO CONVERT LITERAL: """b>'""">>
  210. -->
  211. <<warn "CONVERSION ERROR 0cff969b5b0db0ddc669deb1d20d915f">>
  212. <!-- FAILED TO CONVERT
  213. ' <b><font color="blue">damn!</font></b>'
  214. -----
  215. <<set ERROR: FAILED TO CONVERT LITERAL: """' <b><font color""" = ERROR: FAILED TO CONVERT LITERAL: """"blue">damn!<""" / ERROR: FAILED TO CONVERT LITERAL: """font><""" / ERROR: FAILED TO CONVERT LITERAL: """b>'""">>
  216. -->
  217. <<warn "CONVERSION ERROR ae5d8642a0ebd65f8db31a226316cd5e">>
  218. <!-- FAILED TO CONVERT
  219. ' <b><font color="blue">keep it in your pants till you get here!</font></b>'
  220. -----
  221. <<set ERROR: FAILED TO CONVERT LITERAL: """' <b><font color""" = ERROR: FAILED TO CONVERT LITERAL: """"blue">keep it in your pants till you get here!<""" / ERROR: FAILED TO CONVERT LITERAL: """font><""" / ERROR: FAILED TO CONVERT LITERAL: """b>'""">>
  222. -->
  223. <<warn "CONVERSION ERROR 4689f1a404008ebfa5e2aea4add3efe7">>
  224. <<elseif $npcs.get($boy,'humor') == 3>>
  225. <b><font color="blue">phrasing</font></b>
  226. <</if>>
  227. <!-- !! missing code-->
  228. <!-- !! confirm player is coming over-->
  229. <<actCLA 'Put away your phone'>>
  230. <<gt $location>>
  231. <</actCLA>>
  232. <</actCLA>>
  233. <<actCLA 'I`ll swing by later'>>
  234. <b><font color="pink">not right now</font></b>
  235. <b><font color="pink">but i can come by later?</font></b>
  236. <!-- FAILED TO CONVERT
  237. ' <b><font color="blue">when?</font></b>'
  238. -----
  239. <<set ERROR: FAILED TO CONVERT LITERAL: """' <b><font color""" = ERROR: FAILED TO CONVERT LITERAL: """"blue">when?<""" / ERROR: FAILED TO CONVERT LITERAL: """font><""" / ERROR: FAILED TO CONVERT LITERAL: """b>'""">>
  240. -->
  241. <<warn "CONVERSION ERROR 13ce8ca767d7ce6efde3f8b089df96d7">>
  242. <<actCLA 'Pick a time'>>
  243. <!-- !! IMAGE HERE-->
  244. <!-- !! missing code-->
  245. <!-- !! fix this code to work with this event-->
  246. <!-- FAILED TO CONVERT
  247. 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]")
  248. -----
  249. <<setinit $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)>>. [ERROR: FAILED TO CONVERT LITERAL: """Enter the hour only <<hour>>""" - 22]")>>
  250. -->
  251. <<warn "CONVERSION ERROR b1550f1e5eead11f3c148b0bf3a338ce">>
  252. <<if $contMeetHour[$Call4Date["ContactIndex"]] <= $time.hour or $contMeetHour[$Call4Date["ContactIndex"]] > 23>>
  253. <<setinit $contMeetHour[$Call4Date["ContactIndex"]] = 20>>
  254. <</if>>
  255. <b><font color="pink">maybe around <<contMeetHour[Call4Date["ContactIndex"]]>>:00?</font></b>
  256. <p>"How about contMeetHour[$Call4Date["ContactIndex"]]:00?."</p>
  257. <p>$Call4Date["CallerName"], "Okay $Call4Date["SvetaName"], see you at contMeetHour[$Call4Date["ContactIndex"]]:00."</p>
  258. <<actCLA 'Put away your phone'>>
  259. <<gt $location>>
  260. <</actCLA>>
  261. <</actCLA>>
  262. <</actCLA>>
  263. <</if>>
  264. <<if $location_var[$here][0] == 'invite_yourself1'>>
  265. <!-- !! boy code?-->
  266. <!-- !! missing code-->
  267. <!-- !! IMAGE HERE-->
  268. You tap out a quick message on your and hit send.
  269. <b><font color="pink">hey</font></b>
  270. <b><font color="pink">doing anything right now?</font></b>
  271. <!-- !! missing code-->
  272. <!-- !! better way of randomizing this? personality based?-->
  273. <<if rand(1,3) == 3>>
  274. You don't receive a response. He must be busy.
  275. <<actCLA 'Put away your phone'>>
  276. <<gt $location>>
  277. <</actCLA>>
  278. <<elseif rand(1,2) == 2 and $time.hour < 18>>
  279. <b><font color="blue">im at work</font></b>
  280. <<actCLA 'Sorry, never mind'>>
  281. <b><font color="pink">oh</font></b>
  282. <b><font color="pink">sorry</font></b>
  283. <b><font color="pink">never mind</font></b>
  284. <b><font color="pink">i''ll text you later</font></b>
  285. <<actCLA 'Put away your phone'>>
  286. <<gt $location>>
  287. <</actCLA>>
  288. <</actCLA>>
  289. <<actCLA 'This is a booty call'>>
  290. <b><font color="pink">when do you get off?</font></b>
  291. <b><font color="pink">this is a booty call</font></b>
  292. <b><font color="blue">ill probably be free at 19:00</font></b>
  293. <!-- FAILED TO CONVERT
  294. ' <b><font color="blue">wanna come then?</font></b>'
  295. -----
  296. <<set ERROR: FAILED TO CONVERT LITERAL: """' <b><font color""" = ERROR: FAILED TO CONVERT LITERAL: """"blue">wanna come then?<""" / ERROR: FAILED TO CONVERT LITERAL: """font><""" / ERROR: FAILED TO CONVERT LITERAL: """b>'""">>
  297. -->
  298. <<warn "CONVERSION ERROR 3445c16f1817f3d498793604957b23fa">>
  299. <<gs 'booty_call_start' 'invite_yourself2'>>
  300. <</actCLA>>
  301. <<actCLA 'I wanna fuck'>>
  302. <b><font color="pink">i wanna fuck</font></b>
  303. <b><font color="pink">when do you get off?</font></b>
  304. <b><font color="blue">ill probably be free at 19:00</font></b>
  305. <!-- FAILED TO CONVERT
  306. ' <b><font color="blue">wanna come then?</font></b>'
  307. -----
  308. <<set ERROR: FAILED TO CONVERT LITERAL: """' <b><font color""" = ERROR: FAILED TO CONVERT LITERAL: """"blue">wanna come then?<""" / ERROR: FAILED TO CONVERT LITERAL: """font><""" / ERROR: FAILED TO CONVERT LITERAL: """b>'""">>
  309. -->
  310. <<warn "CONVERSION ERROR 3445c16f1817f3d498793604957b23fa">>
  311. <<gs 'booty_call_start' 'invite_yourself2'>>
  312. <</actCLA>>
  313. <<else>>
  314. <b><font color="blue">i was thinking about your naked body in my bed</font></b>
  315. <<actCLA 'How about right now?'>>
  316. <b><font color="pink">then we're on the same page</font></b>
  317. <b><font color="pink">can i come over now?</font></b>
  318. <b><font color="blue">yes</font></b>
  319. <b><font color="blue">hurry</font></b>
  320. <b><font color="blue">i want to fuck you right now</font></b>
  321. <b><font color="pink">i''m on my way <3</font></b>
  322. <!-- !! missing code-->
  323. <<actCLA 'Put away your phone'>>
  324. <<gt $location>>
  325. <</actCLA>>
  326. <</actCLA>>
  327. <<actCLA 'Can I come later?'>>
  328. <!-- !! missing code-->
  329. <!-- FAILED TO CONVERT
  330. 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]")
  331. -----
  332. <<setinit $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)>>. [ERROR: FAILED TO CONVERT LITERAL: """Enter the hour only <<hour>>""" - 22]")>>
  333. -->
  334. <<warn "CONVERSION ERROR b1550f1e5eead11f3c148b0bf3a338ce">>
  335. <<if $contMeetHour[$Call4Date["ContactIndex"]] <= $time.hour or $contMeetHour[$Call4Date["ContactIndex"]] > 23>>
  336. <<setinit $contMeetHour[$Call4Date["ContactIndex"]] = 20>>
  337. <</if>>
  338. <b><font color="pink">then we're on the same page</font></b>
  339. <b><font color="pink">but i''m just trying to plan my day</font></b>
  340. <b><font color="pink">can i come over at <<contMeetHour[Call4Date["ContactIndex"]]>>:00?</font></b>
  341. <!-- FAILED TO CONVERT
  342. ' <b><font color="blue">what the fuck am i supposed to do until then?</font></b>'
  343. -----
  344. <<set ERROR: FAILED TO CONVERT LITERAL: """' <b><font color""" = ERROR: FAILED TO CONVERT LITERAL: """"blue">what the fuck am i supposed to do until then?<""" / ERROR: FAILED TO CONVERT LITERAL: """font><""" / ERROR: FAILED TO CONVERT LITERAL: """b>'""">>
  345. -->
  346. <<warn "CONVERSION ERROR cbe20acf88759157f25acc2c5c6b2282">>
  347. <<actCLA 'I don`t know'>>
  348. <b><font color="pink">i dont know</font></b>
  349. <b><font color="pink">figure something out til i get there</font></b>
  350. <<actCLA 'Put away your phone'>>
  351. <<gt $location>>
  352. <</actCLA>>
  353. <</actCLA>>
  354. <<actCLA 'Try to stay hard'>>
  355. <b><font color="pink">just try to stay hard</font></b>
  356. <b><font color="pink">i don't want to get there and find out my meat stick has gone soft</font></b>
  357. <<actCLA 'Put away your phone'>>
  358. <<gt $location>>
  359. <</actCLA>>
  360. <</actCLA>>
  361. <<actCLA 'Dream on it'>>
  362. <b><font color="pink">dream on it ;)</font></b>
  363. <<actCLA 'Put away your phone'>>
  364. <<gt $location>>
  365. <</actCLA>>
  366. <</actCLA>>
  367. <</actCLA>>
  368. <</if>>
  369. <</if>>
  370. <<if $location_var[$here][0] == 'invite_yourself2'>>
  371. <<actCLA 'I`m busy then'>>
  372. <b><font color="pink">shit</font></b>
  373. <b><font color="pink">im busy then</font></b>
  374. <b><font color="pink">maybe another day</font></b>
  375. <!-- !! missing code-->
  376. <!-- !! add prevention so you can't ask again today-->
  377. <<actCLA 'Put away your phone'>>
  378. <<gt $location>>
  379. <</actCLA>>
  380. <</actCLA>>
  381. <<actCLA 'Yes'>>
  382. <b><font color="pink">yeah, id like to come around that time ;)</font></b>
  383. <b><font color="blue">great</font></b>
  384. <!-- !! missing code-->
  385. <!-- !! add event to schedule-->
  386. <<actCLA 'Put away your phone'>>
  387. <<gt $location>>
  388. <</actCLA>>
  389. <</actCLA>>
  390. <</if>>
  391. <<if $location_var[$here][0] == 'get_invited'>>
  392. <<if rand(0,1) == 1>>
  393. <p>"Why don't you come over to my place right now and we can have some fun?"</p>
  394. <<else>>
  395. <p>"Why don't you come over to my place tonight and we can have some fun?"</p>
  396. <</if>>
  397. <</if>>
  398. <!-- !! ------------ NPC Stat Updater -------------------------->
  399. <<if $location_var[$here][0] == 'npc_stat_update'>>
  400. <<if $npcs.get($FuckBuddy[$i,'start_free_time')] == 0 or $npcs.get($FuckBuddy[$i,'day_off')] == 0>>
  401. <<if $npcs.get($FuckBuddy[$i,'finance')] == 0>>
  402. <<if rand(1,3) == 1>>
  403. <<setinit $npcs.get($FuckBuddy[$i,'start_free_time')] = 9>>
  404. <<setinit $npcs.get($FuckBuddy[$i,'end_free_time')] = 12>>
  405. <<elseif rand(1,2) == 1>>
  406. <<setinit $npcs.get($FuckBuddy[$i,'start_free_time')] = 16>>
  407. <<setinit $npcs.get($FuckBuddy[$i,'end_free_time')] = 20>>
  408. <<else>>
  409. <<setinit $npcs.get($FuckBuddy[$i,'start_free_time')] = 20>>
  410. <<setinit $npcs.get($FuckBuddy[$i,'end_free_time')] = 23>>
  411. <</if>>
  412. <<elseif $npcs.get($FuckBuddy[$i,'finance')] == 1>>
  413. <<if rand(1,2) == 1>>
  414. <<setinit $npcs.get($FuckBuddy[$i,'start_free_time')] = 9>>
  415. <<setinit $npcs.get($FuckBuddy[$i,'end_free_time')] = 12>>
  416. <<else>>
  417. <<setinit $npcs.get($FuckBuddy[$i,'start_free_time')] = 20>>
  418. <<setinit $npcs.get($FuckBuddy[$i,'end_free_time')] = 23>>
  419. <</if>>
  420. <<elseif $npcs.get($FuckBuddy[$i,'finance')] == 2>>
  421. <<setinit $npcs.get($FuckBuddy[$i,'apt_type')] = 5>>
  422. <!-- !!npc_apt_type[$npclastgenerated] = rand(5,6)-->
  423. <!-- !! apt_type 6 is disabled until pictures are added-->
  424. <<setinit $npcs.get($FuckBuddy[$i,'occupation')] = rand(14,18)>>
  425. <<setinit $npcs.get($FuckBuddy[$i,'car')] = rand(0,1)>>
  426. <</if>>
  427. <<setinit $npcs.get($FuckBuddy[$i,'day_off')] = rand(1,7)>>
  428. <</if>>
  429. <</if>>