Jump to content

Guska94

Members
  • Posts

    10
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by Guska94

  1. hello guys i need some help

    how do i make a anti buff shield?


    and i have another question
    i added multifuctionzone on my pack but when i set it on a boss zone like antharas,baium,frinteza or whatever it works normally but when i die and press to village it spawns me to the town and not to the cord i seted in the configs (i tested it on different areas like privmeval island or a town and it spawns me on the cords i setted ) it doesnt work only in bosszones :S


    i use l2 acis any help is aprecieted

  2. hello guys again
    so i found a buffer for acis and i succesfully installed her its just scheme buffer
    so i'd like to find one more buffer you know the normal one which has fighter auto buffer mage , tank ,dagger ,archer or whatever
    but i cant find any so can some1 help me with that?

    i would prefer to keep just the scheme but my friend says that there are many ppl who dont know how to use scheme buffer and just things so its for the best to have a normal one too

  3. Hello guys again, i'd like to make when New players login in the server to have a custom title like L2SuperNova   or whatever
    how can i do that im pretty sure its a small java code can some1 help me with it?

    what is the "code" and where should i write it? (i searched in a lot of forums but nothing the only ones i found are for like frozen or l2j)

    if some1 help me i would be really grateful to him.

  4. Hello, i have a little problem with the command /unstuck it takes 5 minutes  and i'd like to make it like 15-30 seconds
    so i found that i have to edit it from escape.java but  ihave no idea about java so i came here to ask for help from some masters :P

    here is the escape.java

     

    package net.sf.l2j.gameserver.handler.usercommandhandlers;
    
    import net.sf.l2j.gameserver.datatables.SkillTable;
    import net.sf.l2j.gameserver.events.EventCommons;
    import net.sf.l2j.gameserver.handler.IUserCommandHandler;
    import net.sf.l2j.gameserver.instancemanager.GrandBossManager;
    import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
    import net.sf.l2j.gameserver.network.SystemMessageId;
    import net.sf.l2j.gameserver.network.serverpackets.PlaySound;
    
    public class Escape implements IUserCommandHandler
    {
    	private static final int[] COMMAND_IDS =
    	{
    		52
    	};
    	
    	@Override
    	public boolean useUserCommand(int id, L2PcInstance activeChar)
    	{
    		               if (activeChar.isCastingNow() || activeChar.isSitting() || activeChar.isMovementDisabled() || activeChar.isOutOfControl() || activeChar.isInOlympiadMode() || activeChar.inObserverMode() || activeChar.isFestivalParticipant() || activeChar.isInJail() || GrandBossManager.isInBossZone(activeChar)|| !EventCommons.getInstance().canUnstuck(activeChar))
    		{
    			activeChar.sendMessage("Your current state doesn't allow you to use the /unstuck command.");
    			return false;
    		}
    		
    		activeChar.stopMove(null);
    		
    		// Official timer 5 minutes, for GM 1 second
    		if (activeChar.isGM())
    			activeChar.doCast(SkillTable.getInstance().getInfo(2100, 1));
    		else
    		{
    			activeChar.sendPacket(new PlaySound("systemmsg_e.809"));
    			activeChar.sendPacket(SystemMessageId.STUCK_TRANSPORT_IN_FIVE_MINUTES);
    			
    			activeChar.doCast(SkillTable.getInstance().getInfo(2099, 1));
    		}
    		
    		return true;
    	}
    	
    	@Override
    	public int[] getUserCommandList()
    	{
    		return COMMAND_IDS;
    	}
    }
    

    what do i have to change in order to make it last 15-30 seconds ? or what i have to add please help me im a total noob when it comes to java :P

    i use acis pack

×
×
  • Create New...