
arm4729
Members-
Posts
231 -
Credits
0 -
Joined
-
Last visited
-
Days Won
1 -
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by arm4729
-
Vote for upcoming MaxCheaters.com Server Rates
arm4729 replied to Maxtor's topic in Votes/Polls Area
i would love to play on mxc server especially pvp high rate custom with raid loop maybe add server junction and new season feature -
Hey guys im spectating on this forum since DragonHunter exploits and magaki13 database password leak , i personally think this is best l2 forum .... there has to be a way to get new members and more activity if this is what this thread is about ....
-
you did use best words to describe what im feeling , thats main reason why mid rate server fail , when you got a big map designated for x amount of players (3-5k at least active) and you don't have that players because you are not official , you have to think to work something out..... and l2extreme had the chance to be running a great formula for its community(economy/raids/etc) , i just can't say or do nothing more than hope it will be a better update.. for me personally l2extreme in last 2 years was only server where i played more than 2 days in a row
-
Hey , first of all i'm not trying to be rude , effort is appreciated . by killing i mean there is no more same features that i used to like , because of this change old extreme is not existing anymore , if something does not exist how can be alive ? hope you got ideea
-
Hey , i will be there for raid pvp
-
GJ , you just killed my favorite pvp server Anyway wish you good luck with project hope will have better pvp time
-
Request Comunityboard
arm4729 replied to testaroaverta's question in Request Server Development Help [L2J]
can you explain please why not to show ip on cb ? -
Request Bypass in Tutorial Html Window
arm4729 posted a question in Request Server Development Help [L2J]
Hello guys , i need help in this problem , i have an Random Chest item , on item click , packet TutorialHtml is sent to client with a html , all good until here but when i try to use that tutorial html to do some bypass is not working buttons and nothing in console , anyone know something about this please ? i have for ex bp_dressme 1 -> bypass to get skin (1) / is working on community board , is working on .dressme menu (normal html window) , but the bypass in tutorial window wont work .. I MEAN NOT 1 SINGLE BYPASS IS WORKING FROM TUTORIALHTML WINDOW , THAT SMALL WINDOW ON RIGHT SIDE ... ///found on a forum search that RequestTutorialPassCmdToServer.java was what i need -
Help help only in pvp zone reward
arm4729 replied to iAlreadyExist's question in Request Server Development Help [L2J]
Maybe you code is working , and your zones work too , but you have ip protection to avoid players dual box get reward , did you try with other player / pc ? -
Discussion BAD + GOOD SERVER OWNERS
arm4729 replied to L2who's topic in General Discussion [English]
ZeusProtectionBest -
Help help only in pvp zone reward
arm4729 replied to iAlreadyExist's question in Request Server Development Help [L2J]
maybe you have same ip protection ? -
Help help only in pvp zone reward
arm4729 replied to iAlreadyExist's question in Request Server Development Help [L2J]
if(isInsideZone(ZoneId.CUSTOMPVP)&&(Config.ENABLE_PVP_FEATURES)) { pvpReward(); } else if (isInsideZone(ZoneId.CUSTOMPVP)&&(!Config.ENABLE_PVP_FEATURES)) { sendMessage("Reward Disabled"); return } -
Code Autobots | The best Fake Player & Autofarm Engine
arm4729 replied to Elfo's topic in Server Shares & Files [L2J]
Hey thank you for reply , hh for me was easier to move everything from my acis pack to tesla pack because autobots was there lol -
Anyway , there are 100% infected hardware of lineage 2 players , mining monero or whatever for some guys right ? :)
-
Help Cancel subclass keep skills
arm4729 replied to 0flee's question in Request Server Development Help [L2J]
yes this is what it does but you need to make it run when players get class changed , you need to search for "public boolean setActiveClass(int classIndex)" or something like this fiind exact moment when class is changed and after that add checkAllowedSkills(); or restoreSkills(); i try to help you but i have 0 experience in substack type servers -
Request How much dmg player deal to monster/rb , any hint ?
arm4729 replied to arm4729's question in Request Server Development Help [L2J]
Thank you all for help but Tryskell give me best hint / fact :D after a few hours (2 or 3) of looking to RewardInfo/Attackable/Aggro .. found that answer to my question , wich was how i can get the total amount of damage killer or other instance did to a monster was "damageMap.get(killer)" -
Request How much dmg player deal to monster/rb , any hint ?
arm4729 replied to arm4729's question in Request Server Development Help [L2J]
I dont have a .getDamage() method in Player instance i get this error where do i have to add this ? in player.java ? +public List<Player > Attacker = new ArrayList<>(); + public final Player getDamageDealer() + { + int dmg = 0; + Player DamageDealer = null; + for (Player p : Attacker) + { + if (p.getDamage() > dmg) + { + dmg = p.getDamage(); + DamageDealer = p; + } + } + return DamageDealer; + } -
Help Cancel subclass keep skills
arm4729 replied to 0flee's question in Request Server Development Help [L2J]
look one way is go to player.java or pcisntance.java what you have and search for public boolean setActiveClass(int classIndex) search for restoreHenna(); or restoreSkills(); rewardSkills(); regiveTemporarySkills(); and try to add checkAllowedSkills(); or restoreSkills(); -
Request How much dmg player deal to monster/rb , any hint ?
arm4729 replied to arm4729's question in Request Server Development Help [L2J]
public class Antharas extends CustomBoss { @Override public void onDie(Monster boss, Player killer) { Map<Player, Integer> damageMap = boss.getDamageMap(); List<Player> canGiveTo = new ArrayList<>(); for (Player p : damageMap.keySet()) { if (p.isOnline() && !p.isDead() && p.isInsideRadius(boss, 1200, false, false)) canGiveTo.add(p); } if (canGiveTo.isEmpty()) return; if (canGiveTo.size() < Config.SN_DROP.getValue()) { String names = ""; int avail = Config.SN_DROP.getValue(); for (Player p : canGiveTo) { p.addItem("drop", Config.SN_DROP.getId(), 1, null, true); avail--; names += p.getName()+", "; } for (int i = 0; i < avail; i++) canGiveTo.get(Rnd.get(canGiveTo.size())).addItem("drop", Config.SN_DROP.getId(), 1, null, true); Broadcast.announceToOnlinePlayers("[REBIRTH CHEST]Congratulations to the player "+names.substring(0, names.length()-2)+(" he obtained the Rebirth Chest from slaying grand boss "+boss.getName()+" !!")); } else { List<Player> given = new ArrayList<>(); for (int i = 0; i < Config.SN_DROP.getValue(); i++) { Player p = null; do { p = canGiveTo.get(Rnd.get(canGiveTo.size())); } while (given.contains(p)); if (p == null) return; p.addItem("drop", Config.SN_DROP.getId(), 1, null, true); given.add(p); } String names = ""; for (Player p : given) names += p.getName()+", "; Broadcast.announceToOnlinePlayers("[REBIRTH CHEST]Congratulations to the player "+names.substring(0, names.length()-2)+(" he obtained the Rebirth Chest from slaying grand boss "+boss.getName()+" !!")); } } hey , thanks for reply I think already i have an list of players that did dmg do boss , if im wrong correct me .. i need to know how to get like for each player the total dmg that dealt to boss -
Help Cancel subclass keep skills
arm4729 replied to 0flee's question in Request Server Development Help [L2J]
player.giveAvailableSkills(); player.sendSkillList(); player.checkAllowedSkills(); maybe this will help you -
Source L2jTesla - The Interlude project you shouldn't use
arm4729 replied to Elfo's topic in Server Shares & Files [L2J]
why? //edit: problem was i was using mysql service istead of maria service (ave marry) -
Code Autobots | The best Fake Player & Autofarm Engine
arm4729 replied to Elfo's topic in Server Shares & Files [L2J]
thank you ! //edit can anyone help me add this to acis ? -
WTS New Character Animations for Interlude Gracia FInal HF
arm4729 replied to NevesOma's topic in Marketplace [L2Packs & Files]
price?