13472-Problema_con_Movimiento_de_la_Cámara.
#2
Milotix 12267
Mira, no hay error.

Para ver si andaba bien, lo compile yo mismo en un rom, te pongo el compilado para mostrarte donde creo que esta el error:

'-----------------------
#org 0x805358
lock
applymovement 0x1 0x88053A7
waitmovement 0x1
applymovement MOVE_PLAYER 0x88053AA
waitmovement 0xFF
special 0x113
applymovement MOVE_CAMERA 0x88053AD
waitmovement 0x0
special 0x114
applymovement 0x1 0x880687A
special 0x113
applymovement MOVE_CAMERA 0x88068AA
waitmovement 0x0
special 0x114
waitmovement 0x1
setvar 0x5000 0x1
warp 0x1 0x1 0x1 0x1 0x4
release
end


La cámara se sigue moviendo porque así se le marco, si lo que tu quieres es que al finalizar el primer moviento espere un poco antes de moverse, entonces usas el comando pause.

'-----------------------
#org 0x805358
lock
applymovement 0x1 0x88053A7
waitmovement 0x1
applymovement MOVE_PLAYER 0x88053AA
waitmovement 0xFF
special 0x113
applymovement MOVE_CAMERA 0x88053AD
waitmovement 0x0
special 0x114
pause 0x30
applymovement 0x1 0x880687A
special 0x113
applymovement MOVE_CAMERA 0x88068AA
waitmovement 0x0
special 0x114
waitmovement 0x1
setvar 0x5000 0x1
warp 0x1 0x1 0x1 0x1 0x4
release
end


Espero haberte ayudado.

Saludos!