Jump to content

SweeTs

Legendary Member
  • Posts

    8,941
  • Credits

  • Joined

  • Last visited

  • Days Won

    25
  • Feedback

    0%

Everything posted by SweeTs

  1. Clean characters_skills table.
  2. Hehe, exactly like Tryskell said. Well, it happens.. bad day, probably :)
  3. Rotfl at this part :D Well, good job and thanks for re-share :)
  4. What config do you need, there is all what you need..? It's complete.
  5. Show us the code and error :P
  6. com.l2jserver.gameserver.instancemanager.AutoVoteRewardManager.getVotes(AutoVoteRewardManager.java:133) Goto 133 line and check what's wrong :P Surely something with getVotes part.
  7. I'm just wondering why you have the same description about Olympiad and Party matching as Desire project? :o Fast copy/paste? :D Clean version: Info Desire version: Olympiad || Party matching ---------- Anyway, good luck with your project ;)
  8. By editing npcname.dat in your system folder 20001 Gremlin 9C E8 A9 -1 9C E8 A9 - these numbers, if im not wrong
  9. http://maxcheaters.com/forum/index.php?topic=227053.0
  10. Well, I just successfully logged into forum using mobile-phone and I noticed a topic made by a hoster in which one guy found a temp fix how to connect to the forum. I didnt checked yet if it really works, but here you go.. Go to C:\WINDOWS\system32\drivers\etc and add to a host file 46.20.232.99 acis.i-live.eu Edit: It works, or maybe the site is finally up? :o
  11. F@ckin' FBI! :|
  12. Yeah, do whatever you want, use name which you like more :o
  13. Ummm, just change mine code (case 1: => case 3:, case2: => case 6: and so on..) and change the text, it's not hard.
  14. Yeah, you're right*, I forgot about spreeKills = 0; in doDie() :P Here you go fixed code: ### Eclipse Workspace Patch 1.0 #P aCis_gameserver Index: java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java =================================================================== --- java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java (revision 224) +++ java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java (working copy) @@ -35,6 +35,7 @@ import javolution.util.FastSet; import net.sf.l2j.Config; import net.sf.l2j.L2DatabaseFactory; +import net.sf.l2j.gameserver.Announcements; import net.sf.l2j.gameserver.GameTimeController; import net.sf.l2j.gameserver.GeoData; import net.sf.l2j.gameserver.ItemsAutoDestroy; @@ -4525,6 +4526,8 @@ if (is-beep-ted()) stopFeed(); + spreeKills = 0; + synchronized (this) { if (isFakeDeath()) @@ -4783,8 +4786,38 @@ * Increase the pvp kills count and send the info to the player * */ + private int spreeKills = 0; + public void increasePvpKills() { + spreeKills++; + + switch(spreeKills) + { + case 1: + Announcements.getInstance().announceToAll("" + this.getName()+ " has drawn the first blood!"); + break; + + case 2: + Announcements.getInstance().announceToAll("" + this.getName()+ " has scored a double kill!"); + break; + + case 3: + Announcements.getInstance().announceToAll("" + this.getName()+ " has scored a triple kill!"); + break; + + default: + ; + } + // Add karma to attacker and increase its PK counter setPvpKills(getPvpKills() + 1); * - like always, damn Falcon's eye :D
  15. Find ID of hat, go to xml/items and add following thing: <mul order="0x30" stat="maxHp" val="1.15" /> <mul order="0x30" stat="maxMp" val="1.15" /> So, it would looks like this <item id="7683" type="Armor" name="Rabbit Ears"> <set name="default_action" val="equip" /> <set name="bodypart" val="hair" /> <set name="material" val="wood" /> <set name="weight" val="10" /> <set name="price" val="500000" /> <for> <mul order="0x30" stat="maxHp" val="1.15" /> <mul order="0x30" stat="maxMp" val="1.15" /> </for> </item>
  16. Just add how much case's you want in the same way, just change the number. Number = how much pvp you need in a row to announce a spree. ### Eclipse Workspace Patch 1.0 #P aCis_gameserver Index: java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java =================================================================== --- java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java (revision 224) +++ java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java (working copy) @@ -35,6 +35,7 @@ import javolution.util.FastSet; import net.sf.l2j.Config; import net.sf.l2j.L2DatabaseFactory; +import net.sf.l2j.gameserver.Announcements; import net.sf.l2j.gameserver.GameTimeController; import net.sf.l2j.gameserver.GeoData; import net.sf.l2j.gameserver.ItemsAutoDestroy; @@ -4525,6 +4526,8 @@ if (is-beep-ted()) stopFeed(); + spreeKills = 0; + synchronized (this) { if (isFakeDeath()) @@ -4783,8 +4786,38 @@ * Increase the pvp kills count and send the info to the player * */ + private int spreeKills = 0; + public void increasePvpKills() { + spreeKills++; + + switch(spreeKills) + { + case 1: + Announcements.getInstance().announceToAll("" + this.getName()+ " has drawn the first blood!"); + break; + + case 2: + Announcements.getInstance().announceToAll("" + this.getName()+ " has scored a double kill!"); + break; + + case 3: + Announcements.getInstance().announceToAll("" + this.getName()+ " has scored a triple kill!"); + break; + + default: + ; + } + // Add karma to attacker and increase its PK counter setPvpKills(getPvpKills() + 1);
  17. He don't mean that. His point is that while you have pvp, and someone send you /friendinvite a window pops up, like in trade - damn it, your fcking invite disturbs my pvp. :P So he want to make a check like when you're flagged, you cant receive a friendinvite.
  18. That's why there exist such programs like SkillXML :o
  19. Use damn SkillXML, its way faster :P
  20. Changeset 221 Misc [*] Addition of missing skills for 3rd class summons. [*] Fix //polyself, adding check on templates. [*] Remove the useless button "Diet" on admin panel. [*] Addition of Ketra/Varka support. Ty fernandopm/Kenrix for their work. [*] Correct some things on " chat (GMs aren't blocked anymore), and send systemMessage when possible. [*] porta skill (GetPlayer) is now retail-like. [*] Fix an issue about BossZone (L2Summon != L2SummonInstance) [*] Avoid to stuck client if you try to exploit augment panel (trying to drop weapon/gemstones/LS).
  21. http://maxcheaters.com/forum/index.php?topic=212959.0
  22. Such share already exist. http://www.maxcheaters.com/forum/index.php?topic=183597.0
  23. Everything is explained HERE. Just try :P
  24. Appearances are deceptive, cuz they just look, nothing more :) Nop, you can't :)
×
×
  • Create New...