Well, this new screen is from offline shop, not related to menu system or I miss something? :alone:
Also, the msg from 1st screen is not in the patch as well.. So, use Search option @ Eclipse and search for that sentence and track it :D
Edit:
I found it. The 1st msg is from offline shop voiced command
if ((!player.isInStoreMode() && (!player.isInCraftMode())) || !player.isSitting())
{
player.sendMessage("You are not running a private store or private work shop.");
player.sendPacket(ActionFailed.STATIC_PACKET);
return false;
}
So, it's correct msg.
and the 2nd one
if ((player.isInStoreMode() && Config.OFFLINE_TRADE_ENABLE) || (player.isInCraftMode() && Config.OFFLINE_CRAFT_ENABLE))
{
// Sleep effect, not official feature but however L2OFF features (like offline trade)
player.startAbnormalEffect(L2Character.ABNORMAL_EFFECT_SLEEP);
player.sendMessage("Your private store has succesfully been flagged as an offline shop and will remain active for ever.");
player.setStored(true);
return true;
}
So, what's the problem in here? :D