Jupeto Posted October 24, 2012 Posted October 24, 2012 Are there any ways to check an item that was added to character's inventory? Scenarios: Player A bought an item from a vendor ( Player B ), ( dispbottom "Player A bought <Item Name> from Player B"; ) Player A successfully traded an item to Player B, ( dispbottom "Player A traded <Item Name> to Player B"; ) Player A looted an item from a monster drop, ( dispbottom "Player A got <Item Name> from <Monster Name>"; ) Quote
AnnieRuru Posted October 24, 2012 Posted October 24, 2012 query from log is easiest way http://www.eathena.ws/board/index.php?showtopic=247755 I did proposed something that I can't write it myself XD though I think this patch is ... I hardly found it useful ... though Quote
Bin4ry Posted October 24, 2012 Posted October 24, 2012 Don't know why there is an "Item Loot Event" idea flash in my mind suddenly makeitem 512,~,~,~,~; makeitem 619,~,~,~,~; OnPCLootEvent: if (map == "eventmap" || itemid == 512) { @eventpoint, @eventpoint + 5; delitem 512, 1; end; } else if (itemid == 619) { @eventpoint, @eventpoint - 5; delitem 619,1; end; } Sounds stupid tho. Hahaha Quote
Jupeto Posted October 24, 2012 Author Posted October 24, 2012 query from log is easiest way http://www.eathena.w...howtopic=247755 I did proposed something that I can't write it myself XD though I think this patch is ... I hardly found it useful ... though isn't that for eAthena? Quote
GmOcean Posted October 24, 2012 Posted October 24, 2012 Alot of eA's src mods can be added to rA, with little to no edits at all, they would just need to be added in manually, as rA's src file is different so diff's won't be compatible. Quote
Question
Jupeto
Are there any ways to check an item that was added to character's inventory?
Scenarios:
5 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.