- Jul 16, 2020
- 4
- 0
I am trying make open world like milfy city. When I click the kitchen door I want to stay in kitchen but when I click the door I enter the kitchen, exit there and return the corridor. It's happening one click. How can ı stay in the kitchen when I click the door. I wrote my code below and my kitchen and corridor pictures.
Code:
#script file
define u = Character("Ben")
label start:
"hello"
scene image1
"asd"
label firstdate:
scene image3
"this is my first date"
call screen myfirstscreen
#another file
screen myfirstscreen():
modal True
add "image1"
imagebutton:
focus_mask True
idle "image4"
hover "image2"
action Jump("firstdate")