Jupeto Posted October 24, 2012 Group: Members Topic Count: 34 Topics Per Day: 0.01 Content Count: 225 Reputation: 39 Joined: 01/20/12 Last Seen: October 6, 2024 Share 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 Link to comment Share on other sites More sharing options...
EvilPuncker Posted October 24, 2012 Group: Members Topic Count: 19 Topics Per Day: 0.00 Content Count: 713 Reputation: 71 Joined: 11/08/11 Last Seen: December 25, 2024 Share Posted October 24, 2012 query the log db? xD Quote Link to comment Share on other sites More sharing options...
AnnieRuru Posted October 24, 2012 Group: Members Topic Count: 18 Topics Per Day: 0.00 Content Count: 2044 Reputation: 682 Joined: 10/09/12 Last Seen: December 20, 2020 Share 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 Link to comment Share on other sites More sharing options...
Bin4ry Posted October 24, 2012 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 782 Reputation: 82 Joined: 01/01/12 Last Seen: September 21, 2015 Share 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 Link to comment Share on other sites More sharing options...
Jupeto Posted October 24, 2012 Group: Members Topic Count: 34 Topics Per Day: 0.01 Content Count: 225 Reputation: 39 Joined: 01/20/12 Last Seen: October 6, 2024 Author Share 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 Link to comment Share on other sites More sharing options...
GmOcean Posted October 24, 2012 Group: Members Topic Count: 31 Topics Per Day: 0.01 Content Count: 666 Reputation: 93 Joined: 04/27/12 Last Seen: August 17, 2015 Share 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 Link to comment Share on other sites More sharing options...
Question
Jupeto
Are there any ways to check an item that was added to character's inventory?
Scenarios:
Link to comment
Share on other sites
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.