-
Posts
29 -
Credits
0 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by ISAM_MISTRO
-
Looking for Beta Testers for L2Top Maxcheaters website
ISAM_MISTRO replied to Maxtor's topic in Announcements and News
i am in -
Share Flying Broom with Effects + new character Animation
ISAM_MISTRO replied to NevesOma's topic in Client Development Discussion
how i can make it work for H5? -
can someone help me i want to generating geodata using client files i was searching and i find the geo generating but i don't have any idea how to use it if some 1 have tutorial https://github.com/madyanov/l2mapconv-public
-
Help i need help in java editing
ISAM_MISTRO posted a question in Request Server Development Help [L2J]
i have this error and i dont have any idea how i can fix it can some one help error : https://ibb.co/qdLj1L4 code : --------------------------------------------------------------------------------------------------------------------------------------------------------- package zones; import java.util.concurrent.ScheduledFuture; import l2f.commons.threading.RunnableImpl; import l2f.gameserver.ThreadPoolManager; import l2f.gameserver.listener.zone.OnZoneEnterLeaveListener; import l2f.gameserver.model.Creature; import l2f.gameserver.model.Player; import l2f.gameserver.model.Zone; import l2f.gameserver.scripts.ScriptFile; import l2f.gameserver.utils.ReflectionUtils; /** * @author L2Mythras */ public class PvPZone implements ScriptFile { private static ZoneListener _zoneListener; @Override public void onLoad() { _zoneListener = new ZoneListener(); Zone zone = ReflectionUtils.getZone("[pvp_zone_toi]"); zone.addListener(_zoneListener); } @Override public void onReload() { on reload } @Override public void onShutdown() { on shutdown } public class ZoneListener implements OnZoneEnterLeaveListener { @Override public void onZoneEnter(Zone zone, Creature cha) { ScheduledFuture<?> _checkTask = null; if (zone.getParams() == null || !cha.isPlayable()) return; if (!cha.isPlayer()) return; cha.getPlayer().sendMessage("You have entered in a PvP Zone!"); cha.startPvPFlag(null); cha.getPlayer().sendMessage("You are now flagged!"); _checkTask = ThreadPoolManager.getInstance().scheduleAtFixedRate(new checkZone((Player)cha, zone, _checkTask), 60000, 60000); } public class checkZone extends RunnableImpl { Player _cha; Zone _zone; ScheduledFuture<?> _checkTask; public checkZone(Player cha, Zone zone, ScheduledFuture<?> checkTask) { _cha = cha; _zone = zone; _checkTask = checkTask; } @Override public void runImpl() throws Exception { if(_cha.isInZone(_zone)) { _cha.startPvPFlag(null); } else { _checkTask.cancel(true); _checkTask = null; } } } @Override public void onZoneLeave(Zone zone, Creature cha) { if (cha == null) return; cha.getPlayer().sendMessage("You have left the PvP Zone !"); cha.getPlayer().stopPvPFlag(); } } } --------------------------------------------------------------------------------------------------------------------------------------------------------- -
i want to add a buttons that open alt+b community board but not the index .html other one the default for index : gameserver\data\html-en\scripts\services\communityPVP\pages\index.htnl what i want : gameserver\data\html-en\scripts\services\communityPVP\gatekeeper\ main.htm can some one help plz function HandleShowBoardWnd() { local string strParam; ParamAdd(strParam, "Init", "1"); ExecuteEvent(EV_ShowBBS, strParam); } this code open index :gameserver\data\html-en\scripts\services\communityPVP\pages\index.htnl
-
Help i need help in interface editing
ISAM_MISTRO replied to ISAM_MISTRO's topic in [Request] Client Dev Help
Done thanks bro -
i want to modify this HP windows but i don't know what they named in the interface .u and interface .xdat can some help ??? https://ibb.co/0M0J6Qs
-
Request i need help in interface editing
ISAM_MISTRO replied to ISAM_MISTRO's topic in Request Botting [English]
my error in writing the interface window fixed -
i want to add macro inventory to this interface and i add the interface.u script and i test it work but wane i add the windows in interface.xdat i gat a black Screen can some one help me note : i am beginner https://drive.google.com/drive/folders/1qcfrsh8pBl6QYfMNcZepRMvRlZosw3iD?usp=sharing ====>> interface.u interface.xdat
-
Share Six Skills - Interlude
ISAM_MISTRO replied to SGER@fjs's topic in Client Development Discussion
can some one make skill grp for h5 or tell my how to do it 31230 1 0 34 900 2 2.77999997 1 E SGERfjs_SkillsElemental.1 SGERfjs_SkillsElemental.skill11018 0 0 0 0 9 11 31231 1 0 34 900 2 2.77999997 1 E SGERfjs_SkillsElemental.2 SGERfjs_SkillsElemental.skill11018 0 0 0 0 9 11 31232 1 0 34 900 2 2.77999997 1 E SGERfjs_SkillsElemental.3 SGERfjs_SkillsElemental.skill11018 0 0 0 0 9 11 31233 1 0 34 900 2 2.77999997 1 E SGERfjs_SkillsElemental.4 SGERfjs_SkillsElemental.skill11018 0 0 0 0 9 11 31234 1 0 34 900 2 2.77999997 1 E SGERfjs_SkillsElemental.5 SGERfjs_SkillsElemental.skill11018 0 0 0 0 9 11 31235 1 0 34 900 2 2.77999997 1 E SGERfjs_SkillsElemental.6 SGERfjs_SkillsElemental.skill11018 0 0 0 0 9 11 -
Share New Skill Interlude "Wind Destruction"
ISAM_MISTRO replied to Celestine's topic in Client Development Discussion
i want to change it to h5 if is it possible -
i want to Modification this bata npc code to make players pay for this Services pay item id 57 package l2f.gameserver.model.instances; import java.sql.Connection; import java.sql.PreparedStatement; import l2f.commons.dbutils.DbUtils; import l2f.gameserver.database.DatabaseFactory; import l2f.gameserver.model.Player; import l2f.gameserver.model.entity.olympiad.Olympiad; import l2f.gameserver.network.serverpackets.L2GameServerPacket; import l2f.gameserver.network.serverpackets.PledgeShowInfoUpdate; import l2f.gameserver.network.serverpackets.SkillList; import l2f.gameserver.network.serverpackets.UserInfo; import l2f.gameserver.tables.SkillTable; import l2f.gameserver.templates.npc.NpcTemplate; import l2f.gameserver.utils.Log; public final class BetaNPCInstance extends NpcInstance { /** * Author Ady */ private static final long serialVersionUID = 5938813598479742068L; public BetaNPCInstance(int objectId, NpcTemplate template) { super(objectId, template); } @Override public void onBypassFeedback(Player player, String command) { if (!canBypassCheck(player, this)) { return; } if (command.equalsIgnoreCase("change_sex")) { Connection con = null; PreparedStatement offline = null; try { con = DatabaseFactory.getInstance().getConnection(); offline = con.prepareStatement("UPDATE characters SET sex = ? WHERE obj_Id = ?"); offline.setInt(1, player.getSex() == 1 ? 0 : 1); offline.setInt(2, player.getObjectId()); offline.executeUpdate(); } catch (Exception e) { e.printStackTrace(); return; } finally { DbUtils.closeQuietly(con, offline); } player.changeSex(); player.sendMessage("Your gender has been changed !!"); Log.add(new StringBuilder().append("Character ").append(player).append(" changed sex to ").append(player.getSex() == 1 ? "male" : "female").toString(), "renames"); } else if (command.equalsIgnoreCase("add_clan_reputation")) { if (player.getClan() != null) { player.getClan().incReputation(10000, false, "BetaNpc"); player.getClan().broadcastToOnlineMembers(new L2GameServerPacket[] { new PledgeShowInfoUpdate(player.getClan()) }); player.sendMessage("Your clan received 10 000 clan reputation!"); } else { player.sendMessage("You don't have clan to use this feature!"); } } else if (command.equalsIgnoreCase("add_exp_sp")) { player.addExpAndSp(999999999L, 999999999L); player.addExpAndSp(999999999L, 999999999L); player.addExpAndSp(999999999L, 999999999L); player.addExpAndSp(999999999L, 999999999L); player.addExpAndSp(999999999L, 999999999L); player.addExpAndSp(999999999L, 999999999L); player.addExpAndSp(999999999L, 999999999L); player.addExpAndSp(999999999L, 999999999L); } else if (command.equalsIgnoreCase("add_fame")) { player.setFame(player.getFame() + 10000, "BetaNpc"); player.sendPacket(new UserInfo(player)); player.sendMessage("You received 10.000 fame points !"); } else if (command.equalsIgnoreCase("give_noblesse")) { if (!player.isNoble()) { Olympiad.addNoble(player.getPlayer()); player.getPlayer().setNoble(true); player.getPlayer().updatePledgeClass(); player.getPlayer().updateNobleSkills(); player.getPlayer().sendPacket(new SkillList(player.getPlayer())); player.getPlayer().broadcastUserInfo(true); player.getInventory().addItem(7694, 1L, "nobleTiara"); player.sendMessage("Congratulations! You gained noblesse rank."); player.broadcastUserInfo(true); } else if (player.isNoble()) { player.sendMessage("You already have noblesse rank !"); } } else if (command.equalsIgnoreCase("give_hero")) { if (!player.isHero()) { player.setHero(true); player.updatePledgeClass(); player.addSkill(SkillTable.getInstance().getInfo(395, 1)); player.addSkill(SkillTable.getInstance().getInfo(396, 1)); player.addSkill(SkillTable.getInstance().getInfo(1374, 1)); player.addSkill(SkillTable.getInstance().getInfo(1375, 1)); player.addSkill(SkillTable.getInstance().getInfo(1376, 1)); player.sendPacket(new SkillList(player)); player.getPlayer().broadcastUserInfo(true); player.sendMessage("Congratulations! You gained hero rank."); player.broadcastUserInfo(true); } else if (player.isNoble()) { player.sendMessage("You already have hero rank !"); } } else { super.onBypassFeedback(player, command); } } @Override public boolean isNpc() { return true; } }
-
Share Lineage 2 Logotype design
ISAM_MISTRO replied to Celestine's topic in Website Templates & Themes (Free)
how I can get vip ??????? -
Help Augmenting action button
ISAM_MISTRO replied to ISAM_MISTRO's question in Request Server Development Help [L2J]
thanks it work -
Help Augmenting action button
ISAM_MISTRO posted a question in Request Server Development Help [L2J]
i want to add the Augmenting window in ALT+B but i get this error html <table border=0 width=340 height=38 cellspacing=4 cellpadding=3 bgcolor=232836> <tr> <td width=40 align=right valign=top> <img src="Icon.etc_ancient_adena_i00" width=32 height=32> </td> <td width=260 align=left valign=top> <font color="FF6633">Start Augmenting</font><br1> <font color=c1b33a></font> </td> <td width=40 height=39> <button value="" action="bypass -h npc_%objectId%_Augment 1" width=32 height=32 back="L2UI_ct1.MiniMap_DF_PlusBtn_Blue_Down" fore="L2UI_ct1.MiniMap_DF_PlusBtn_Blue"> </td> </tr> </table> ------------------------------------------------------------error------------------------- [13:35:30] ERROR Char 'qqqqqqq' sent Bad RequestBypassToServer: npc_%objectId%_Augment 1 via NPC #30298 java.lang.NumberFormatException: For input string: "%objectId%" at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) at java.lang.Integer.parseInt(Integer.java:569) at java.lang.Integer.parseInt(Integer.java:615) at l2f.gameserver.network.clientpackets.RequestBypassToServer.runImpl(RequestBypassToServer.java:118) at l2f.gameserver.network.clientpackets.L2GameClientPacket.run(L2GameClientPacket.java:49) at l2f.commons.net.nio.impl.MMOExecutableQueue.run(MMOExecutableQueue.java:39) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) at java.lang.Thread.run(Thread.java:748) -
Share Interface Essence - High Five
ISAM_MISTRO replied to Devib's topic in Client Development Discussion
i have this problem if you can help my with https://drive.google.com/file/d/1JNxumtru16uUw1AL066N_yPmlc3om6AI/view?usp=sharing -
Share Interface Essence - High Five
ISAM_MISTRO replied to Devib's topic in Client Development Discussion
can you share with me h5 system you Sure it work with it -
Share Interface Essence - High Five
ISAM_MISTRO replied to Devib's topic in Client Development Discussion
I am using l2 mythras -
Share Interface Essence - High Five
ISAM_MISTRO replied to Devib's topic in Client Development Discussion
local server -
Share Interface Essence - High Five
ISAM_MISTRO replied to Devib's topic in Client Development Discussion
H5 l2.bin error -
Share Interface Essence - High Five
ISAM_MISTRO replied to Devib's topic in Client Development Discussion
didn't work for my ???? -
Help LOGO CHANGING L2 MYTHRAS
ISAM_MISTRO replied to ISAM_MISTRO's topic in [Request] Client Dev Help
i do find it with this file -
I WANNA TO CHANGE THIS LOGO DID SOME ONE TALL MY HOW I JUST WANT TO CHANGE THE LOGO Leave the effects
-
I have a problem adding special elements to my server the item is Dragon Weapons i add the Clint files to the Clint and i did the same in the server file and i get this error WARN ItemParser: Fail create item: 102021 java.lang.IllegalArgumentException: Enum value of type l2f.gameserver.templates.item.EtcItemTemplate$EtcItemTyperequired, but found: null! at l2f.commons.collections.MultiValueSet.getEnum(MultiValueSet.java:329) at l2f.gameserver.templates.item.EtcItemTemplate.<init>(EtcItemTemplate.java:53) at l2f.gameserver.data.xml.parser.ItemParser.readData(ItemParser.java:128) at l2f.commons.data.xml.AbstractParser.parseDocument(AbstractParser.java:40) at l2f.commons.data.xml.AbstractParser.parseCrypted(AbstractParser.java:45) at l2f.commons.data.xml.AbstractDirParser.parse(AbstractDirParser.java:52) at l2f.commons.data.xml.AbstractParser.load(AbstractParser.java:64) at l2f.gameserver.data.xml.Parsers.parseAll(Parsers.java:59) at l2f.gameserver.GameServer.<init>(GameServer.java:222) at l2f.gameserver.GameServer.main(GameServer.java:496) [17:27:21] WARN ItemParser: Fail create item: 102022 need help plzzz files link https://redirect.viglink.com/?format=go&jsonp=vglnk_159785554046914&key=44ba36a78d230cac4b5c201921917da4&libId=ke1kdc0f0102v6wv000DAux6f1uo6wg3u&loc=https%3A%2F%2Fl2jbrasil.com%2Ftopic%2F110595-dragon-claw-weapons-v-20-high-five-antharas-valakas-lindvior%2F&v=1&opt=true&out=https%3A%2F%2Fmega.nz%2F%23!x1VgBJia&title=Dragon Claw Weapons V - 2.0 [HIGH FIVE] Antharas | Valakas | Lindvior - High Five - L2JBrasil - A Maior e mais antiga Comunidade de Lineage 2 da América Latina&txt= Decryption Key ! z0es50ZgKivRmbQIkYOUTIXoZywAgXDMjEquFXR49bk