Registrarse

Script de warp que no funciona

Estado
Cerrado para nuevas respuestas.
Pues basicamente eso :( se supone que asi exactamente tendria que ir,pero no va ._.

'---------------
#org 0x14DEDF
checkflag 0x1100
lock
faceplayer
msgbox 0x816B0CC MSG_NORMAL '"I just discovered the footprints o..."
waitmovement 0x0
warp 0x2 0x2 0x2 0x6 0x8
setflag 0x1100
release
end


'---------
' Strings
'---------
#org 0x16B0CC
= I just discovered the footprints of\na rare POKéMON!\pWait until I finish sketching\nthem, okay?

A ver si me podeis decir donde falla^^ gracias de ante mano!!
 
Para que pones un waitmovement¿:.¿:.¿:.¿:.¿:., si no hay apply alguno.

Prueba con eso, por lo demas el script parece correcto.

Salu2.
 

cosarara97

Dejad de cambiar de nick
Miembro de honor
Código:
#org 0x14DEDF
checkflag 0x1100                                     'Checkear una flag porque si no tiene mucho sentido
lock
faceplayer
msgbox 0x816B0CC MSG_NORMAL '"I just discovered the footprints o..."
waitmovement 0x0                                     'Esto sobra, quizá es esto lo que falla
warp 0x2 0x2 0x2 0x6 0x8                             'Asegúrate de que esto esta bien
setflag 0x1100
release
end


'---------
' Strings
'---------
#org 0x16B0CC
= I just discovered the footprints of\na rare POKéMON!\pWait until I finish sketching\nthem, okay?

Bueno, pues esto :)


Bye!
 

Gut_Bro

Mega desarrollador
También ten en cuenta que al usar un warp, el Script finaliza.
Todos los comandos que pongas después del Warp serán invalidados, así que ese setflag debería ir antes.
 

Awuis

Usuario mítico
[align=right]El script se repite por que te olvidaste de poner este comando:

if 0x1 goto 0x "Offset".

Se debe poner arriba del checkflag, Luego al compilar el script se te va a agregar otro offset debajo, para que puedas continuar el script con flags. Pero, si no queres ponerle un extra a ese script, simplemente le agregás "end" y ya.

Salu2! n_n
[/align]
 
Le acabo de poner ese comando,y ha quedado asi:
'---------------
#org 0x14DEDF
checkflag 0x1100
if 0x1 goto 0x6B86A6
lock
faceplayer
msgbox 0x816B0CC MSG_NORMAL '"I just discovered the footprints o..."
setflag 0x1100
warp 0x2 0x2 0x2 0x6 0x8
release
end

'---------------
#org 0x835A78

'---------
' Strings
'---------
#org 0x16B0CC
= I just discovered the footprints of\na rare POKéMON!\pWait until I finish sketching\nthem, okay?

Pero en vez de no repetirse se queda freeze el juego :S que falla?
 

Cheve

MoonLover~
Miembro de honor
Amigo, te aconsejo que leas lo que son las variables y su uso...

donde dice

'---------------
#org 0x835A78


Aquí abajo debes poner tu script si la flag 1100 está activada por eso se freeza
 

Awuis

Usuario mítico
[align=right]Hmmm bueno creo que tu script tiene que quedar así:[/align]

'---------------
#org 0x14DEDF
lock
checkflag 0x1100
if 0x1 goto 0x6B86A6
faceplayer
msgbox 0x816B0CC MSG_NORMAL '"I just discovered the footprints o..."
setflag 0x1100
warp 0x2 0x2 0x2 0x6 0x8
release
end

'---------------
#org 0x835A78
end

'---------
' Strings
'---------
#org 0x16B0CC
= I just discovered the footprints of\na rare POKéMON!\pWait until I finish sketching\nthem, okay?

[align=right]Espero que te sirva ;)

Salu2! n_n
[/align]
 
Ken_Troll dijo:
[align=right]Hmmm bueno creo que tu script tiene que quedar así:[/align]

'---------------
#org 0x14DEDF
lock
checkflag 0x1100
if 0x1 goto 0x6B86A6
faceplayer
msgbox 0x816B0CC MSG_NORMAL '"I just discovered the footprints o..."
setflag 0x1100
warp 0x2 0x2 0x2 0x6 0x8
release
end

'---------------
#org 0x835A78
end

'---------
' Strings
'---------
#org 0x16B0CC
= I just discovered the footprints of\na rare POKéMON!\pWait until I finish sketching\nthem, okay?

[align=right]Espero que te sirva ;)

Salu2! n_n
[/align]
Exacto,lo acabo de probar y va perfecto^^
muchas gracias a todos!
 
Estado
Cerrado para nuevas respuestas.
Arriba