Jump to content

proGenitor

Members
  • Posts

    129
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by proGenitor

  1. On 9/25/2022 at 5:35 PM, hamoda said:

    Hello guys , im selling my project using l2j eternity files , the 300 euros version with the last update (last version) i have special mods over over 200 euros and many custom dressme armor weapons etc 

    and because i dont have the time for the server im selling it for good price 
    Price for last version clean - 150 euro
    Price for last version with all mods - 300 euro
    Discrod {DSG}#8290

    skype : l2storm98@hotmail.com

    good luck all

    Send msg to u on discord

  2. 1 hour ago, l2-scripts said:

    Please do not write without a good budget, do not waste either your or our time.

    150 euros is a decent price for your project, Mobius only charges 120 euros and delivers more and most importantly, It has a free project! :happyforever:

    70%, maybe 80% or even more servers Essence online today, are run on Mobius files or use Mobius as source base...
    I would like to make clear that I am not criticizing this, just clear the facts. GL with ur sales.

  3. 35 minutes ago, Infch said:

    By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users.

     

    Check commits and revisions , l2jeternity has new fixes almost every month when l2jsunrise once a year.

    Many 'skilled' devs will say that sunrise is better... What a shame!! :happyforever:

    • Haha 1
  4. /*
     * This file is part of the L2J Mobius project.
     * 
     * This program is free software: you can redistribute it and/or modify
     * it under the terms of the GNU General Public License as published by
     * the Free Software Foundation, either version 3 of the License, or
     * (at your option) any later version.
     * 
     * This program is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     * General Public License for more details.
     * 
     * You should have received a copy of the GNU General Public License
     * along with this program. If not, see <http://www.gnu.org/licenses/>.
     */
    package handlers.itemhandlers;
    
    import org.l2jmobius.gameserver.handler.IItemHandler;
    import org.l2jmobius.gameserver.model.actor.Playable;
    import org.l2jmobius.gameserver.model.actor.instance.PlayerInstance;
    import org.l2jmobius.gameserver.model.items.instance.ItemInstance;
    import org.l2jmobius.gameserver.network.SystemMessageId;
    import org.l2jmobius.gameserver.network.serverpackets.ExShowVariationMakeWindow;
    import org.l2jmobius.gameserver.network.serverpackets.SystemMessage;
    
    /**
     * @author proGenitor
     */
    public class LifeStone implements IItemHandler
    {
    	@Override
    	public boolean useItem(Playable playable, ItemInstance item, boolean forceUse)
    	{
    		if (playable.isDead()) {
    			final SystemMessage msg = new SystemMessage(SystemMessageId.S1_CANNOT_BE_USED_DUE_TO_UNSUITABLE_TERMS);
    			msg.addItemName(item);
    			playable.sendPacket(msg);
    			return false;
    		}
    		
    		final PlayerInstance player = playable.getActingPlayer();
    		final int itemId = item.getId();
    		
    		switch (itemId)
    		{
    			case 90012:
    			case 90013:
    			case 90014: {
    				player.sendPacket(ExShowVariationMakeWindow.STATIC_PACKET);
    				return true;
    			}
    			default: {
    				LOGGER.warning("LifeStone Augment: Item with id: " + itemId + " is not handled");
    			}
    		}
    		return false;
    	}
    }

    It's for Mobius.. Adapt for your project!

×
×
  • Create New...