Problems when using Guild Storage - Printable Version +- Forums (https://uaro.kiev.ua/forum) +-- Forum: uaRO (https://uaro.kiev.ua/forum/forumdisplay.php?fid=1) +--- Forum: uaOpenKore (https://uaro.kiev.ua/forum/forumdisplay.php?fid=43) +---- Forum: Fixes OpenKore (https://uaro.kiev.ua/forum/forumdisplay.php?fid=45) +---- Thread: Problems when using Guild Storage (/showthread.php?tid=32) |
Problems when using Guild Storage - Sergio - 17-04-2024 1. In order for each bot to use the storage very quickly, you need to set the timeout parameters: ai_storageAuto 0.1 ai_storageAuto_giveup 0.5 2. There is a problem related to the fact that OpenKore caches the list of storage items. The fix solves the problem by clearing the list when closing the storage, but this breaks the logic of OpenKore. It will not be possible to view the storage after closing! You need to edit the file: src/InventoryList/Storage.pm sub close { my($self) = @_; $self->{opened} = 0; $self->clear(); } RE: Problems when using Guild Storage - Sergio - 16-06-2024 https://uaro.kiev.ua/forum/showthread.php?tid=64 This fix must be used on bots! |