![]() |
Item editor problems - Printable Version +- Mirage Source (https://mirage-engine.uk/forums) +-- Forum: Mirage Source (Nostalgia) (https://mirage-engine.uk/forums/forumdisplay.php?fid=61) +--- Forum: Archive (2006-2011) (https://mirage-engine.uk/forums/forumdisplay.php?fid=18) +---- Forum: General (https://mirage-engine.uk/forums/forumdisplay.php?fid=17) +---- Thread: Item editor problems (/showthread.php?tid=1408) |
Item editor problems - jsventor - 21-11-2007 I added a picbox that you can choose the item from like elysium, And it works good as new, but when it saves the item it saves as the wrong sprite.. heres some info on the editor first. PicBackSelect.Width = 224 PicBack Select.width = 224 In the itemEditorOK Sub I put Code: Item(EditorIndex).Pic = EditorItemY + EditorItemX And like, I can choose a sword, And it will save it and it will look like an armor, or somehthing else on the ItemSheet Re: Item editor problems - Beres - 01-12-2007 jsventor Wrote:I added a picbox that you can choose the item from like elysium, And it works good as new, but when it saves the item it saves as the wrong sprite.. I did the same thing, choose an item from the picture box. Like the item pic. Well, I got it working fine for me. Your code: Code: Item(EditorIndex).Pic = EditorItemY + EditorItemX Is like what I wrote, except I did this: Code: Item(EditorIndex).Pic = EditorItemY * 6 + EditorItemX Try it. If it dont help, then let me know. |