- 1,103
- Posts
- 17
- Years
- Melbourne, Australia
- Seen Oct 12, 2010
Requesting many scripts. (If you do any of these you will be mentioned in the credits)
1. A script for a person that when you talk too them, they give you the national dex. After talking to them, they go up one square then warp(?) I'm not sure but they dissapear.
2. The script for the guard on the west side of saffron, to be changed so you need the tea, and the first badge, instead the 3rd 4th or 5th badge (not sure which...)
Here is the first one, this is incase you don't know you have to place the people no. into the ?. And place 0245 into the person's people Id, this is so the person doesn't reappear.
Code:
#org $start
lock
faceplayer
message $talk
boxset 5
compare LASTRESULT 1
if b_true goto $yes
message $no
boxset 6
release
end
#org $yes
setflag 0x16F
message $update
boxset 6
jingle
applymovement 0x0? $move
pausemove 0
setflag 0x245
release
end
#org $move
$move 1 ; #binary 0x0D 0x60 0xFE
#org $talk
$talk 1 =Would you like me to update\nyour pokedex?
#org $no
$no 1 =That's okay.
#org $update
$update 1 =Your pokedex was upgraded.
Here is the second one. For some reason I can't get the checkitem command to work with key items. I'd say write a script for the tea and place the flag used in this command;
checkflag 0x???
if b_true goto $????
and put it under the first checkflag. Hope this helps.
Code:
#org $start
checkflag 0x820
if b_true goto $done
message $talk
boxset 6
applymovement 0xFF $move
pausemove 0
release
end
#org $talk
$talk 1 =(Your text here)
#org $move
$move 1 ; #binary 0x0E 0xFE
Sorry, you'd have to look at the tutorial in the documents and tutorials section, entitled 'The Shiny Hack'. This involves a little scripting and a lot of ASM hacking(which I don't know anything about). And by dialogue script do you mean just a simple message script. If so here.I need some help badly. How can i make a shiny encounter script for poketscript, and a diaolog script for poketscript? Any help would be gladly apreaciated!
Code:
#org $start
lock
faceplayer
message $talk
boxset 6
release
end
#org $talk
$talk 1 =(Your text here)