Jump to content

Recommended Posts

  • 1 month later...
  • 5 weeks later...
  • 2 months later...
Posted

man how to create a comend as .serversite??? :P

 

Its pointless to create external guide for this type of command.

 

Simply use search, and take a look at some already coded .commands

 

Nothing more.

  • 1 month later...
Posted

1st, Sorry Matim about i reply in here.

 

I got trouble when edit other voiced command .heal to /heal

 

- i created a new heal.java in the gameserver\data\scripts\handlers\usercommandhandlers.

 

- heal.java content below.

 

- And in MasterHandle.java, i try to register userHandleCommand but no success..

 

- i just trainer and dont clear all java syntax, sry about it.

 

import handlers.usercommandhandlers.*;

private static void loadUserHandlers()

{

UserCommandHandler.getInstance().registerUserCommandHandler(new heal());

}

 

- I run the server and got this error:

1. ERROR in gameserver\data\scripts\handlers
\usercommandhandlers\heal.java (at line 23)
        public class heal implements IUserCommandHandler
                     ^^^^
The type heal must implement the inherited abstract method IUserCommandHandler.u
seUserCommand(int, L2PcInstance)
2. ERROR in gameserver\data\scripts\handlers
\usercommandhandlers\heal.java (at line 33)
        if (command.equalsIgnoreCase("heal") && (activeChar.isInsideZone(L2Chara
cter.ZONE_PEACE)))
            ^^^^^^^
command cannot be resolved

 

/*
* 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.usercommandhandlers;

import com.l2jserver.gameserver.handler.IUserCommandHandler;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.model.actor.L2Character;

public class heal implements IUserCommandHandler
{
private static final int[] COMMAND_IDS =
{
	129
};


public boolean useUserCommand(int id,  L2PcInstance activeChar, String target)
{
	if (command.equalsIgnoreCase("heal") && (activeChar.isInsideZone(L2Character.ZONE_PEACE)))
    {
		activeChar.stopSkillEffects(176);
		activeChar.stopSkillEffects(139);
		activeChar.stopSkillEffects(420);
		activeChar.stopSkillEffects(406);
        	activeChar.getStatus().setCurrentHp(activeChar.getMaxHp());
        	activeChar.getStatus().setCurrentMp(activeChar.getMaxMp());
        	activeChar.getStatus().setCurrentCp(activeChar.getMaxCp());
    }

	return true;

}
/**
 * 
 * @see net.sf.l2j.gameserver.handler.IUserCommandHandler#getUserCommandList()
 */
public int[] getUserCommandList()
{
	return COMMAND_IDS;
}
}

Posted

Mean must compile, Matim? I just wanna check understand your sentense. English not mother language... sry.

You should have explore some very nice advantages of using eclipse,like quick fixes(like matim says).

Try to use google and you will find out about eclipse more intresting things which will help you about java programming.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


×
×
  • Create New...