|
More detail please, is it pick item script, or someone give you item script?
Here are example script from my memory so it might be wrong.
If it is just pick item then :
#dynamic 0x800000
#org @item
giveitem 0x169 0x1 MSG_FIND
end
If it is someone give you item then it will be more complex
#dynamic 0x800000
#org @item
lock
msgbox @Intro MSG_keepopen
closeonkeypress
additem 0x169 0x1
loadpointer 0x0 @obtainmessage
giveitem2 0x169 0x1 0x???
end
#org @Intro
= Oi, here item!
#org @obtainmessage
= [Player] obtained item.
Note : ??? is jinglesound, like obtain item sound or receiving gym badge sound. I don't remember the byte.
|