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

    • Hi,   I’m reporting @nuturazvan for attempting to scam me out of 70€.   Last week, he contacted me on Discord saying he was looking for a control panel. I initially offered NimeraCP, but after I told him the price, he said he couldn’t afford it. I then told him I could develop a custom control panel within his budget. After discussing the details, we agreed on the following:   Control / Donate Panel includes: Donate page Account registration page Login page Password reset page Stripe integration Agreed price: 70€ Deal date: December 3, 2025   I finished developing the panel on December 6, 2025, but I have not delivered it yet. The code is complete and currently sitting in a private GitHub repository, waiting for payment. As of December 14, 2025, I still haven’t received any payment. I’ve asked him multiple times when I can expect it, and he keeps making excuses, saying a friend owes him money and that he’s waiting to get paid first.   If you don’t have the money, you shouldn’t be ordering work. I take responsibility for starting the work without upfront payment, but that doesn’t excuse repeatedly delaying payment.   Posting this as a warning to others.  
    • WTB GRACIA FINAL INTERFACE
    • Dear partners! At the moment we are in great need of the following positions: — Snapchat old and new accounts | With snapscores | Geo: Europe/USA | Full access via email/phone number — Reddit old (brute or hacked origin, self-registered) accounts with post and comment karma from 100 to 100,000+ | Full email access included — LinkedIn old accounts with real connections | Geo: Europe/USA | Full email access + active 2FA password — Instagram old accounts (2010–2023) | Full email access (possibly with active 2FA password) — Facebook old accounts (2010–2023) | Full email access (possibly with active 2FA password) | With friends or without friends | Geo: Europe/USA/Asia — Threads accounts | Full email access (possibly with active 2FA password) — TikTok/Facebook/Google ADS Agency advertising accounts — Email accounts: mail.ru, yahoo.com, gazeta.pl, gmx.ch / gmx.de / gmx.net (BUT NOT gmx.com) — Google ADS Manual Farm accounts (verified via email and phone number) | GEO: USA/Europe, mostly USA. — WhatsApp OLD Accounts — Twitter accounts with followers and posts (old accounts) Contact us via the details below. We will be glad to cooperate! We are also ready to consider other partnership and collaboration options. Active links to our projects: 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 Telegram bot for purchasing Telegram Stars: Go to – fast and profitable purchase of Stars in Telegram. SMM Panel: Go to – promotion of your social media accounts. Contacts and support: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ Email: solomonbog@socnet.store
    • Dear partners! At the moment we are in great need of the following positions: — Snapchat old and new accounts | With snapscores | Geo: Europe/USA | Full access via email/phone number — Reddit old (brute or hacked origin, self-registered) accounts with post and comment karma from 100 to 100,000+ | Full email access included — LinkedIn old accounts with real connections | Geo: Europe/USA | Full email access + active 2FA password — Instagram old accounts (2010–2023) | Full email access (possibly with active 2FA password) — Facebook old accounts (2010–2023) | Full email access (possibly with active 2FA password) | With friends or without friends | Geo: Europe/USA/Asia — Threads accounts | Full email access (possibly with active 2FA password) — TikTok/Facebook/Google ADS Agency advertising accounts — Email accounts: mail.ru, yahoo.com, gazeta.pl, gmx.ch / gmx.de / gmx.net (BUT NOT gmx.com) — Google ADS Manual Farm accounts (verified via email and phone number) | GEO: USA/Europe, mostly USA. — WhatsApp OLD Accounts — Twitter accounts with followers and posts (old accounts) Contact us via the details below. We will be glad to cooperate! We are also ready to consider other partnership and collaboration options. Active links to our projects: 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 Telegram bot for purchasing Telegram Stars: Go to – fast and profitable purchase of Stars in Telegram. SMM Panel: Go to – promotion of your social media accounts. 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