Akinari Posted October 23, 2013 Group: Members Topic Count: 32 Topics Per Day: 0.01 Content Count: 247 Reputation: 207 Joined: 10/23/12 Last Seen: March 2, 2022 Share Posted October 23, 2013 File Name: @storeit - Store all Non-Equipped Items File Submitter: Akinari File Submitted: 23 Oct 2013 File Category: Source Modifications Content Author: Akinari, Sol This is a simple command I've had laying around for a long time, so I figured I'd package it up and send it out. Like the title states, this is like @storeall, except it will ignore equipped items. Meant for the adventurer on the go who needs a quick inventory cleanup when farming. To add it, simple place the files in the src/custom folder If you already use these files, then just copy in the code from these ones into your already populated files. Then do a clean make. Click here to download this file Quote Link to comment Share on other sites More sharing options...
GmOcean Posted October 23, 2013 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 23, 2013 Nice release, this can be incredibly useful. Especially for the exact purpose you've said lol. @off topic - I didn't even know about that folder... this definitely makes adding custom things easier, provided all src can be added in a similar manner. Quote Link to comment Share on other sites More sharing options...
Kichi Posted October 23, 2013 Group: Members Topic Count: 25 Topics Per Day: 0.01 Content Count: 509 Reputation: 80 Joined: 11/20/11 Last Seen: October 3, 2020 Share Posted October 23, 2013 Nice i just got idea from your Script Quote Link to comment Share on other sites More sharing options...
Akinari Posted October 23, 2013 Group: Members Topic Count: 32 Topics Per Day: 0.01 Content Count: 247 Reputation: 207 Joined: 10/23/12 Last Seen: March 2, 2022 Author Share Posted October 23, 2013 Nice release, this can be incredibly useful. Especially for the exact purpose you've said lol. @off topic - I didn't even know about that folder... this definitely makes adding custom things easier, provided all src can be added in a similar manner. Part of the reason I released this was to show people this has existed for the last couple of months. Although the original concept was from brathena. Quote Link to comment Share on other sites More sharing options...
Snow Posted October 23, 2013 Group: Members Topic Count: 10 Topics Per Day: 0.00 Content Count: 141 Reputation: 34 Joined: 05/30/12 Last Seen: August 2, 2020 Share Posted October 23, 2013 Cool, thx for sharing Quote Link to comment Share on other sites More sharing options...
Radian Posted July 31, 2014 Group: Members Topic Count: 162 Topics Per Day: 0.04 Content Count: 1546 Reputation: 192 Joined: 07/23/14 Last Seen: June 24, 2024 Share Posted July 31, 2014 Is it possible to make it all etc items only? Quote Link to comment Share on other sites More sharing options...
Haki Posted November 2, 2019 Group: Members Topic Count: 23 Topics Per Day: 0.01 Content Count: 96 Reputation: 23 Joined: 06/14/16 Last Seen: April 30, 2021 Share Posted November 2, 2019 Doesn't work anymore? Quote Link to comment Share on other sites More sharing options...
xFoo Posted May 13, 2020 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 19 Reputation: 0 Joined: 03/04/20 Last Seen: June 10, 2022 Share Posted May 13, 2020 Not working as of May 13, 2020 Can anyone give us a working one? Thank you! Quote Link to comment Share on other sites More sharing options...
ahloi007 Posted July 7, 2020 Group: Members Topic Count: 27 Topics Per Day: 0.01 Content Count: 78 Reputation: 1 Joined: 10/15/12 Last Seen: May 23, 2023 Share Posted July 7, 2020 Quote In file included from atcommand.cpp:10623:0: ../custom/atcommand.inc: In function 'int atcommand_storeit(int, map_session_data*, const char*, const char*)': ../custom/atcommand.inc:48:18: error: 'struct mmo_charstatus' has no member named 'inventory' if (sd->status.inventory.amount) { ^../custom/atcommand.inc:49:18: error: 'struct mmo_charstatus' has no member named 'inventory' if(sd->status.inventory.equip == 0) ^../custom/atcommand.inc:50:43: error: 'struct mmo_charstatus' has no member named 'inve ntory' storage_storageadd(sd, i, sd->status.inventory.amount); Where should I have change on it? Please guide me Hi rathena! I was adding @Akinari "@storeit" to my server. But I got error when I was recompile it. Anyone could help me on that?? I'm still learning on it. Quote /*========================================== * @storeit * Put everything not equipped into storage. *------------------------------------------*/ ACMD_FUNC(storeit) { int i; nullpo_retr(-1, sd); if (sd->npc_id) { clif_displaymessage(fd, "You cannot be talking to an NPC and use this command."); return -1; } if (sd->state.storage_flag != 1) { //Open storage. switch (storage_storageopen(sd)) { case 2: //Try again clif_displaymessage(fd, "Run this command again.."); return 0; case 1: //Failure clif_displaymessage(fd, "You can't open the storage currently."); return -1; } } for (i = 0; i < MAX_INVENTORY; i++) { if (sd->status.inventory.amount) { if(sd->status.inventory.equip == 0) storage_storageadd(sd, i, sd->status.inventory.amount); } } storage_storageclose(sd); clif_displaymessage(fd, "It is done"); return 0;} this is the commands I added to src/custom/atcommand.inc Quote ACMD_DEF(storeit), And this is where I added to src/custom/atcommand_def.inc After I recompile my server: Anyone could guide me on this? Im sorry if I posted on the wrong section , Please move me to the right one. Thanks!!! Quote Link to comment Share on other sites More sharing options...
BeWan Posted July 20, 2020 Group: Members Topic Count: 20 Topics Per Day: 0.01 Content Count: 403 Reputation: 249 Joined: 07/04/19 Last Seen: 4 hours ago Share Posted July 20, 2020 Updated version. storeit.zip 1 Quote Link to comment Share on other sites More sharing options...
Basejumper Posted October 21, 2020 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 2 Reputation: 0 Joined: 06/07/20 Last Seen: May 17, 2023 Share Posted October 21, 2020 Thanks it works Quote Link to comment Share on other sites More sharing options...
kalabasa Posted December 18, 2020 Group: Members Topic Count: 123 Topics Per Day: 0.05 Content Count: 478 Reputation: 14 Joined: 11/30/17 Last Seen: January 23 Share Posted December 18, 2020 (edited) Hi There, i got no error but its not working it also affects the @storeall function when storeall was used nothing happens except from the items equipped on alt Q they will be unequipped my mistake its actually working i just had issues with max storage settings Edited December 18, 2020 by kalabasa Quote Link to comment Share on other sites More sharing options...
jiggysnake Posted September 30, 2022 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 1 Reputation: 0 Joined: 03/24/20 Last Seen: October 4, 2022 Share Posted September 30, 2022 Has anyone made this work to exclude the Favorite Tab in the inventory also? Quote Link to comment Share on other sites More sharing options...
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.