123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797 |
- /*
- * Copyright (C) 2004-2015 L2J DataPack
- *
- * This file is part of L2J DataPack.
- *
- * L2J DataPack 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.
- *
- * L2J DataPack 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.admincommandhandlers;
- import java.util.Collection;
- import java.util.StringTokenizer;
- import com.l2jserver.Config;
- import com.l2jserver.gameserver.datatables.SkillData;
- import com.l2jserver.gameserver.enums.Team;
- import com.l2jserver.gameserver.handler.IAdminCommandHandler;
- import com.l2jserver.gameserver.model.L2Object;
- import com.l2jserver.gameserver.model.L2World;
- import com.l2jserver.gameserver.model.actor.L2Character;
- import com.l2jserver.gameserver.model.actor.L2Npc;
- import com.l2jserver.gameserver.model.actor.instance.L2ChestInstance;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.model.skills.AbnormalVisualEffect;
- import com.l2jserver.gameserver.model.skills.Skill;
- import com.l2jserver.gameserver.network.SystemMessageId;
- import com.l2jserver.gameserver.network.serverpackets.CharInfo;
- import com.l2jserver.gameserver.network.serverpackets.Earthquake;
- import com.l2jserver.gameserver.network.serverpackets.ExBrExtraUserInfo;
- import com.l2jserver.gameserver.network.serverpackets.ExRedSky;
- import com.l2jserver.gameserver.network.serverpackets.L2GameServerPacket;
- import com.l2jserver.gameserver.network.serverpackets.MagicSkillUse;
- import com.l2jserver.gameserver.network.serverpackets.PlaySound;
- import com.l2jserver.gameserver.network.serverpackets.SSQInfo;
- import com.l2jserver.gameserver.network.serverpackets.SocialAction;
- import com.l2jserver.gameserver.network.serverpackets.SunRise;
- import com.l2jserver.gameserver.network.serverpackets.SunSet;
- import com.l2jserver.gameserver.network.serverpackets.UserInfo;
- import com.l2jserver.gameserver.util.Broadcast;
- import com.l2jserver.gameserver.util.Util;
- /**
- * This class handles following admin commands: <li>invis/invisible/vis/visible = makes yourself invisible or visible <li>earthquake = causes an earthquake of a given intensity and duration around you <li>bighead/shrinkhead = changes head size <li>gmspeed = temporary Super Haste effect. <li>
- * para/unpara = paralyze/remove paralysis from target <li>para_all/unpara_all = same as para/unpara, affects the whole world. <li>polyself/unpolyself = makes you look as a specified mob. <li>changename = temporary change name <li>clearteams/setteam_close/setteam = team related commands <li>social =
- * forces an L2Character instance to broadcast social action packets. <li>effect = forces an L2Character instance to broadcast MSU packets. <li>abnormal = force changes over an L2Character instance's abnormal state. <li>play_sound/play_sounds = Music broadcasting related commands <li>atmosphere =
- * sky change related commands.
- */
- public class AdminEffects implements IAdminCommandHandler
- {
- private static final String[] ADMIN_COMMANDS =
- {
- "admin_invis",
- "admin_invisible",
- "admin_setinvis",
- "admin_vis",
- "admin_visible",
- "admin_invis_menu",
- "admin_earthquake",
- "admin_earthquake_menu",
- "admin_bighead",
- "admin_shrinkhead",
- "admin_gmspeed",
- "admin_gmspeed_menu",
- "admin_unpara_all",
- "admin_para_all",
- "admin_unpara",
- "admin_para",
- "admin_unpara_all_menu",
- "admin_para_all_menu",
- "admin_unpara_menu",
- "admin_para_menu",
- "admin_polyself",
- "admin_unpolyself",
- "admin_polyself_menu",
- "admin_unpolyself_menu",
- "admin_clearteams",
- "admin_setteam_close",
- "admin_setteam",
- "admin_social",
- "admin_effect",
- "admin_effect_menu",
- "admin_ave_abnormal",
- "admin_ave_special",
- "admin_ave_event",
- "admin_social_menu",
- "admin_play_sounds",
- "admin_play_sound",
- "admin_atmosphere",
- "admin_atmosphere_menu",
- "admin_set_displayeffect",
- "admin_set_displayeffect_menu"
- };
-
- @Override
- public boolean useAdminCommand(String command, L2PcInstance activeChar)
- {
- StringTokenizer st = new StringTokenizer(command);
- st.nextToken();
-
- if (command.equals("admin_invis_menu"))
- {
- if (!activeChar.isInvisible())
- {
- activeChar.setInvisible(true);
- activeChar.broadcastUserInfo();
- activeChar.decayMe();
- activeChar.spawnMe();
- activeChar.sendMessage("You are now invisible.");
- }
- else
- {
- activeChar.setInvisible(false);
- activeChar.broadcastUserInfo();
- activeChar.sendMessage("You are now visible.");
- }
-
- command = "";
- AdminHtml.showAdminHtml(activeChar, "gm_menu.htm");
- }
- else if (command.startsWith("admin_invis"))
- {
- activeChar.setInvisible(true);
- activeChar.broadcastUserInfo();
- activeChar.decayMe();
- activeChar.spawnMe();
- activeChar.sendMessage("You are now invisible.");
- }
- else if (command.startsWith("admin_vis"))
- {
- activeChar.setInvisible(false);
- activeChar.broadcastUserInfo();
- activeChar.sendMessage("You are now visible.");
- }
- else if (command.startsWith("admin_setinvis"))
- {
- if ((activeChar.getTarget() == null) || !activeChar.getTarget().isCharacter())
- {
- activeChar.sendPacket(SystemMessageId.INCORRECT_TARGET);
- return false;
- }
- final L2Character target = (L2Character) activeChar.getTarget();
- target.setInvisible(!target.isInvisible());
- activeChar.sendMessage("You've made " + target.getName() + " " + (target.isInvisible() ? "invisible" : "visible") + ".");
-
- if (target.isPlayer())
- {
- ((L2PcInstance) target).broadcastUserInfo();
- }
- }
- else if (command.startsWith("admin_earthquake"))
- {
- try
- {
- String val1 = st.nextToken();
- int intensity = Integer.parseInt(val1);
- String val2 = st.nextToken();
- int duration = Integer.parseInt(val2);
- Earthquake eq = new Earthquake(activeChar.getX(), activeChar.getY(), activeChar.getZ(), intensity, duration);
- activeChar.broadcastPacket(eq);
- }
- catch (Exception e)
- {
- activeChar.sendMessage("Usage: //earthquake <intensity> <duration>");
- }
- }
- else if (command.startsWith("admin_atmosphere"))
- {
- try
- {
- String type = st.nextToken();
- String state = st.nextToken();
- int duration = Integer.parseInt(st.nextToken());
- adminAtmosphere(type, state, duration, activeChar);
- }
- catch (Exception ex)
- {
- activeChar.sendMessage("Usage: //atmosphere <signsky dawn|dusk>|<sky day|night|red> <duration>");
- }
- }
- else if (command.equals("admin_play_sounds"))
- {
- AdminHtml.showAdminHtml(activeChar, "songs/songs.htm");
- }
- else if (command.startsWith("admin_play_sounds"))
- {
- try
- {
- AdminHtml.showAdminHtml(activeChar, "songs/songs" + command.substring(18) + ".htm");
- }
- catch (StringIndexOutOfBoundsException e)
- {
- activeChar.sendMessage("Usage: //play_sounds <pagenumber>");
- }
- }
- else if (command.startsWith("admin_play_sound"))
- {
- try
- {
- playAdminSound(activeChar, command.substring(17));
- }
- catch (StringIndexOutOfBoundsException e)
- {
- activeChar.sendMessage("Usage: //play_sound <soundname>");
- }
- }
- else if (command.equals("admin_para_all"))
- {
- try
- {
- Collection<L2PcInstance> plrs = activeChar.getKnownList().getKnownPlayers().values();
- for (L2PcInstance player : plrs)
- {
- if (!player.isGM())
- {
- player.startAbnormalVisualEffect(true, AbnormalVisualEffect.PARALYZE);
- player.setIsParalyzed(true);
- player.startParalyze();
- }
- }
- }
- catch (Exception e)
- {
- }
- }
- else if (command.equals("admin_unpara_all"))
- {
- try
- {
- Collection<L2PcInstance> plrs = activeChar.getKnownList().getKnownPlayers().values();
- for (L2PcInstance player : plrs)
- {
- player.stopAbnormalVisualEffect(true, AbnormalVisualEffect.PARALYZE);
- player.setIsParalyzed(false);
- }
- }
- catch (Exception e)
- {
- }
- }
- else if (command.startsWith("admin_para")) // || command.startsWith("admin_para_menu"))
- {
- String type = "1";
- try
- {
- type = st.nextToken();
- }
- catch (Exception e)
- {
- }
- try
- {
- L2Object target = activeChar.getTarget();
- L2Character player = null;
- if (target instanceof L2Character)
- {
- player = (L2Character) target;
- if (type.equals("1"))
- {
- player.startAbnormalVisualEffect(true, AbnormalVisualEffect.PARALYZE);
- }
- else
- {
- player.startAbnormalVisualEffect(true, AbnormalVisualEffect.FLESH_STONE);
- }
- player.setIsParalyzed(true);
- player.startParalyze();
- }
- }
- catch (Exception e)
- {
- }
- }
- else if (command.startsWith("admin_unpara")) // || command.startsWith("admin_unpara_menu"))
- {
- String type = "1";
- try
- {
- type = st.nextToken();
- }
- catch (Exception e)
- {
- }
- try
- {
- L2Object target = activeChar.getTarget();
- L2Character player = null;
- if (target instanceof L2Character)
- {
- player = (L2Character) target;
- if (type.equals("1"))
- {
- player.stopAbnormalVisualEffect(true, AbnormalVisualEffect.PARALYZE);
- }
- else
- {
- player.stopAbnormalVisualEffect(true, AbnormalVisualEffect.FLESH_STONE);
- }
- player.setIsParalyzed(false);
- }
- }
- catch (Exception e)
- {
- }
- }
- else if (command.startsWith("admin_bighead"))
- {
- try
- {
- L2Object target = activeChar.getTarget();
- L2Character player = null;
- if (target instanceof L2Character)
- {
- player = (L2Character) target;
- player.startAbnormalVisualEffect(true, AbnormalVisualEffect.BIG_HEAD);
- }
- }
- catch (Exception e)
- {
- }
- }
- else if (command.startsWith("admin_shrinkhead"))
- {
- try
- {
- L2Object target = activeChar.getTarget();
- L2Character player = null;
- if (target instanceof L2Character)
- {
- player = (L2Character) target;
- player.stopAbnormalVisualEffect(true, AbnormalVisualEffect.BIG_HEAD);
- }
- }
- catch (Exception e)
- {
- }
- }
- else if (command.startsWith("admin_gmspeed"))
- {
- try
- {
- int val = Integer.parseInt(st.nextToken());
- boolean sendMessage = activeChar.isAffectedBySkill(7029);
- activeChar.stopSkillEffects((val == 0) && sendMessage, 7029);
- if ((val >= 1) && (val <= 4))
- {
- Skill gmSpeedSkill = SkillData.getInstance().getSkill(7029, val);
- activeChar.doSimultaneousCast(gmSpeedSkill);
- }
- }
- catch (Exception e)
- {
- activeChar.sendMessage("Usage: //gmspeed <value> (0=off...4=max)");
- }
- if (command.contains("_menu"))
- {
- command = "";
- AdminHtml.showAdminHtml(activeChar, "gm_menu.htm");
- }
- }
- else if (command.startsWith("admin_polyself"))
- {
- try
- {
- String id = st.nextToken();
- activeChar.getPoly().setPolyInfo("npc", id);
- activeChar.teleToLocation(activeChar.getLocation());
- CharInfo info1 = new CharInfo(activeChar);
- activeChar.broadcastPacket(info1);
- UserInfo info2 = new UserInfo(activeChar);
- activeChar.sendPacket(info2);
- activeChar.broadcastPacket(new ExBrExtraUserInfo(activeChar));
- }
- catch (Exception e)
- {
- activeChar.sendMessage("Usage: //polyself <npcId>");
- }
- }
- else if (command.startsWith("admin_unpolyself"))
- {
- activeChar.getPoly().setPolyInfo(null, "1");
- activeChar.decayMe();
- activeChar.spawnMe(activeChar.getX(), activeChar.getY(), activeChar.getZ());
- CharInfo info1 = new CharInfo(activeChar);
- activeChar.broadcastPacket(info1);
- UserInfo info2 = new UserInfo(activeChar);
- activeChar.sendPacket(info2);
- activeChar.broadcastPacket(new ExBrExtraUserInfo(activeChar));
- }
- else if (command.equals("admin_clearteams"))
- {
- try
- {
- Collection<L2PcInstance> plrs = activeChar.getKnownList().getKnownPlayers().values();
- for (L2PcInstance player : plrs)
- {
- player.setTeam(Team.NONE);
- player.broadcastUserInfo();
- }
- }
- catch (Exception e)
- {
- }
- }
- else if (command.startsWith("admin_setteam_close"))
- {
- try
- {
- String val = st.nextToken();
- int radius = 400;
- if (st.hasMoreTokens())
- {
- radius = Integer.parseInt(st.nextToken());
- }
- Team team = Team.valueOf(val.toUpperCase());
- Collection<L2Character> plrs = activeChar.getKnownList().getKnownCharactersInRadius(radius);
-
- for (L2Character player : plrs)
- {
- player.setTeam(team);
- }
- }
- catch (Exception e)
- {
- activeChar.sendMessage("Usage: //setteam_close <none|blue|red> [radius]");
- }
- }
- else if (command.startsWith("admin_setteam"))
- {
- try
- {
- Team team = Team.valueOf(st.nextToken().toUpperCase());
- L2Character target = null;
- if (activeChar.getTarget() instanceof L2Character)
- {
- target = (L2Character) activeChar.getTarget();
- }
- else
- {
- return false;
- }
- target.setTeam(team);
- }
- catch (Exception e)
- {
- activeChar.sendMessage("Usage: //setteam <none|blue|red>");
- }
- }
- else if (command.startsWith("admin_social"))
- {
- try
- {
- String target = null;
- L2Object obj = activeChar.getTarget();
- if (st.countTokens() == 2)
- {
- int social = Integer.parseInt(st.nextToken());
- target = st.nextToken();
- if (target != null)
- {
- L2PcInstance player = L2World.getInstance().getPlayer(target);
- if (player != null)
- {
- if (performSocial(social, player, activeChar))
- {
- activeChar.sendMessage(player.getName() + " was affected by your request.");
- }
- }
- else
- {
- try
- {
- int radius = Integer.parseInt(target);
- Collection<L2Object> objs = activeChar.getKnownList().getKnownObjects().values();
- for (L2Object object : objs)
- {
- if (activeChar.isInsideRadius(object, radius, false, false))
- {
- performSocial(social, object, activeChar);
- }
- }
- activeChar.sendMessage(radius + " units radius affected by your request.");
- }
- catch (NumberFormatException nbe)
- {
- activeChar.sendMessage("Incorrect parameter");
- }
- }
- }
- }
- else if (st.countTokens() == 1)
- {
- int social = Integer.parseInt(st.nextToken());
- if (obj == null)
- {
- obj = activeChar;
- }
-
- if (performSocial(social, obj, activeChar))
- {
- activeChar.sendMessage(obj.getName() + " was affected by your request.");
- }
- else
- {
- activeChar.sendPacket(SystemMessageId.NOTHING_HAPPENED);
- }
- }
- else if (!command.contains("menu"))
- {
- activeChar.sendMessage("Usage: //social <social_id> [player_name|radius]");
- }
- }
- catch (Exception e)
- {
- if (Config.DEBUG)
- {
- e.printStackTrace();
- }
- }
- }
- else if (command.startsWith("admin_ave_abnormal") || command.startsWith("admin_ave_special") || command.startsWith("admin_ave_event"))
- {
- if (st.countTokens() > 0)
- {
- final String param1 = st.nextToken();
- AbnormalVisualEffect ave;
-
- try
- {
- ave = AbnormalVisualEffect.valueOf(param1);
- }
- catch (Exception e)
- {
-
- return false;
- }
-
- int radius = 0;
- String param2 = null;
- if (st.countTokens() == 1)
- {
- param2 = st.nextToken();
- if (Util.isDigit(param2))
- {
- radius = Integer.parseInt(param2);
- }
- }
-
- if (radius > 0)
- {
- for (L2Object object : activeChar.getKnownList().getKnownObjects().values())
- {
- if (activeChar.isInsideRadius(object, radius, false, false))
- {
- performAbnormalVisualEffect(ave, object);
- }
- }
- activeChar.sendMessage("Affected all characters in radius " + param2 + " by " + param1 + " abnormal visual effect.");
- }
- else
- {
- final L2Object obj = activeChar.getTarget() != null ? activeChar.getTarget() : activeChar;
- if (performAbnormalVisualEffect(ave, obj))
- {
- activeChar.sendMessage(obj.getName() + " affected by " + param1 + " abnormal visual effect.");
- }
- else
- {
- activeChar.sendPacket(SystemMessageId.NOTHING_HAPPENED);
- }
- }
- }
- else
- {
- activeChar.sendMessage("Usage: //" + command.replace("admin_", "") + " <AbnormalVisualEffect> [radius]");
- }
- }
- else if (command.startsWith("admin_effect"))
- {
- try
- {
- L2Object obj = activeChar.getTarget();
- int level = 1, hittime = 1;
- int skill = Integer.parseInt(st.nextToken());
- if (st.hasMoreTokens())
- {
- level = Integer.parseInt(st.nextToken());
- }
- if (st.hasMoreTokens())
- {
- hittime = Integer.parseInt(st.nextToken());
- }
- if (obj == null)
- {
- obj = activeChar;
- }
- if (!(obj instanceof L2Character))
- {
- activeChar.sendPacket(SystemMessageId.INCORRECT_TARGET);
- }
- else
- {
- L2Character target = (L2Character) obj;
- target.broadcastPacket(new MagicSkillUse(target, activeChar, skill, level, hittime, 0));
- activeChar.sendMessage(obj.getName() + " performs MSU " + skill + "/" + level + " by your request.");
- }
-
- }
- catch (Exception e)
- {
- activeChar.sendMessage("Usage: //effect skill [level | level hittime]");
- }
- }
- else if (command.startsWith("admin_set_displayeffect"))
- {
- L2Object target = activeChar.getTarget();
- if (!(target instanceof L2Npc))
- {
- activeChar.sendPacket(SystemMessageId.INCORRECT_TARGET);
- return false;
- }
- L2Npc npc = (L2Npc) target;
- try
- {
- String type = st.nextToken();
- int diplayeffect = Integer.parseInt(type);
- npc.setDisplayEffect(diplayeffect);
- }
- catch (Exception e)
- {
- activeChar.sendMessage("Usage: //set_displayeffect <id>");
- }
- }
-
- if (command.contains("menu") || command.contains("ave_"))
- {
- showMainPage(activeChar, command);
- }
- return true;
- }
-
- /**
- * @param ave the abnormal visual effect
- * @param target the target
- * @return {@code true} if target's abnormal state was affected, {@code false} otherwise.
- */
- private boolean performAbnormalVisualEffect(AbnormalVisualEffect ave, L2Object target)
- {
- if (target instanceof L2Character)
- {
- final L2Character character = (L2Character) target;
- if (character.hasAbnormalVisualEffect(ave))
- {
- character.stopAbnormalVisualEffect(true, ave);
- }
- else
- {
- character.startAbnormalVisualEffect(true, ave);
- }
- return true;
- }
- return false;
- }
-
- private boolean performSocial(int action, L2Object target, L2PcInstance activeChar)
- {
- try
- {
- if (target instanceof L2Character)
- {
- if (target instanceof L2ChestInstance)
- {
- activeChar.sendPacket(SystemMessageId.NOTHING_HAPPENED);
- return false;
- }
- if ((target instanceof L2Npc) && ((action < 1) || (action > 3)))
- {
- activeChar.sendPacket(SystemMessageId.NOTHING_HAPPENED);
- return false;
- }
- if ((target instanceof L2PcInstance) && ((action < 2) || ((action > 18) && (action != SocialAction.LEVEL_UP))))
- {
- activeChar.sendPacket(SystemMessageId.NOTHING_HAPPENED);
- return false;
- }
- L2Character character = (L2Character) target;
- character.broadcastPacket(new SocialAction(character.getObjectId(), action));
- }
- else
- {
- return false;
- }
- }
- catch (Exception e)
- {
- }
- return true;
- }
-
- /**
- * @param type - atmosphere type (signssky,sky)
- * @param state - atmosphere state(night,day)
- * @param duration
- * @param activeChar
- */
- private void adminAtmosphere(String type, String state, int duration, L2PcInstance activeChar)
- {
- L2GameServerPacket packet = null;
-
- if (type.equals("signsky"))
- {
- if (state.equals("dawn"))
- {
- packet = new SSQInfo(2);
- }
- else if (state.equals("dusk"))
- {
- packet = new SSQInfo(1);
- }
- }
- else if (type.equals("sky"))
- {
- if (state.equals("night"))
- {
- packet = SunSet.STATIC_PACKET;
- }
- else if (state.equals("day"))
- {
- packet = SunRise.STATIC_PACKET;
- }
- else if (state.equals("red"))
- {
- if (duration != 0)
- {
- packet = new ExRedSky(duration);
- }
- else
- {
- packet = new ExRedSky(10);
- }
- }
- }
- else
- {
- activeChar.sendMessage("Usage: //atmosphere <signsky dawn|dusk>|<sky day|night|red> <duration>");
- }
- if (packet != null)
- {
- Broadcast.toAllOnlinePlayers(packet);
- }
- }
-
- private void playAdminSound(L2PcInstance activeChar, String sound)
- {
- PlaySound _snd = new PlaySound(1, sound, 0, 0, 0, 0, 0);
- activeChar.sendPacket(_snd);
- activeChar.broadcastPacket(_snd);
- activeChar.sendMessage("Playing " + sound + ".");
- }
-
- @Override
- public String[] getAdminCommandList()
- {
- return ADMIN_COMMANDS;
- }
-
- private void showMainPage(L2PcInstance activeChar, String command)
- {
- String filename = "effects_menu";
- if (command.contains("ave_abnormal"))
- {
- filename = "ave_abnormal";
- }
- else if (command.contains("ave_special"))
- {
- filename = "ave_special";
- }
- else if (command.contains("ave_event"))
- {
- filename = "ave_event";
- }
- else if (command.contains("social"))
- {
- filename = "social";
- }
- AdminHtml.showAdminHtml(activeChar, filename + ".htm");
- }
- }
|