You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
if (target_mode == 0 && (x < limit_left || x > limit_right))
|
|
{
|
|
targetx2 = (room_width / 2)
|
|
target_mode = 1
|
|
}
|
|
if (target_mode == 0)
|
|
{
|
|
targetx = oCharacter.x
|
|
targety = oCharacter.y
|
|
}
|
|
else if (target_mode == 1)
|
|
{
|
|
targetx = targetx2
|
|
targety = y
|
|
}
|