Jump to content

Recommended Posts

Posted
/*

* 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 2, 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, write to the Free Software

* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA

* 02111-1307, USA.

*

* http://www.gnu.org/copyleft/gpl.html

*/

 

package com.l2zone.gameserver.handler.voicedcommandhandlers;

 

import com.l2zone.Config;

import com.l2zone.gameserver.datatables.SkillTable;

import com.l2zone.gameserver.handler.IVoicedCommandHandler;

import com.l2zone.gameserver.model.actor.instance.L2PcInstance;

import com.l2zone.gameserver.model.actor.instance.L2PlayableInstance;

import com.l2zone.gameserver.model.L2Skill;

import com.l2szone.gameserver.network.SystemMessageId;

import com.l2zone.gameserver.network.serverpackets.ActionFailed;

import com.l2zone.gameserver.network.serverpackets.MagicSkillUser;

import com.l2zone.gameserver.network.serverpackets.SystemMessage;

 

 

/**

*

* @author x.v3ndetta@yahoo.com

*

*/

 

public class donator implements IVoicedCommandHandler

{

   private static final String[] VOICED_COMMANDS = { "farmzone" , "town" , "buff" };

 

   public boolean useVoicedCommand(String command, L2PcInstance activeChar, String target)

   {  

     

       {          

            if(activeChar.isInJail())

           {

               activeChar.sendMessage("Sorry,you are in Jail!");

               return false;

           }

           else if(activeChar.isInOlympiadMode())

           {

               activeChar.sendMessage("Sorry,you are in the Olympiad now.");

               return false;

           }

                   

           else if(activeChar.atEvent)

           {

               activeChar.sendMessage("Sorry,you are in an event.");

               return false;

           }

           else  if (activeChar.isInDuel())

           {

               activeChar.sendMessage("Sorry,you are in a duel!");

               return false;

           }

           else if (activeChar.isDead())

           {

              activeChar.sendMessage("Sorry,you are dead.");  

           return false;

           }        

           else if (activeChar.getKarma() > 0 || activeChar.getPvpFlag() > 0)

           {

              activeChar.sendMessage("Sorry,you are in combat.");

           return false;

           }              

           else if (activeChar.inObserverMode())

           {

              activeChar.sendMessage("Sorry,you are in the observation mode.");

           }            

           else if (activeChar.isFestivalParticipant())

           {

               activeChar.sendMessage("Sorry,you are in a festival.");

               return false;

           }        

       

    }

    if (command.equalsIgnoreCase("farmzone"))

    {

            if (activeChar.isDonator())

            {

            activeChar.teleToLocation(113506, -155269, -1533, true);

            }

    }

    if (command.equalsIgnoreCase("town"))

    {

            if (activeChar.isDonator())

            {

            activeChar.teleToLocation(83400, 147943, -3404, true);

            }

    }  

    if (command.equalsIgnoreCase("buff"))

    {

            if (activeChar.isDonator())

            {

       

        L2Skill skill;

        if (!activeChar.isMageClass())

        {

        skill = SkillTable.getInstance().getInfo(7054, 1);

        skill.getEffects(activeChar, activeChar);

        activeChar.broadcastPacket(new MagicSkillUser(activeChar, activeChar, skill.getId(), 1, skill.getHitTime(), 0));

        skill = SkillTable.getInstance().getInfo(7056, 1);

        skill.getEffects(activeChar, activeChar);

        activeChar.broadcastPacket(new MagicSkillUser(activeChar, activeChar, skill.getId(), 1, skill.getHitTime(), 0));

        skill = SkillTable.getInstance().getInfo(7059, 3);

        skill.getEffects(activeChar, activeChar);

        activeChar.broadcastPacket(new MagicSkillUser(activeChar, activeChar, skill.getId(), 1, skill.getHitTime(), 0));

        }

        else

        {

        skill = SkillTable.getInstance().getInfo(7056, 1);

                        skill.getEffects(activeChar, activeChar);

                        activeChar.broadcastPacket(new MagicSkillUser(activeChar, activeChar, skill.getId(), 1, skill.getHitTime(), 0));

        skill = SkillTable.getInstance().getInfo(7057, 1);

                        skill.getEffects(activeChar, activeChar);

                        activeChar.broadcastPacket(new MagicSkillUser(activeChar, activeChar, skill.getId(), 1, skill.getHitTime(), 0));              

        skill = SkillTable.getInstance().getInfo(7052, 3);

                        skill.getEffects(activeChar, activeChar);

                        activeChar.broadcastPacket(new MagicSkillUser(activeChar, activeChar, skill.getId(), 1, skill.getHitTime(), 0));                

 

        }

            }

    }

       }

       return true;

   }

   public String[] getVoicedCommandList()

   {

       return VOICED_COMMANDS;

   }

 

}

 

CREDITS : V3ndetta[ME}
Posted

Nice share =D

 

Great shares bro!!!But give some infos about your shares!!What they are doing and etc!

 

Look at the coding and see what it does it ain't hard to understand i.m.o.

Posted

/*

* 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 2, 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, write to the Free Software

* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA

* 02111-1307, USA.

*

* http://www.gnu.org/copyleft/gpl.html

*/

 

package com.l2zone.gameserver.handler.voicedcommandhandlers;

 

import com.l2zone.Config;

import com.l2zone.gameserver.datatables.SkillTable;

import com.l2zone.gameserver.handler.IVoicedCommandHandler;

import com.l2zone.gameserver.model.actor.instance.L2PcInstance;

import com.l2zone.gameserver.model.actor.instance.L2PlayableInstance;

import com.l2zone.gameserver.model.L2Skill;

import com.l2szone.gameserver.network.SystemMessageId;

import com.l2zone.gameserver.network.serverpackets.ActionFailed;

import com.l2zone.gameserver.network.serverpackets.MagicSkillUser;

import com.l2zone.gameserver.network.serverpackets.SystemMessage;

 

 

/**

*

* @author x.v3ndetta@yahoo.com

*

*/

 

public class donator implements IVoicedCommandHandler

{

   private static final String[] VOICED_COMMANDS = { "farmzone" , "town" , "buff" };

 

   public boolean useVoicedCommand(String command, L2PcInstance activeChar, String target)

   {  

     

       {          

            if(activeChar.isInJail())

           {

               activeChar.sendMessage("Sorry,you are in Jail!");

               return false;

           }

           else if(activeChar.isInOlympiadMode())

           {

               activeChar.sendMessage("Sorry,you are in the Olympiad now.");

               return false;

           }

                   

           else if(activeChar.atEvent)

           {

               activeChar.sendMessage("Sorry,you are in an event.");

               return false;

           }

           else  if (activeChar.isInDuel())

           {

               activeChar.sendMessage("Sorry,you are in a duel!");

               return false;

           }

           else if (activeChar.isDead())

           {

              activeChar.sendMessage("Sorry,you are dead.");  

           return false;

           }        

           else if (activeChar.getKarma() > 0 || activeChar.getPvpFlag() > 0)

           {

              activeChar.sendMessage("Sorry,you are in combat.");

           return false;

           }              

           else if (activeChar.inObserverMode())

           {

              activeChar.sendMessage("Sorry,you are in the observation mode.");

           }            

           else if (activeChar.isFestivalParticipant())

           {

               activeChar.sendMessage("Sorry,you are in a festival.");

               return false;

           }        

       

         }

         if (command.equalsIgnoreCase("farmzone"))

         {

            if (activeChar.isDonator())

            {

            activeChar.teleToLocation(113506, -155269, -1533, true);

            }

         }

         if (command.equalsIgnoreCase("town"))

         {

            if (activeChar.isDonator())

            {

            activeChar.teleToLocation(83400, 147943, -3404, true);

            }

         }  

          if (command.equalsIgnoreCase("buff"))

         {

            if (activeChar.isDonator()) - undefined method

            {

             

              L2Skill skill;

              if (!activeChar.isMageClass())

              {

                 skill = SkillTable.getInstance().getInfo(7054, 1);

                 skill.getEffects(activeChar, activeChar);

                 activeChar.broadcastPacket(new MagicSkillUser(activeChar, activeChar, skill.getId(), 1, skill.getHitTime(), 0));

                 skill = SkillTable.getInstance().getInfo(7056, 1);

                 skill.getEffects(activeChar, activeChar);

                 activeChar.broadcastPacket(new MagicSkillUser(activeChar, activeChar, skill.getId(), 1, skill.getHitTime(), 0));

                 skill = SkillTable.getInstance().getInfo(7059, 3);

                 skill.getEffects(activeChar, activeChar);

                 activeChar.broadcastPacket(new MagicSkillUser(activeChar, activeChar, skill.getId(), 1, skill.getHitTime(), 0));

              }

              else

              {

                    skill = SkillTable.getInstance().getInfo(7056, 1);

                        skill.getEffects(activeChar, activeChar);

                        activeChar.broadcastPacket(new MagicSkillUser(activeChar, activeChar, skill.getId(), 1, skill.getHitTime(), 0));            

                    skill = SkillTable.getInstance().getInfo(7057, 1);

                        skill.getEffects(activeChar, activeChar);

                        activeChar.broadcastPacket(new MagicSkillUser(activeChar, activeChar, skill.getId(), 1, skill.getHitTime(), 0));              

                    skill = SkillTable.getInstance().getInfo(7052, 3);

                        skill.getEffects(activeChar, activeChar);

                        activeChar.broadcastPacket(new MagicSkillUser(activeChar, activeChar, skill.getId(), 1, skill.getHitTime(), 0));                

       

              }

            }

            else

            {

                msg(YOU'RE NOT A FUKIN' DONATOR);

                return;

            }

         }

       } - syntax error

       return true;

   }

   public String[] getVoicedCommandList()

   {

       return VOICED_COMMANDS;

   }

 

}

  • 2 weeks later...
  • 2 weeks later...

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

    • Creature EnterWorld Invalid NPC or spawn entry.
    • 10-15-2025 - OUR TOPIC IS RELEVANT! CONTACT US BY THE CONTACTS BELOW
    • SELLING EMPTY TELEGRAM BOTS WITH AGE Registration date: November 2024 High-quality & clean bots — no subscribers, no bans, created on fresh IPs. y rested and reliable — perfect for: — Telegram search ranking — any technical or marketing tasks Delivery options: tdata, by phone number, ownership transfer, or via tokens. Current price list: From 3 pcs — $3 each From 20 pcs — $2.5 each From 60 pcs — $2.3 each From 100 pcs — $2.2 each From 400 pcs — $1.9 each Over 15,000+ bots available — ready for instant delivery. Contact on Telegram: @SMMTG6
    • Telegram Bot TOP Search Promotion | SEO Optimization for Bots | SMMTG.PRO We promote Telegram bots to the TOP of search results — by keywords, topics, and countries. What’s included: • Promotion to the TOP of Telegram search • Bot optimization for Telegram algorithms • Competitor analysis and keyword selection • Testing and securing stable ranking Delivery time: 2–3 days per bot Pricing: Starts from $40 per bot (final cost depends on competition level and target country) We work with 50+ countries: Russia • Ukraine • USA • Israel • Uzbekistan • Turkey • China • Thailand • Europe • India Training is also available: Telegram bot SEO optimization Techniques & insights for reaching TOP search positions Real-world cases and recommendations Contact: Telegram — @SMMTG6 Our SMM panel: SMMTG.PRO
    • SMMTG.PRO — TELEGRAM SERVICES PROVIDER PRICE LIST ★ Premium Subscribers for Bots Russia — from $5.6 / 1,000 subs Ukraine — from $5.6 / 1,000 subs USA — from $6.4 / 1,000 subs Israel — from $6.4 / 1,000 subs Uzbekistan — from $6.4 / 1,000 subs Turkey — from $6.4 / 1,000 subs China — from $6.4 / 1,000 subs Thailand — from $6.4 / 1,000 subs Europe — from $6.4 / 1,000 subs India — from $6.4 / 1,000 subs Other countries — from $13 / 1,000 subs OTHER SERVICES Telegram Boost — from $42 / 1,000 votes Premium Subscribers for Channels — from $2.9 / 1,000 Telegram Stars — from $16.9 / 1,000 stars Regular Subscribers for Channels — from $0.19 / 1,000 Regular Subscribers for Bots — from $0.25 / 1,000 Post Reactions — from $0.14 / 1,000 reactions Post Views — from $0.07 / 1,000 views EXCLUSIVE SERVICES ★ Telegram Search TOP Ranking | SEO Optimization ★ Aged Telegram Bots (registered accounts) — from $1.9 / bot ★ Telegram SEO & Search Training PAYMENT METHODS Heleket — any cryptocurrency CrystalPay — RUB | KZT | SBP | CryptoBot & more Payeer — multiple payment options ➤ Website (24/7): SMMTG.PRO ➤ Telegram Channel: t.me/+e_DKWnC5AFw0ZDhi ➤ 24/7 Support: @SMMTG6
  • 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