family_schedule.qsrc 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443
  1. # family_schedule
  2. !!Each action will use '<name>loc' ie. momloc
  3. momloc = 0
  4. sdadloc = 0
  5. anyaloc = 0
  6. kolloc = 0
  7. !!---ANYA---------------------------------------
  8. !! sister_opr_indorf = 1 means Anya is in the village
  9. if sister_opr_indorf = 0:
  10. if week <= 5:
  11. if (hour < 6) or (hour = 6 and minut < 45):
  12. !!Asleep
  13. anyaloc = 1
  14. elseif hour = 7 and minut < 15:
  15. !!Family breakfast
  16. anyaloc = 2
  17. elseif hour = 7 and minut < 30:
  18. !!Helping mom clean up
  19. anyaloc = 3
  20. elseif hour < 8:
  21. !!In Bedroom
  22. anyaloc = 4
  23. elseif hour = 8 and minut < 20:
  24. !!Shower*
  25. anyaloc = 5
  26. elseif hour = 8 and minut < 30:
  27. !!Walk to work
  28. anyaloc = 6
  29. elseif hour < 16:
  30. !!Work
  31. anyaloc = 7
  32. elseif hour = 16 and minut < 10:
  33. !!Walk home from work
  34. anyaloc = 8
  35. elseif hour < 18:
  36. !!Personal activities: Relaxing in bedroom, working out at the community center, etc (this is also the time frame Roma comes over some times)
  37. anyaloc = func('shortgs', 'rand_pick', '', 9, 10, 11)
  38. elseif sisboyday + 1 = daystart and hour = 18:
  39. !!in bedroom with Roma
  40. anyaloc = 25
  41. elseif hour = 18 and minut < 30:
  42. !!Family dinner
  43. anyaloc = 12
  44. elseif hour < 22:
  45. !!Goes out to hang out with friends/Roma (this could be random so sometimes she stays home to give Sveta more time to talk to her)
  46. anyaloc = func('shortgs', 'rand_pick', '', 13, 14, 15)
  47. else
  48. !!In her room
  49. anyaloc = 15
  50. end
  51. else
  52. if week = 7 and hour < 2:
  53. !!Goes to a party
  54. anyaloc = 24
  55. elseif week = 7 and hour = 2 and minut < 20:
  56. !!In her room drunk after party
  57. anyaloc = 26
  58. elseif hour < 9:
  59. !!Asleep
  60. anyaloc = 1
  61. elseif hour = 9 and minut < 20:
  62. !!Eat something in kitchen
  63. anyaloc = 16
  64. elseif hour = 9 and minut < 40:
  65. !!Shower*
  66. anyaloc = 5
  67. elseif hour < 10:
  68. !!In Bedroom
  69. anyaloc = 4
  70. elseif hour < 16:
  71. !!On nice days goes to the beach, sometimes goes to the city with friends, or stays at home watching tv or reading etc
  72. anyaloc = rand(17,19)
  73. elseif hour = 16 and minut < 15:
  74. !!Walk to community center
  75. anyaloc = 20
  76. elseif hour = 17 and minut < 45:
  77. !!Works out at the community center
  78. anyaloc = 21
  79. elseif hour < 18:
  80. !!Walk home
  81. anyaloc = 22
  82. elseif hour = 18 and minut < 30:
  83. !!Family dinner
  84. anyaloc = 12
  85. elseif hour < 19:
  86. if week = 7:
  87. !!helps mom clean up after dinner
  88. anyaloc = 23
  89. else
  90. !!Goes to a party
  91. anyaloc = 24
  92. end
  93. else
  94. if week = 7:
  95. !!in her room
  96. anyaloc = 15
  97. else
  98. !!Goes to a party
  99. anyaloc = 24
  100. end
  101. end
  102. end
  103. end
  104. !!---MOM--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  105. !!momloc [11] = daystart check in salon
  106. !!indorf = 1 means mom is in the village
  107. !!momloc['athome'] = 1 means mom is at home and awake
  108. if indorf = 0:
  109. if week <= 5:
  110. if hour < 5 or (hour = 5 and minut < 30):
  111. !!Asleep, if Sveta knocks she''ll ask to wake Kolka
  112. momloc = 1
  113. elseif hour = 5 and minut < 50:
  114. !!shower
  115. momloc = 2
  116. momloc['athome'] = 1
  117. if vanrPar_suction_dildo > 0:motherQW['bathroom_dildos'] = vanrPar_suction_dildo
  118. elseif hour < 6 or (hour = 6 and minut < 10):
  119. !! Getting dressed in her room and wakes Vladimir, if Sveta walks by she''ll ask to wake Kolka (Occasional morning quicky)
  120. momloc = 3
  121. momloc['athome'] = 1
  122. elseif hour = 6 or (hour = 7 and minut < 30):
  123. momloc = 4
  124. momloc['athome'] = 1
  125. if hour = 6 and minut < 40:
  126. !! Make Breakfast
  127. momloc[1] = 1
  128. elseif hour = 6 and minut < 45:
  129. !! Set breakfast table - ask Sveta to do it if she comes into the kitchen at that time
  130. momloc[1] = 2
  131. elseif hour = 6 or (hour = 7 and minut < 15):
  132. !! Family breakfast
  133. momloc[1] = 3
  134. else
  135. !! Clean up breakfast table
  136. momloc[1] = 4
  137. end
  138. elseif hour = 7 or (hour = 8 and minut < 10):
  139. !!Cleaning random room in the house
  140. !!variable set in cikl
  141. momloc = momcleaning
  142. momloc['athome'] = 1
  143. elseif hour = 8 and minut < 30:
  144. !! Using the shower
  145. momloc = 5
  146. momloc['athome'] = 1
  147. if vanrPar_suction_dildo > 0:motherQW['bathroom_dildos'] = vanrPar_suction_dildo
  148. elseif hour < 16 and week < 5:
  149. !!Working in the cafe. On Friday she stays until 18:00
  150. momloc = 6
  151. momloc['athome'] = 0
  152. elseif hour = 16 and minut < 40 and week < 5:
  153. !!Buying groceries for dinner and other stuff needed for home at the supermarket
  154. momloc = 7
  155. momloc['athome'] = 0
  156. elseif hour < 17 and week < 5:
  157. !!Walking home
  158. momloc = 8
  159. momloc['athome'] = 0
  160. elseif hour = 17 and minut < 50 and week = 5:
  161. !!Working in the cafe. On Friday she stays until 17:50
  162. momloc = 9
  163. momloc['athome'] = 0
  164. elseif hour < 18 and week = 5:
  165. !!Walking home
  166. momloc = 10
  167. momloc['athome'] = 0
  168. elseif hour < 18:
  169. !!Making dinner (On Friday she brings home leftovers from the cafe)
  170. momloc = 11
  171. momloc['athome'] = 1
  172. elseif hour < 19:
  173. !! Cleaning dinner table/Doing dishes
  174. momloc = 12
  175. momloc['athome'] = 1
  176. elseif hour < 20:
  177. if week = 1:
  178. !! Visiting Luda on mondays for 3 hours
  179. momloc = 20
  180. momloc['athome'] = 0
  181. else
  182. !! (cleaning the bathroom, sweeping, mopping, dusting, watching TV, taking a bath, etc in different rooms)
  183. momloc = momcleaning2
  184. momloc['athome'] = 1
  185. if vanrPar_suction_dildo > 0:motherQW['bathroom_dildos'] = vanrPar_suction_dildo
  186. end
  187. elseif hour < 22:
  188. if week = 1:
  189. !! Visiting Luda on mondays for 3 hours
  190. momloc = 20
  191. momloc['athome'] = 0
  192. else
  193. !! Watches TV with Vladimir
  194. momloc = 13
  195. momloc['athome'] = 1
  196. end
  197. else
  198. !! Sleep (Small chance she and step dad have sex before sleep)
  199. momloc = 1
  200. momloc['athome'] = 0
  201. end
  202. else
  203. if hour < 5 or (hour = 5 and minut < 30):
  204. !! Sleep
  205. momloc = 1
  206. elseif hour = 5 and minut < 50:
  207. !! Shower, if Sveta knocks she''ll ask to wake Kolka
  208. momloc = 2
  209. momloc['athome'] = 1
  210. if vanrPar_suction_dildo > 0:motherQW['bathroom_dildos'] = vanrPar_suction_dildo
  211. elseif hour < 6 or (hour = 6 and minut < 10):
  212. !! Getting dressed in her room and wakes Vladimir, if Sveta walks by she''ll ask to wake Kolka (Occasional morning quicky)
  213. momloc = 3
  214. momloc['athome'] = 1
  215. elseif hour = 6 or (hour = 7 and minut < 30):
  216. momloc = 4
  217. momloc['athome'] = 1
  218. if hour = 6 and minut < 40:
  219. !! Make Breakfast
  220. momloc[1] = 1
  221. elseif hour = 6 and minut < 45:
  222. !! Set breakfast table - ask Sveta to do it if she comes into the kitchen at that time
  223. momloc[1] = 2
  224. elseif hour = 6 or (hour = 7 and minut < 15):
  225. !! Family breakfast
  226. momloc[1] = 3
  227. else
  228. momloc[1] = 4
  229. !! Clean up breakfast table
  230. end
  231. elseif hour = 11:
  232. !!Cleaning random room in the house/laundry
  233. !! cleaning kitchen only one in use atm
  234. momloc = 23
  235. momloc['athome'] = 1
  236. elseif hour = 11 and minut < 30:
  237. !! Takes the car to town
  238. momloc = 14
  239. momloc['athome'] = 0
  240. elseif hour < 12 or hour = 12 and minut < 30:
  241. !! Gets her nails done/hair cut at the salon or such things - On Sunday goes to the church during these hours
  242. momloc['athome'] = 0
  243. if week = 5:
  244. momloc = 15
  245. else
  246. momloc = 16
  247. end
  248. elseif hour = 13 and minut < 30 and week = 6:
  249. momloc = 16
  250. elseif hour < 14:
  251. !! Walks around different shops, looking at and buying stuff - On Sunday goes to church during these hours
  252. momloc = 15
  253. momloc['athome'] = 0
  254. elseif hour < 17:
  255. !!Helping out Sergey/Luda, going to Kolka's games?
  256. momloc = rand(14,15)
  257. momloc['athome'] = 0
  258. elseif hour < 18:
  259. !! Making dinner
  260. momloc = 11
  261. momloc['athome'] = 1
  262. elseif hour = 18 and minut < 30:
  263. !!Family dinner (same as the family breakfast, Sveta doesn''t have to join it but we can have some family interactions like mom and step dad asking about how school was etc)
  264. momloc = 12
  265. momloc['athome'] = 1
  266. elseif hour < 19:
  267. !! Cleaning dinner table/Doing dishes
  268. momloc = 13
  269. momloc['athome'] = 1
  270. elseif hour < 21:
  271. !!Says she goes to see her sister, in reality sometimes see's her sister of fucks around with different people. - Sunday goes to evening mass
  272. momloc['athome'] = 0
  273. if week = 5:
  274. momloc = 17
  275. else
  276. momloc = 18
  277. end
  278. elseif hour < 22:
  279. !! Watches TV with Vladimir
  280. momloc = 19
  281. momloc['athome'] = 1
  282. else
  283. !! Sleep (Small chance she and step dad have sex before sleep)
  284. momloc = 1
  285. momloc['athome'] = 0
  286. end
  287. end
  288. end
  289. !!----STEPFATHER------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  290. !!indorf = 1 means stepdad is in the village
  291. if indorf = 0:
  292. if week <= 5:
  293. if hour = 6 and minut < 10:
  294. !! Sleep
  295. sdadloc = 1
  296. elseif hour = 6 and minut < 45:
  297. !!Getting ready, sometimes has quicky
  298. sdadloc = 1
  299. elseif hour = 7 and minut < 15:
  300. !!family breakfast
  301. sdadloc = 4
  302. elseif hour = 7 and minut < 30:
  303. !!Reads paper in kitchen
  304. sdadloc = 4
  305. elseif hour = 8 and minut < 30:
  306. !!Watching TV
  307. sdadloc = 13
  308. elseif hour = 8 and minut < 45:
  309. !! shave/get dressed
  310. sdadloc = 5
  311. elseif hour = 17 and minut < 45:
  312. !! Work (includes lunch time)
  313. sdadloc = 0
  314. elseif hour < 18:
  315. !! Sets the table for dinner
  316. sdadloc = 4
  317. elseif hour = 18 and minut < 30:
  318. !! Family dinner
  319. sdadloc = 4
  320. elseif hour = 19 and minut < 45:
  321. !! In garage or spending time with Misha
  322. sdadloc = 8
  323. elseif hour = 21 and minut < 45:
  324. !! Watch tv in living room
  325. sdadloc = 13
  326. elseif hour < 22:
  327. !! Take shower
  328. sdadloc = 5
  329. else
  330. !! Sleep - (small chance mom and step dad have sex before actually going to sleep)
  331. sdadloc = 1
  332. end
  333. else
  334. if hour = 6 and minut < 45:
  335. sdadloc = 1
  336. elseif hour = 7 and minut < 15:
  337. sdadloc = 1
  338. elseif hour = 7 and minut < 30:
  339. sdadloc = 1
  340. elseif hour < 8:
  341. sdadloc = 5
  342. elseif hour < 9:
  343. sdadloc = 13
  344. elseif hour < 11:
  345. sdadloc = 8
  346. !!I assume that he meet misha/sergey in the garage
  347. elseif hour = 11 and minut < 10:
  348. if week = 6:
  349. sdadloc = 8
  350. !!I assume that he meet misha/sergey in the garage
  351. else
  352. sdadloc = 0
  353. end
  354. elseif hour < 13:
  355. if week = 6:
  356. sdadloc = 8
  357. !!I assume that he meet misha/sergey in the garage
  358. else
  359. sdadloc = 16
  360. end
  361. elseif hour = 13 and minut < 10:
  362. if week = 6:
  363. sdadloc = 8
  364. !!I assume that he meet misha/sergey in the garage
  365. else
  366. sdadloc = 0
  367. end
  368. elseif hour < 18:
  369. sdadloc = 8
  370. elseif hour = 18 and minut < 30:
  371. sdadloc = 4
  372. elseif hour < 22:
  373. sdadloc = 13
  374. else
  375. sdadloc = 1
  376. end
  377. end
  378. end
  379. !!---KOLKA------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  380. !!indorf = 1 means kolka is in the village
  381. if indorf = 0:
  382. if week <= 5:
  383. if hour = 6 and minut < 45:
  384. kolloc = 13
  385. elseif hour = 7 and minut < 15:
  386. kolloc = 4
  387. elseif hour < 8:
  388. kolloc = 0
  389. elseif hour < 14:
  390. kolloc = 0
  391. elseif hour = 16 and minut < 45:
  392. kolloc = func('shortgs', 'rand_pick', '', 10, 11, 12)
  393. elseif hour < 17:
  394. kolloc = 0
  395. elseif hour < 18:
  396. kolloc = 13
  397. elseif hour = 18 and minut < 30:
  398. kolloc = 4
  399. elseif hour = 18 and minut < 45:
  400. kolloc = 0
  401. elseif hour < 21:
  402. kolloc = 10
  403. elseif hour = 21 and minut < 15:
  404. kolloc = 5
  405. elseif hour < 23:
  406. kolloc = 13
  407. else
  408. kolloc = 13
  409. end
  410. else
  411. if hour = 6 and minut < 45:
  412. kolloc = 13
  413. elseif hour = 7 and minut < 15:
  414. kolloc = 4
  415. elseif hour < 10:
  416. kolloc = 13
  417. elseif hour = 13 and minut < 10:
  418. kolloc = 13
  419. elseif hour < 18:
  420. kolloc = func('shortgs', 'rand_pick', '', 8, 10, 11, 12)
  421. elseif hour = 18 and minut < 30:
  422. kolloc = 4
  423. elseif hour < 21:
  424. kolloc = func('shortgs', 'rand_pick', '', 10, 11, 12)
  425. elseif hour = 21 and minut < 15:
  426. kolloc = 5
  427. elseif hour < 23:
  428. kolloc = 13
  429. else
  430. kolloc = 13
  431. end
  432. end
  433. end
  434. --- family_schedule ---------------------------------