Quote:
Originally Posted by linkandzelda
its just in shiny gold i have got to goldenrod city and the egg hatched. i got to goldenrod in my hack and the egg still says it wont hatch for a long time.
if your sure then ok.
thanks
link
|
Make a copy of your rom... and in one of them change the amount of steps that it takes for togepi to hatch to something smaller, like 100 steps.
Ps. My egg hatched on the way to olivine when I played Shiny Gold, remeber that it's not a time based thing... It hatches on the amount of steps that you take.
Quote:
Originally Posted by spenceroone3
Oh I see! Why didn't I before? Here is your script, all fixed up ;)
Code:
#org $begin
checkflag 0x999
if B_true goto $done
applymovement 0x06 $move1
applymovement 0x07 $move2
pause 0x70
message $message1
boxset 6
applymovement 0xFF $move3
pause 0x20
applymovement 0x06 $move4
applymovement 0x07 $move5
pause 0x170
setflag 0x999
release
end
#org $done
release
end
#org $move1
$move1 1 ; #binary 0x12 0x12 0x11 0x12 0x11 0x11 0x63 0xFE
#org $move2
$move2 1 ; #binary 0x12 0x12 0x12 0x11 0x12 0x11 0x63 0xFE
#org $message1
$message1 1 = Hey you! You're \v\h01 right?!\nWe are Team Forester!\pProf. Andreas aked us to wait \nand meet you here.\pWe are there wherever you are!\nAnd we will help you on your journey!\pWe have to go now!\nSee ya later...
#org $move3
$move3 1 ; #binary 0x11 0x13 0xFE
#org $move4
$move4 1 ; #binary 0x11 0x11 0x11 0x11 0x12 0x12 0x12 0x11 0x11 0x12 0x12 0x12 0x12 0x12 0x10 0x10 0x60 0xFE
#org $move5
$move5 1 ; #binary 0x11 0x11 0x11 0x11 0x11 0x12 0x12 0x12 0x11 0x11 0x12 0x12 0x12 0x12 0x10 0x10 0x60 0xFE
You just forgot the $move 1 ; bits. by the way, do you use ScriptEd?
|
Actually, it won't compile due to runtime error 13..
I'll fix it. Use this script, It will compile now.
Code:
#org $begin
checkflag 0x999
if B_true goto $done
applymovement 0x06 $move1
applymovement 0x07 $move2
pause 0x70
message $message1
boxset 6
applymovement 0xFF $move3
pause 0x20
applymovement 0x06 $move4
applymovement 0x07 $move5
pause 0x170
setflag 0x999
release
end
#org $done
release
end
#org $move1
$move1 1 ; #binary 0x12 0x12 0x11 0x12 0x11 0x11 0x63 0xFE
#org $move2
$move2 1 ; #binary 0x12 0x12 0x12 0x11 0x12 0x11 0x63 0xFE
#org $message1
$message1 1 = Hey you! You're \v\h01 right?!\nWe are Team Forester!\pProf. Andreas aked us to wait \nand meet you here.\pWe are there wherever you are!\nAnd we will help you on your journey!\pWe have to go now!\nSee ya later...
#org $move3
$move3 1 ; #binary 0x11 0x13 0xFE
#org $move4
#raw 0x11 0x11 0x11 0x11 0x12
#raw 0x12 0x12 0x11 0x11 0x12
#raw 0x12 0x12 0x12 0x12 0x10
#raw 0x10 0x60 0xFE
#org $move5
#raw 0x11 0x11 0x11 0x11 0x11
#raw 0x12 0x12 0x12 0x11 0x11
#raw 0x12 0x12 0x12 0x12 0x10
#raw 0x10 0x60 0xFE