Jump to content

DeathSpank287

Members
  • Posts

    137
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by DeathSpank287

  1. Dark, especially at night...
  2. I will re-upload tomorrow sorry guys...
  3. Compiled without any problems! Changed L2PcInstance_v.3.0.1.diff the last part to this: @@ -5846,12 +5872,10 @@ public void increasePvpKills(L2Character target, boolean event) { - if (target instanceof L2PcInstance) - { - if(event || AntiFeedManager.getInstance().check(this, target)) + if(!CustomPvpSystemConfig.CUSTOM_PVP_LEGAL_COUNTER_ALTT_ENABLED && target instanceof L2PcInstance && AntiFeedManager.getInstance().check(this, target) || !CustomPvpSystemConfig.CUSTOM_PVP_LEGAL_COUNTER_ALTT_ENABLED && event) { // Add karma to attacker and increase its PK counter setPvpKills(getPvpKills() + 1); // Send a Server->Client UserInfo packet to attacker with its Karma and PK Counter sendPacket(new UserInfo(this)); sendPacket(new ExBrExtraUserInfo(this)); } - } }
  4. Thanks, I will try it out and tell you my results :)
  5. I tried 3.0.1 still same.. Well my L2PCInstance is like this: public void increasePvpKills(L2Character target) { increasePvpKills(target, false); } /** * Increase the pvp kills count and send the info to the player * @param target */ public void increasePvpKills(L2Character target, boolean event) { if (target instanceof L2PcInstance) { if(event || AntiFeedManager.getInstance().check(this, target)) { // Add karma to attacker and increase its PK counter setPvpKills(getPvpKills() + 1); // Send a Server->Client UserInfo packet to attacker with its Karma and PK Counter sendPacket(new UserInfo(this)); sendPacket(new ExBrExtraUserInfo(this)); } } } Would this work?: public void increasePvpKills(L2Character target) { increasePvpKills(target, false); } /** * Increase the pvp kills count and send the info to the player * @param target */ public void increasePvpKills(L2Character target, boolean event) { if(!CustomPvpSystemConfig.CUSTOM_PVP_LEGAL_COUNTER_ALTT_ENABLED && target instanceof L2PcInstance && AntiFeedManager.getInstance().check(this, target)) { // Add karma to attacker and increase its PK counter setPvpKills(getPvpKills() + 1); // Send a Server->Client UserInfo packet to attacker with its Karma and PK Counter sendPacket(new UserInfo(this)); sendPacket(new ExBrExtraUserInfo(this)); } }
  6. Version 2.9.9 L2PcInstance.. This part does not match: @@ -5846,12 +5872,10 @@ */ public void increasePvpKills(L2Character target) { - if (target instanceof L2PcInstance - && AntiFeedManager.getInstance().check(this, target)) - { + if(!CustomPvpSystemConfig.CUSTOM_PVP_LEGAL_COUNTER_ALTT_ENABLED && target instanceof L2PcInstance && AntiFeedManager.getInstance().check(this, target)){ // Add karma to attacker and increase its PK counter setPvpKills(getPvpKills() + 1); // Send a Server->Client UserInfo packet to attacker with its Karma and PK Counter sendPacket(new UserInfo(this)); sendPacket(new ExBrExtraUserInfo(this)); Can you look into it please? L2J Revision: 5682M
  7. Dear MxC community, I would like to ask about the UP (Under Powered) Summoner classes in High Five. It's well know that the Summoner classes get Imba really easy! Also I am not really experienced with summoners so I would like to ask the community about their opinion about how to make them more balanced! (What should I change in order to balance them?) Currently in my server I got reports that they are UP. It's a classic H5 High rate server which uses latest L2J Stable version! So let me hear your opinions! Thanks in advance! Regards, DeathSpank
  8. Thanks! Really awesome^^ I have one suggestion that might interest you, it would be really awesome if you could add one more option at ".pvpinfo" window. PvP/PKs which counts the pvp/pk stats from the alt + t menu, the "real" pvps/pks. That would make your unique PvP system even more amazing!
  9. Really great work! :) But I get that Hittask error as well... Oct 21, 2012 2:13:06 PM com.l2jserver.gameserver.model.actor.L2Character$HitTask run SEVERE: Failed executing HitTask. java.lang.NullPointerException at com.l2jserver.gameserver.custom.pvpsystem.CustomPvpSystemCmd.playerResponseHtml(CustomPvpSystemCmd.java:107) at com.l2jserver.gameserver.custom.pvpsystem.CustomPvpSystemCmd.sendPlayerResponse(CustomPvpSystemCmd.java:80) at com.l2jserver.gameserver.custom.pvpsystem.CustomPvpSystem.doCustomPvp(CustomPvpSystem.java:152) at com.l2jserver.gameserver.model.actor.instance.L2PcInstance.doDie(L2PcInstance.java:5653) at com.l2jserver.gameserver.model.actor.status.PcStatus.reduceHp(PcStatus.java:317) at com.l2jserver.gameserver.model.actor.instance.L2PcInstance.reduceCurrentHp(L2PcInstance.java:11592) at com.l2jserver.gameserver.model.actor.L2Character.reduceCurrentHp(L2Character.java:7441) at com.l2jserver.gameserver.model.actor.L2Character.onHitTimer(L2Character.java:5587) at com.l2jserver.gameserver.model.actor.L2Character$HitTask.run(L2Character.java:3005) at com.l2jserver.gameserver.ThreadPoolManager$RunnableWrapper.run(ThreadPoolManager.java:86) at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source) at java.util.concurrent.FutureTask.run(Unknown Source) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(Unknown Source) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(Unknown Source) at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) at java.lang.Thread.run(Unknown Source) Keep up the good work! Also I have one more question. I have set the "CustomPvpProtectionReset" to 1440 minutes, does that mean that they get reward from the same player only every 24h?
  10. It's a trusted hosting with good services and servers! I myself bought from there a Domain, am hosting my Dedicated there and my Website. I recommend this to everyone who is searching for a hosting :) Regards, DeathSpank
  11. No problem all, is there any bug that needs fix or any typo or something missing?
  12. Very nice share! The only problem I have now and I can't figure out how to fix are the icons... (I am not good with .utx files) This didn't work: http://maxcheaters.com/forum/index.php?topic=237738.0 Edit: hmmm armorgrp.dat is fine written, I decrypted the Icons file, the Icons are fine... FIXED!! I will send the file to Dod when I fixed everything!
  13. Nice work! Can you send me number 9 please?
  14. Have you ever observed a free pvp server? I had opened one but I was forced to close it due to the stupidity of the players! Imagine this: A server EVERYTHING free except some misc things as, belts, cloaks, gc and Raid Boss Jewels (which later got to be free) 1 Vote reward (=5 votes) and you could buy either 1 belt or 1 cloak or 5 gc, and 5 Vote Rewards and you could buy a RB Jewel. So what I had was 40-50 player on. Events as Master Yogi up. Automated enchant NPC up. And guess what? 45 out of 50 players in town waiting to "farm" RB jewels and 5 players who were friends trying to find a small bug to complain on global chats, which ended 40 out of 10 player agreeing without even knowing what they are talking about! There were no RBs no Farm zones no other towns in order to move players start pvping. All in all there was PvP area and Main Town. So tell me wtf is wrong with player? I bet 3 years ago there would be 60 out of 50 player pvping in such a server! I opened that server to prove I was wrong with my theory but the results showed me I was right... I mean okay staying in a town chilling and talking with friends can or is fun but not all the time and then even complain about the bugs you haven't even seen! Also a friend of mine had opened a server like 6 months ago which had farming like to get full set Elegia/Vorpal it meant you had to kill 5 Epic bosses, with 30% to drop one part also you needed 2-3 parties to kill one epic boss... (That's the dream of every Veteran Player..) and guess what? They were farming adena and complaining they couldn't buy Elegia! That server was meant to be a half farm half pvp server... I made a char there got vesper +0 was trying to make pvp and they were just telling me pls stop i need to farm and they were with +16 vesper!! And they were still complaining about too much farm... I am asking myself is there anyway I can create a server in which player won't be sitting in a damn town or just farming without ANY pvp? I created a thread to make a server which gets the most votes... So let me see what the results will be lol...
  15. I trust you because I have experienced myself such players oO What I meant was that not every player is a no-lifer ;)
  16. Hehe with better graphics? :P Anyway I doubt playing an MMORPG like L2 means no-lifing or even playing low rates means not having a life... So I correct you, they have found a game which is called real life, and are bored to compete with no-lifers :) Well anyway the fact is that L2 will die soon or stay in hands of dumb no-lifers :)
  17. @Horus: As you are probably aware like 90% of players are dumb as shit or just spoiled brats... That means we won't see any difference untill Lineage is dead! The real players (aka veterans) who seriously know how to behave and don't cry about every sh1t have almost all left due to work reasons or no time or they found themselves a better game :/ That's why L2 will die sooner or later!
  18. Hello MaxCheaters community, I wanted to ask what kind of server you prefer in order to create one you would like. So let's get straight to the point! Which Chronicle do you prefer? High Five Gracia (up to Dynasty) Which rates would you prefer? High rate (x500) Mid rate (x50) Low rate (x10) Which features are the most preferable? High rate Farming: low farm (10h-20h for max) - mid farm (1-2 weeks for max) - a lot farm (1 month for max) [Counting system: one day = approx. 5h] Customs: No custom - Custom really hard to get - Custom normal farming... Elegia +20 vs custom +0 = equal - Elegia +0 vs custom +0 low difference NPCs: Well all but buffer with all buffs/basic buffs Etc Max +20, +16 or +30? High Enchant rates or low? (80-90 or 55-65) Easy to get scrolls or hard to get? Mid Rate: Farming: Balanced farm to get gear - Easy to get gear - Hard to get gear Custom: No custom - equal stats with best armor NPCs: GMShop Till A? B? S? everything? Global GK or Base GK(only tp to towns)? Buffer? Basic buffs or full buffs? Etc Max +20, +16 or +30? High Enchant rates or low? (80-90 or 55-65) Easy to get scrolls or hard to get? Low Rate: Farming: Retail like or easier or harder? Custom farm? Custom: NEVER! NPCs: Buffer? really basic buffs? GM Shop? Which items? Recipes? GK? Global? Basic? Etc Safe/Max? If custom farm, easy to get hard to get? Any other Suggestions? Thanks in advance! I really appreciate your time and I hope I will be able to provide you with a server you will like! How I am thinking to make it at the moment: (Also sample for you guys ;) ) Which Chronicle do you prefer? High Five Which rates would you prefer? High Rate (x500) Which features are the most preferable? Mid Farm Custom really hard to get Low difference between Custom and Top armor Full GK Full GM Shop Basic buffs at buffer (Songs/Dance/PP/WC) Max/Safe 16/4 Low enchant rates (66%) Hard to get enchant scrolls. That's it :) Some extra features: Castles every week Heroes every 2 weeks Hope you can help me! Greetings, DeathSpank
  19. Lineage will not die so soon... The only thing Lineage needs is less servers! Why? Every 2nd retard opens a f*cked server with corrupted srv or anything and the good servers can't be found, which are about 10 out of 200! Also good servers are almost always getting bad reputation because of dumb players who die in pvp because they seriously don't know how to play or there is a player who is better than them... And instead of trying to get better or just leave server they complain on forums, ingame and where ever they can. That makes good server disappear. One more thing that helps L2 die is the 24/7 cries about staff being corrupted or server being 100% bugs no balance etc. That's one thing that makes good Developers/GM Team get depressed and just leave the server die or just close it. Seriously instead of saying "srv ful baggss.... fuuu srv fuu gm! nooob srv" go to their forum and write "I found a bug. *reporting bug*". That would help everyone! Sorry I went a bit off topic :P So to keep lineage alive what we as players/developers have to do. Less QQ more report. Let noobish servers die. Less DDoS attacks on server which have more population than your own. As a player if you like the GM Team/Server support them, not with money but with everything they can't do themselves! Also unfortunatelly Lineage 2 Low Rates have died because most players are bored of farm and just want to bang... And less time for most players!
  20. Have you added itemname-e properly? All guys with this problem are you sure you are using the latest High Five version? And are you sure you added the patch properly?
  21. It's not the I move slowly, but that I am bored of L2 because of the players and I am thinking of quitting. I guess I can do it, at first without the scripted npcs just for test, but I think it's really easy... I might give it a try and share it
  22. Nice shares, I will make sure they get in my first post and in my package with credits of course!
  23. I adapted and tested myself... It is for High Five! I guess you haven't added itemname-e.dat...
  24. Hmm are you sure you are using H5 Client? and have you insterted the codes correctly? I think you missed armorgrp-e.dat
×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock