Jump to content

Dominion

Members
  • Posts

    29
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Dominion

  1. im is problem ... help ? :D http://www.photobox.co.uk/my/photo/full?photo_id=8234225257
  2. site need 7 days wait///// go system download plz beta test :) server
  3. L2Dominion H5 PvP ! Basic Information : Experience (XP): x1000 Spell Points (SP): x1000 Drop (Adena): x1000 Drop (Items): x1 Spoil: x1 Safe. Enchant :+4 Max. Enchant : +18 Chance (for regular scrolls): 65% Chance (for blessed scrolls): 98% Maximum Attribute Level: 4 Attribute Stones Rate: 100% Top Augmentation Rate: 80% Maximum Subclass: 3 Sieges & Territory Wars (Every 2 Weeks) Certifications Without Quest Reward All Beta Clan 11 lvl Full Skills Buff info : Buff Duration: 4 Hours +30 Max buffs : 36 Max dances and songs : 21 Olympiad : Olympiad is available from 18:00 until 23:00 PM with +1 GMT time zone. Max Enchant in olympiad +6 Olympiad Period 1 week, changed every Sunday. Custom Olympiad Anti-Feed system. Custom: TvT Round Event, event reward 30 Dominion Coin. Dance System. Cloak God Olympiad. Acessory Stats. MultiFunctionZone. PvpReward. Quake System Kill. Command Custom: .online .dressme Custom NPCs : Custom Gatekeeper Full GM Shop Scheme NPC Buffer Pvp Shop Vote Shop Nobless Augumenter WareHouse System Download Beta: http://www.speedyshare.com/Z7Sbc/L2-Dominion-Version-3.1-Patch.rar
  4. in test for h5 good work +1 :)
  5. is work thx solved xd
  6. me is no work xd Uploaded with ImageShack.us why ??
  7. Uploaded with ImageShack.us why error not loaded admin commands imm add gangam style -.- edit: i solved remove admincommand.xml from gangam style is work ok ty share !!!
  8. all work thx share ! Locked Topic . :))
  9. Uploaded with ImageShack.us
  10. Uploaded with ImageShack.us
  11. omg :D L2World.getInstance().getAllPlayers().values(new L2PcInstance[0]) red line .... xdin datapack
  12. Uploaded with ImageShack.us jesus xd
  13. is work and yellow line if(player instanceof L2PcInstance)
  14. L2PcInstance[0]) red line is Uploaded with ImageShack.us
  15. Adapt Code Plz? for h5 ? ndex: head-src/com/l2jfrozen/gameserver/handler/admincommandhandlers/AdminMassHero.java =================================================================== --- head-src/com/l2jfrozen/gameserver/handler/admincommandhandlers/AdminMassHero.java (revision 0) +++ head-src/com/l2jfrozen/gameserver/handler/admincommandhandlers/AdminMassHero.java (revision 0) @@ -0,0 +1,75 @@ +/* + * 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.l2jfrozen.gameserver.handler.admincommandhandlers; + +import java.util.logging.Logger; + +import com.l2jfrozen.gameserver.handler.IAdminCommandHandler; +import com.l2jfrozen.gameserver.model.L2World; +import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance; +import com.l2jfrozen.gameserver.network.serverpackets.SocialAction; + +/** + * @Description: Give Status Hero to All Players In Game + * + * @Usage: //masshero + * + * @author Leandro Cândido + * + */ + +public class AdminMassHero implements IAdminCommandHandler +{ + protected static final Logger _log = Logger.getLogger(AdminMassHero.class.getName()); + + @Override + public String[] getAdminCommandList() + { + return ADMIN_COMMANDS; + } + + @Override + public boolean useAdminCommand(String command, L2PcInstance activeChar) + { + if(activeChar == null) + return false; + + if(command.startsWith("admin_masshero")) + { + for(L2PcInstance player : L2World.getInstance().getAllPlayers()) + { + if(player instanceof L2PcInstance) + { + /* Check to see if the player already is Hero */ + if(!player.isHero() || !player.isInOlympiadMode()) + { + player.setIsHero(true); + player.sendMessage("Admin is rewarding all online players with Hero Status."); + player.broadcastPacket(new SocialAction(player.getObjectId(), 16)); + player.broadcastUserInfo(); + } + player = null; + } + } + } + return true; + } + + private static String[] ADMIN_COMMANDS = { "admin_masshero" }; +} Index: head-src/com/l2jfrozen/gameserver/handler/AdminCommandHandler.java =================================================================== --- head-src/com/l2jfrozen/gameserver/handler/AdminCommandHandler.java (revision 903) +++ head-src/com/l2jfrozen/gameserver/handler/AdminCommandHandler.java (working copy) @@ -91,6 +91,7 @@ import com.l2jfrozen.gameserver.handler.admincommandhandlers.AdminTvTEngine; import com.l2jfrozen.gameserver.handler.admincommandhandlers.AdminUnblockIp; import com.l2jfrozen.gameserver.handler.admincommandhandlers.AdminVIPEngine; +import com.l2jfrozen.gameserver.handler.admincommandhandlers.AdminMassHero; import com.l2jfrozen.gameserver.handler.admincommandhandlers.AdminZone; /** @@ -185,6 +120,9 @@ registerAdminCommandHandler(new AdminNoble()); registerAdminCommandHandler(new AdminBuffs()); registerAdminCommandHandler(new AdminAio()); + registerAdminCommandHandler(new AdminMassHero()); //ATTENTION: adding new command handlers, you have to change the //sql file containing the access levels rights
  16. please unresolved closing topic
  17. Uploaded with ImageShack.us
  18. Uploaded with ImageShack.us [javac] C:\Users\Admin\workspace\L2jFrozenInterlude\trunk\gameserver\head-src\com\l2jfrozen\gameserver\model\actor\instance\L2PcInstance.java:8334: error: illegal start of type [javac] if (rewardConsecutiveKillCount >= Config.PVP_COUNT_TILL_ENCHANTMENT && Config.ENABLE_PVP_ENCHANTMENT) [javac] ^ [javac] C:\Users\Admin\workspace\L2jFrozenInterlude\trunk\gameserver\head-src\com\l2jfrozen\gameserver\model\actor\instance\L2PcInstance.java:8334: error: <identifier> expected [javac] if (rewardConsecutiveKillCount >= Config.PVP_COUNT_TILL_ENCHANTMENT && Config.ENABLE_PVP_ENCHANTMENT) [javac] ^ [javac] C:\Users\Admin\workspace\L2jFrozenInterlude\trunk\gameserver\head-src\com\l2jfrozen\gameserver\model\actor\instance\L2PcInstance.java:8334: error: ';' expected [javac] if (rewardConsecutiveKillCount >= Config.PVP_COUNT_TILL_ENCHANTMENT && Config.ENABLE_PVP_ENCHANTMENT) [javac] ^ [javac] C:\Users\Admin\workspace\L2jFrozenInterlude\trunk\gameserver\head-src\com\l2jfrozen\gameserver\model\actor\instance\L2PcInstance.java:8334: error: illegal start of type [javac] if (rewardConsecutiveKillCount >= Config.PVP_COUNT_TILL_ENCHANTMENT && Config.ENABLE_PVP_ENCHANTMENT) [javac] ^ [javac] C:\Users\Admin\workspace\L2jFrozenInterlude\trunk\gameserver\head-src\com\l2jfrozen\gameserver\model\actor\instance\L2PcInstance.java:8334: error: ';' expected [javac] if (rewardConsecutiveKillCount >= Config.PVP_COUNT_TILL_ENCHANTMENT && Config.ENABLE_PVP_ENCHANTMENT) [javac] ^ [javac] C:\Users\Admin\workspace\L2jFrozenInterlude\trunk\gameserver\head-src\com\l2jfrozen\gameserver\model\actor\instance\L2PcInstance.java:8334: error: <identifier> expected [javac] if (rewardConsecutiveKillCount >= Config.PVP_COUNT_TILL_ENCHANTMENT && Config.ENABLE_PVP_ENCHANTMENT) [javac] ^ [javac] 6 errors [javac] 1 warning
  19. plz update to h5 :(
  20. i solved silk subversion 1.8.3 i have and removed install new 1.7.9 is work locked topic.
  21. no solved locked topic.
  22. [PL]ok spróbuje jak coś to za 15 minut odpisze czy coś się zmieniło :D[/PL]
×
×
  • Create New...