Jump to content

[Share] Few donators commands


DominiQue

Recommended Posts

/*

* 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}
Link to comment
Share on other sites

/*

* 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;

   }

 

}

Link to comment
Share on other sites

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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

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.



  • Posts

    • DETAILS for PUBG Fluffy:   ✔️Support: Windows 10 all ✔️Supported launchers: Steam ✔️Supported modes: Windowed and Borderles ✔️Supported controller without any problems ✔️Hardware Spoofer and Traces Cleaner included ✔️Ranked Ready   PRICE:   Day = $ 8 Week = $ 30 Month = $ 67   ✔️Automatic Purchase/Delivery. Cheat Features/Functions and gameplay are shown in video:   [url]https://streamable.com/sumzho[/url]   ✅ We will be releasing new products for new games soon.  ✅ Register on the Nikacheats shop, verify on Discord and follow the news. ✅ You can buy products with cryptocurrencies or Stripe. 🙂  
    • DETAILS for PUBG Impress:   ✔️ HWID SPOOFER + Traces Cleaner  ✔️ Support INTEL + AMD ✔️ INTERNAL CHEAT ✔️ Supports ALL Windows 10 versions including newest one! ✔️ Supports ALL Windows 11 versions including newest one    PRICE:   Day = $ 12 Week = $ 50 Month = $ 90   ✔️Automatic Purchase/Delivery.   Cheat Features/Functions and gameplay are shown in video:   [url]https://streamable.com/y62u9c[/url]   ✅Im selling from first hand, providing you the cheapest possible price on the market. ✅The best undetected cheats and spoofer. ✅You will get my full support on Discord by purchasing on Nikacheats shop.  
    • Петушок, я тебе ещё в начале этого топика пояснил что именно вы являетесь нацистским государством. Это же подтверждается и тем что сбежавшие из России  нацики рдг атаковавшего мирное население  России входят в состав всу-чек))  нацисты это вы, а ты тупой нацист! Тупой трусливый нацист) сбежал в польшу и оттуда кукарекаешь))
    • GLOBAL-GAME.SU 💥 Unique High Five - Strength x50 💰 Earn real money! 💫 We guarantee you that the server will be without: 🚫 Wipes, 👣 Drawings, 🚷 Shadow donations, 🗣 Empty promises! 💯 No donation shop! 💢 Free PA at server start for all players! 🔱 New unique farm zones! 🆓 Absolutely free server! 🆕 New unique systems! 🦍 New unique instance zones! ☣ Absolutely balanced races/classes! 🚾 Olfa +6 for repost joining our Discord group! 📣 OBT: June 20th! Official start: 24 - June at 19:10 Moscow time! Game server description: http://global-game.su/str.html Details about other promotions and events on our game forum: https://forum.global-game.su/index.php
    • Added new Updates/Fixes: 08-06-2023.   Fixed: Subclass bug exploit on stuck skills, thanks for report, L2Alpha. Fixed: shift+click dropinfo thanks for report, Andreaus.   You download the update from here : L2Server: https://esl2.org/pts_classic_updates/L2Server/   if you find any problems report -> bugs here: https://discord.gg/GzNMZ9EHGK  
  • 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