I have problem with the dialog and run script commands.
In my game I want to finish the dialog and then to move my character to a new room,but when I use Run dialog,and then NewRoomEx, My character disappears immediately after the dialog starts ???
I hope you undestand me ;D
You could try something like this:
@S
return
@1
character: blahblahblah
run-script 1
function dialog_request(int value) {
if (value == 1) {
NewRoomEx(2,160,100);
}
}
Or is that how you already have it?
~Wolfgang
Thankz It helped me ;D