How do I make a treasure chest that contains many items and/or more than $32767?

From OHRRPGCE-Wiki
Jump to: navigation, search

To make a big treasure chest; use a plotscript and a NPC that look like a chest. The many change is that the Npc does not display a text box that gives you an item but a plotscript with the following commands

 show text box (284)# you have found a high quality armor! and
 wait for text box #3 basic helms

 get item (57, 1) #or you can also type get item (item: rare armor,1)
 get item (58, 3) #or get item (item: basic helm, 3)
 get item (56, 3) #get potions
 get item (52, 3) #get basic armor

Please note that the number after the comma corresponds to how many items you want in your inventory.

Now to get more that $32767 you shall use the get money command. Here is an example with $92000

   get money (92000)

Please note that the get money command don't need any money symbol such as £, ¥ or $ included the plotscript.

See Also[edit]