L2JMobius

C6 Offline private creation

tse38 · 3 · 5080

Offline tse38

  • Vassal
  • *
    • Posts: 9
Hi , i have a problem on my server with offline private creation. Offline private creation is enabled. When shop is set and then i exit , cant use it. I click to craft on something and nothing happens, no create, no mp consumed. If i restart server after i set shop, it magically works. Any idea ? thx


Offline rock76

  • Vassal
  • *
    • Posts: 4
Since this (someones work and effort sharing this) helped me, I feel a duty to pay back and help someone else. This worked for me:
java/org/l2jmobius/gameserver/RecipeController.java

             return;
          }

-         if (_player.isOnline() || _target.isOnline())
+         if (!_player.isOnline() || !_target.isOnline())

          {
             LOGGER.warning("Player or target is not online, aborting " + _target + _player);

             abort();


Online Mobius

  • Distinguished King
  • *****
    • Posts: 16055
I think that is disabled on latest shared version.