spenceroone3
<he eats lots of burgers.
- 215
- Posts
- 17
- Years
- In your closet
- Seen Jun 3, 2011
I recently made a steal item script. If you do use it, I don't want any credit, I only want to thank the expert scripters who helped me. It is in the spoiler.
Spoiler:
Code:
#org $Stealscript
$Steal 1 = There is good things in this\nhouse. Rob it?
boxset 5
compare LASTRESULT B_TRUE
if B_False goto $Nosteal
message $Nowsteal
$Nowsteal 1 = /v/H01/ robbed the house.\nThey found a lot of useful\pthings in there.
boxset 6
#raw 0x8F
#raw 0x04 0x00
copyvar 0x8008 0x800D
compare 0x8008 0x0
if 0x1 call $Tinymushroom
compare 0x8008 0x1
if 0x1 call $Oranberry
compare 0x8008 0x2
if 0x1 call $Pokeball
compare 0x8008 0x3
if 0x1 call $Potion
release
end
#org $Nothing
$Nothing 1 = You stole it all before!\lThere is nothing left!
release
end
#org $Nosteal
$Nosteal 1 = Decided against doing an\nunlawful act.
release
end
#org $Potion
giveitem 0xD 0x1
setflag 0x500
release
end
#org $Pokeball
giveitem 0x4 0x1
setflag 0x500
release
end
#org $Tinymushroom
giveitem 0x67 0x1
setflag 0x500
release
end
#org $Oranberry
giveitem 0x8B 0x1
setflag 0x500
release
end