- May 18, 2017
- 87
- 82
I've been looking into my issue with only getting the rude intro for Myrabelle and nothing else. I understand the next step is the Gaming Cafe Opening Event which has the following checks:
def myra_gaming_cafe_opening_requirement():
if gaming_cafe_is_business_hours() and alexia.is_employee() and mc.business.days_since_event("myra_rude_intro") >= TIER_2_TIME_DELAY and alexia.days_employed > TIER_1_TIME_DELAY:
return True
return False
alexia.is_employee() Returns True
mc.business.days_since_event("myra_rude_intro") Returns 298
TIER_2_TIME_DELAY Returns 7
alexia.days_employed Returns 264
TIER_1_TIME_DELAY Returns 3
I should meet this requirement, except gaming_cafe_is_business_hours() always returns False every time of day every day of the week.
Can anyone answer how and when the Gaming Cafe business hours are defined? I'm trying to read through the code to figure that out now...
def myra_gaming_cafe_opening_requirement():
if gaming_cafe_is_business_hours() and alexia.is_employee() and mc.business.days_since_event("myra_rude_intro") >= TIER_2_TIME_DELAY and alexia.days_employed > TIER_1_TIME_DELAY:
return True
return False
alexia.is_employee() Returns True
mc.business.days_since_event("myra_rude_intro") Returns 298
TIER_2_TIME_DELAY Returns 7
alexia.days_employed Returns 264
TIER_1_TIME_DELAY Returns 3
I should meet this requirement, except gaming_cafe_is_business_hours() always returns False every time of day every day of the week.
Can anyone answer how and when the Gaming Cafe business hours are defined? I'm trying to read through the code to figure that out now...