Jump to content

Recommended Posts

Posted

Tested. It makes you hero and takes item of your choise.

 

1) Go to java.com.it.br.config.java and search for:

   public static int OFFLINE_NAME_COLOR;

 

2)After it add:

    public static boolean ALLOW_HERO_COMMAND;
   public static int HERO_ITEM_ID;
   public static int HERO_ITEM_COUNT;

 

3)Search for:

                OFFLINE_NAME_COLOR = Integer.decode("0x" + L2JModSettings.getProperty("OfflineNameColor", "808080"));

 

4)After it add:

        	ALLOW_HERO_COMMAND = Boolean.parseBoolean(L2JModSettings.getProperty("AllowHeroCommand", "false")); 
               HERO_ITEM_ID = Integer.parseInt(L2JModSettings.getProperty("HeroItemId", "3481"));
               HERO_ITEM_COUNT = Integer.parseInt(L2JModSettings.getProperty("HeroItemCount", "1"));

 

5)Go to java.com.it.br.gameserver.gameserver.java and search for:

import com.it.br.gameserver.handler.voicedcommandhandlers.info;

 

6)After it add:

import com.it.br.gameserver.handler.voicedcommandhandlers.hero;

 

7)Search for:

    	_voicedCommandHandler.registerVoicedCommandHandler(new VoicedAIOCmd());

 

8)After it add:

    	if (Config.ALLOW_HERO_COMMAND)
   	_voicedCommandHandler.registerVoicedCommandHandler(new hero());

 

9)Go to java.com.it.br.gameserver.handler.voicedcommandhandlers and make a new file called: hero.java, and paste in it:

/*
* 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 com.it.br.gameserver.handler.voicedcommandhandlers;

import com.it.br.gameserver.handler.IVoicedCommandHandler;
import com.it.br.gameserver.model.actor.instance.L2PlayableInstance;
import com.it.br.gameserver.model.actor.instance.L2PcInstance;
import com.it.br.gameserver.model.L2ItemInstance;
import com.it.br.gameserver.serverpackets.ActionFailed;
import com.it.br.gameserver.serverpackets.SocialAction;

/**
* @author Rayder
*/
public class hero implements IVoicedCommandHandler
{
private static final String[] VOICED_COMMANDS = {"hero"};

public boolean useVoicedCommand(String command, L2PcInstance activeChar, String target)
{
	if (command.equalsIgnoreCase("hero"))
	{
           if(activeChar.getInventory().getItemByItemId(Config.HERO_ITEM_ID) != null && activeChar.getInventory().getItemByItemId(Config.HERO_ITEM_ID).getCount() >= Config.HERO_ITEM_COUNT)
           {
           	activeChar.getInventory().destroyItemByItemId("GoldDragon", Config.HERO_ITEM_ID, Config.HERO_ITEM_COUNT, activeChar, activeChar.getTarget());
               activeChar.broadcastPacket(new SocialAction(activeChar.getObjectId(), 16));
           	activeChar.setHero(true);
               activeChar.sendMessage("You became hero untill restart and gave 1 gold dragon");
               activeChar.broadcastUserInfo();
             }
           else
           {
              	activeChar.sendMessage("You need 1 gold dragon to become hero.");
               return true;
           }
	}
	return false;
	}
public String[] getVoicedCommandList()
{
	return VOICED_COMMANDS;
}
}

 

10)Go to config.l2jmods.properties, and at the end paste:

# ----------------------------
# .hero custom command by TheLastHero
# ----------------------------

# Set this to True to enable .hero voiced command
AllowHeroCommand = False

# Item id that it will take and make you hero
HeroItemId = 3481

# How many of this item will it take?
HeroItemCount = 1

 

11)Compile it and you are done

 

 

Old hardocded version:

/*
* 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 com.it.br.gameserver.handler.voicedcommandhandlers;

import com.it.br.gameserver.handler.IVoicedCommandHandler;
import com.it.br.gameserver.model.actor.instance.L2PlayableInstance;
import com.it.br.gameserver.model.actor.instance.L2PcInstance;
import com.it.br.gameserver.model.L2ItemInstance;
import com.it.br.gameserver.serverpackets.ActionFailed;
import com.it.br.gameserver.serverpackets.SocialAction;

/**
* @author Rayder
*/
public class hero implements IVoicedCommandHandler
{
private static final String[] VOICED_COMMANDS = {"hero"};

public boolean useVoicedCommand(String command, L2PcInstance activeChar, String target)
{
	if (command.equalsIgnoreCase("hero"))
	{
           if(activeChar.getInventory().getItemByItemId(3481) != null && activeChar.getInventory().getItemByItemId(3481).getCount() >= 1)
           {
           	activeChar.getInventory().destroyItemByItemId("GoldDragon", 3481, 1, activeChar, activeChar.getTarget());
               activeChar.broadcastPacket(new SocialAction(activeChar.getObjectId(), 16));
           	activeChar.setHero(true);
               activeChar.sendMessage("You became hero untill restart and gave 1 gold dragon");
               activeChar.broadcastUserInfo();
             }
           else
           {
              	activeChar.sendMessage("You need 1 gold dragon to become hero.");
               return true;
           }
	}
	return false;
	}
public String[] getVoicedCommandList()
{
	return VOICED_COMMANDS;
}
}

 

Posted

if(activeChar.getInventory().getItemByItemId(3481) != null && activeChar.getInventory().getItemByItemId(3481).getCount() >= 1) huh ...

Posted

if(activeChar.getInventory().getItemByItemId(3481) != null && activeChar.getInventory().getItemByItemId(3481).getCount() >= 1) huh ...

??? what's wrong with that?

Posted

why useless? you mean that everyone can became hero Free?

huh.. read again what i said >.>

 

if (activeChar.getInventory().getItemByItemId(3481).getCount() >= 1)

 

 

Posted

why useless? you mean that everyone can became hero Free?

no it will take from players 1 gold dragon and it will make them hero. it is not useless man. lol. if someone has errors with hero item, that's easier.

 

P.S tested and works. adding configs......

Posted

no it will take from players 1 gold dragon and it will make them hero. it is not useless man. lol. if someone has errors with hero item, that's easier.

 

P.S tested and works. adding configs......

//agree it is better to say that you have a command (added by yourself) than 2ble clicking at an item :D

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • https://pastebin.com/UJcX7rXH    
    • Does anyone have more information about bugs and errors in the Frozen review? Any ideas? Any help is welcome!   Modifications and corrections made   https://pastebin.com/vqYjM8ZH   Sorry if this is the wrong area.
    • Purchase Telegram Stars at a favorable price with minimal markup. New auctions from Telegram are expected, and our bot will help you prepare in advance. Active links: Telegram bot for purchasing Telegram Stars: Go to – fast and profitable purchase of Stars in Telegram. Other services: Digital goods store (Website): Go to Store Telegram bot: Go to – convenient access to the store via the Telegram messenger. Virtual numbers service: Go to SMM Panel: Go to – promotion of your social media accounts. We want to present to you the current list of promotions and special offers for purchasing products and services of our service: 1. You can use a promo code for your first purchase: SOCNET (15% discount) 2. Get $1 on your store balance or a 10–20% discount — just send your username after registering on our website using the following template: "SEND ME BONUS, MY USERNAME IS..." — you need to write this in our forum thread! 3. Get $1 for the first trial launch of the SMM Panel: just open a ticket with the subject “Get Trial Bonus” on our website (Support). 4. Weekly Telegram Stars giveaways in our Telegram channel and in our bot for purchasing stars! News: ➡ Telegram channel: https://t.me/accsforyou_shop ➡ WhatsApp channel: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord server: https://discord.gg/y9AStFFsrh Contacts and support: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ Email: solomonbog@socnet.store
    • Purchase Telegram Stars at a favorable price with minimal markup. New auctions from Telegram are expected, and our bot will help you prepare in advance. Active links: Telegram bot for purchasing Telegram Stars: Go to – fast and profitable purchase of Stars in Telegram. Other services: Digital goods store (Website): Go to Store Telegram bot: Go to – convenient access to the store via the Telegram messenger. Virtual numbers service: Go to SMM Panel: Go to – promotion of your social media accounts. We want to present to you the current list of promotions and special offers for purchasing products and services of our service: 1. You can use a promo code for your first purchase: SOCNET (15% discount) 2. Get $1 on your store balance or a 10–20% discount — just send your username after registering on our website using the following template: "SEND ME BONUS, MY USERNAME IS..." — you need to write this in our forum thread! 3. Get $1 for the first trial launch of the SMM Panel: just open a ticket with the subject “Get Trial Bonus” on our website (Support). 4. Weekly Telegram Stars giveaways in our Telegram channel and in our bot for purchasing stars! News: ➡ Telegram channel: https://t.me/accsforyou_shop ➡ WhatsApp channel: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord server: https://discord.gg/y9AStFFsrh Contacts and support: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ Email: solomonbog@socnet.store
    • Purchase Telegram Stars at a favorable price with minimal markup. New auctions from Telegram are expected, and our bot will help you prepare in advance. Active links: Telegram bot for purchasing Telegram Stars: Go to – fast and profitable purchase of Stars in Telegram. Other services: Digital goods store (Website): Go to Store Telegram bot: Go to – convenient access to the store via the Telegram messenger. Virtual numbers service: Go to SMM Panel: Go to – promotion of your social media accounts. We want to present to you the current list of promotions and special offers for purchasing products and services of our service: 1. You can use a promo code for your first purchase: SOCNET (15% discount) 2. Get $1 on your store balance or a 10–20% discount — just send your username after registering on our website using the following template: "SEND ME BONUS, MY USERNAME IS..." — you need to write this in our forum thread! 3. Get $1 for the first trial launch of the SMM Panel: just open a ticket with the subject “Get Trial Bonus” on our website (Support). 4. Weekly Telegram Stars giveaways in our Telegram channel and in our bot for purchasing stars! News: ➡ Telegram channel: https://t.me/accsforyou_shop ➡ WhatsApp channel: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord server: https://discord.gg/y9AStFFsrh Contacts and support: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ Email: solomonbog@socnet.store
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock