Quote:
|
Originally Posted by BlainesApprentice
Alright I've tryed and tryed and i can't get it right. Can someone give me a script where a person says one thing and then when you get a certain item says something else? If you know please tell me.
|
Code:
#autobank on
#org 0x800000
msgbox 0x800200
callstd 0x4
'check item script
#raw 47
#raw D 'item
#raw 0 'item
#raw 1 'quantity
#raw 0 'quantity
'attention: items have 2 bytes, so does the quantity
compare LASTRESULT 0x0
if 0x1 jump 0x800150
msgbox 0x800300
callstd 0x6
end
#org 0x800150
msgbox 0x800400
callstd 0x6
release
end
#org 0x800200
= Now let's see if you have\nthat Item...
#org 0x800300
= Yup, you have the Item.
#org 0x800400
= Nope, you don't have the Item.
Quote:
|
Originally Posted by darklugia1
Oh yeah, one more question (I always think of new ones, for some reason)
How do you delete people/warps/signs/etc. in AdvanceMap and/or EliteMap?
|
Just decrease their number in AdvanceMap or EliteMap.
Quote:
|
Originally Posted by Masqueradeâ„¢ Inc.
I am using the tile for the top of a cliff, you know, where the cliff ends and you can see the grass behind it. Anyway, how can I make it so the hero can walk on this tile, but not cross directly up to the grass from here?
|
You can do that easily with AdvanceMap.
Instead of the normal "C" movemeant block, you change it to "10" for the cliff, and for the blocks that let you go on that cliff you change it to "0".
That should do the trick.
Quote:
|
Originally Posted by Shaneypoo17
ok... i got a ques...
1. whats the command to give an item (in scripted)
2. i inserted this script
and when i played the game and talked to him it worked perfectly except it activated the safari zone O.o... and i could only get out of it when i pressed retire which sent me to the pokedex O.o... i rly need help.
|
1. giveitem 0x(ITEM) 0x(QUANTITY)
2. you set an already used flag, in your case the one for the Safari-Zone.
Change the used flags in your script.
Quote:
|
Originally Posted by RicePigeonKKM
Well, sorta. I used to hack in the past but that was long ago. Just wondeing how to go about scripts, as I hear of this program called Rubikon. Where do I get this?
|
It's included in the EliteMap bundle.
See the Hacking Tools Reference in the Tools Showcase.
Quote:
|
Originally Posted by misticman
they aren't really gone they are still there but if i play the game all events are gone.:(
|
The post I linked you to
is the way to fix your problem!
Quote:
|
Originally Posted by Li-Kero
I have a question, how can i easily change the ruby title from Red to Black?
Don't say hex, i dunno anything of it.
|
Hex. That's the only way.
But if you want all colors to be black and white, you can export the picture with the black and white pallete and import it again with overwriting the existing pallete with the black and white one. (CHeck "Export Pallete" in the dialog that pops up.)
Quote:
|
Originally Posted by LINK1438
I've heard ots a great palletlette viewer and Im in need of serious Poke ripping:)
Whered meh thread go? Ohh.......
|
unLZ-GBA is included in the EliteMap bundle.
See the Hacking Tools Reference in the Tools Showcase.
Quote:
|
Originally Posted by RicePigeonKKM
Okay so I was hacking sapphire the other day using rubikon to test out a givepokemon command.
When trying to compile this, rkc gave me an RTE. Besides that, I have a feeling I messed the code up somehow.
|
Yes, you made some mistakes in the code.
Try this Script (A modified version of ZEAR's Suicune battle script):
Code:
#autobank on
#org 0x6B8080
checkflag 0x1FF
if 1 0x6b8190
message 0x6b8200
boxset BOXSET_YESNO
compare LASTRESULT 0x0
if 1 0x6b8180
message 0x6b8300
boxset 0x2
givepokemon 0x9B 5 0x0
setflag 0x1FF
end
#org 0x6B8180
message 0x6B8270
boxset 0x6
end
#org 0x6B8190
message 0x6B8240
boxset 0x6
release
end
#org 0x6B8200
= Do you want to take CHIKORITA?
#org 0x6B8240
= How's my CHIKORITA doing?!
#org 0x6B8270
= Don't want it?
#org 0x6B8300
= Here you go!
Quote:
|
Originally Posted by MalamuteKid
Is there like an easy way to edit the sprites for pokemon?
|
unLZ-GBA. Export the pic, edit it and import it back in.
For the small animated pics in the Party view, IconED by dark01.
You can get both in the Tools Showcase.