Jump to content

Intrepid

Legendary Member
  • Posts

    5,521
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Intrepid

  1. 1.Lineage2 2.Far Cry 2 3.F.E.A.R 4.Painkiller/the first/ 5.NFS UG1 6.Crysis warhead 7.GTA SA/online/ 8.CoD 5 9.Tomb Raider Underworld 10.Lef 4 Dead
  2. thanks very nice new banner and it's ready to go^^
  3. sws+bd+wc or pp and 1 healer with 5 archer in cata:P
  4. Fischer Spooner - Never Win (Benny Benassi Mix, Ferry Corsten Cut) Klaas - The Way To Go (At Night Electro Mix) http://www.youtube.com/watch?v=YGMp8sxBE8Y Deck Raiders - Just The Way I'd Like To Go Tiësto presents Alone In The Dark: Inferno - Edward Carnby
  5. Intrepid

    ANIME !!

    naruto sucks!xD Elfen Lied and Bleech is the best.
  6. well the best is dont use them:Dwhen i dont use anti-virus program i dont have idiot system message to cracks and other files,dont eat a lot of ram... now i use nod32 business edetion and sometimes i hate it but it's good i think not the best because other ppl other favourites:) so nod32 OR avast can be great too
  7. well here's my guide for edit the subclasses. 1st how to list subclasses in 1 npc: go to L2VillageMasterInstance.java located in gameserver.model.actor.instance search for this: /** * If the race of your main class is Elf or Dark Elf, * you may not select each class as a subclass to the other class, * and you may not select Overlord and Warsmith class as a subclass. * * You may not select a similar class as the subclass. * The occupations classified as similar classes are as follows: * * Treasure Hunter, Plainswalker and Abyss Walker * Hawkeye, Silver Ranger and Phantom Ranger * Paladin, Dark Avenger, Temple Knight and Shillien Knight * Warlocks, Elemental Summoner and Phantom Summoner * Elder and Shillien Elder * Swordsinger and Bladedancer * Sorcerer, Spellsinger and Spellhowler * */ in l2jfree pack(i compile it now so the last rev of gracia) is in the 739.line under this you see that: if (npcRace == Race.Human || npcRace == Race.Elf) { // If the master is human or light elf, ensure that fighter-type // masters only teach fighter classes, and priest-type masters // only teach priest classes etc. if (!availSub.isOfType(npcTeachType)) availSubs.remove(availSub); // Remove any non-human or light elf classes. else if (!availSub.isOfRace(Race.Human) && !availSub.isOfRace(Race.Elf)) availSubs.remove(availSub); } else { // If the master is not human and not light elf, // then remove any classes not of the same race as the master. if (!availSub.isOfRace(npcRace)) availSubs.remove(availSub); } what was that mean: if (!availSub.isOfType(npcTeachType)) availSubs.remove(availSub); this means fighter class npc teach only fighter class subclasses and mage type npc teach only mage classes if you dont want that just delete just delete it. // Remove any non-human or light elf classes. else if (!availSub.isOfRace(Race.Human) && !availSub.isOfRace(Race.Elf)) availSubs.remove(availSub); this means the npc dont list you for subclass the orc dwarf and dark elf if the master npc(priest)is elf or human.if you dont need this delete it. { // If the master is not human and not light elf, // then remove any classes not of the same race as the master. if (!availSub.isOfRace(npcRace)) availSubs.remove(availSub); } this means if the master npc is not human or elf the npc dont list subclasses from other classes only from the master npc's class.if you dont want it just delete. you need to see this if you want to list all class at 1 npc: Set<PlayerClass> availSubs = currClass.getAvailableSubclasses(); if (availSubs != null) { for (PlayerClass availSub : availSubs) { for (Iterator<SubClass> subList = iterSubClasses(player); subList.hasNext();) { SubClass prevSubClass = subList.next(); int subClassId = prevSubClass.getClassId(); if (subClassId >= 88) subClassId = ClassId.values()[subClassId].getParent().getId(); if (availSub.ordinal() == subClassId || availSub.ordinal() == player.getBaseClass()) availSubs.remove(PlayerClass.values()[availSub.ordinal()]); } } } return availSubs; 2nd how to edit the subclass limitations beetwen classes: go to PlayerClass.java located in gameserver.model.base here you see a list with all classes go down until you see the enumsets: private static final Set<PlayerClass> subclasseSet1 = EnumSet.of(DarkAvenger, Paladin, TempleKnight, ShillienKnight); private static final Set<PlayerClass> subclasseSet2 = EnumSet.of(TreasureHunter, AbyssWalker, Plainswalker); private static final Set<PlayerClass> subclasseSet3 = EnumSet.of(Hawkeye, SilverRanger, PhantomRanger); private static final Set<PlayerClass> subclasseSet4 = EnumSet.of(Warlock, ElementalSummoner, PhantomSummoner); private static final Set<PlayerClass> subclasseSet5 = EnumSet.of(Sorceror, Spellsinger, Spellhowler); you see the never subclassed enumset with overlord and warsmith if you want to allow them just delete these lines: private static final Set<PlayerClass> neverSubclassed = EnumSet.of(Overlord, Warsmith); subclasses.removeAll(neverSubclassed); in the other 5 set you see the subclass limits beetwen classes with type you know dagger class cant sub to other dagger summoner cant sub to other cummoner class and so on... if you want to allow these you need to delete 4 lines for each subclass set these lines: private static final Set<PlayerClass> subclasseSet1 = EnumSet.of(DarkAvenger, Paladin, TempleKnight, ShillienKnight); subclassSetMap.put(DarkAvenger, subclasseSet1); subclassSetMap.put(Paladin, subclasseSet1); subclassSetMap.put(TempleKnight, subclasseSet1); subclassSetMap.put(ShillienKnight, subclasseSet1); and so on for each set you want allow for subclass. now allow elf class to sub for dark elf: search for this: switch (_race) { case Elf: subclasses.removeAll(getSet(DarkElf, Third)); break; case DarkElf: subclasses.removeAll(getSet(Elf, Third)); break; } here you see case Elf.case elf means the npc remove all delf class from master npc if you are elf and in case DarkElf the master npc remove all class from elf race if you are dark elf the only thing you need to do is delete these things if you want to allow them. now let see the kamael.For kamael i dont want to allow all class to sub to that shitty race because of the wing...if a warlord for example sub to kamael he cant use kamael skills because of they are wing reletad and it's make errors in gs consol... so i show 2 things you can edit with kamael classes. 1st thing subclass beetwen male and female classes: subclasses = getSet(Kamael, Third); subclasses.remove(this); //Check sex, male can't subclass female and vice versa if (player.getAppearance().getSex()) subclasses.removeAll(EnumSet.of(maleSoulbreaker)); else subclasses.removeAll(EnumSet.of(femaleSoulbreaker)); search for this here you can see male cant sub to female and female cant sub to male.delete it if you want to allow. 2nd the inspector class: if (player.getTotalSubClasses() < 2) subclasses.removeAll(EnumSet.of(inspector)); here you can edit how many completed subclass needed to be an inspector.you need to edit number in player.getTotalSubClasses. i think it's done now.The kamael section is totally untested!(because i hate them too much:D) If you have problem post it. credits to me.
  8. 10min set from Qlimax 2007 hardstyle festival:P
  9. this patch works only in INTERLUDE soon i make a guide how to edit these things in other chronicles! 1st post updated with the guide!
  10. WOW :o epic gay armor...you are drunked when you do this? ;D ;D ;D
  11. i dont think there are any pvp server with 1K online player on...try out abyss or l2dex 5000x
  12. best: lvl10 stone activ skill on mage:P lvl10 medusa activ passiv duel might worst: kiss of eva
  13. winamp.i hate windows media player.
  14. forge with over(mass root)and warlord or titan:) agro+root+kill:P
  15. Well yes this is it but the PlayNC version:Dbecause this game released by PlayNC in japan(i think in 2007)
  16. multi class bug dont work and when you subclass you get disarmed(all equipped item go to your inventory)so you cant use SA bug so...:) this java patch only got 1 bug in kamael and above because if you enable all class to sub to kamael race ALL skills get bugged... the moral is...USE INTERLUDE!
  17. sorry if it's alredy posted delete this topic:)
  18. well all dagger can be a one man army but i think th in maja light with skills like mirage dash...if it's controlled properly it's the best char...
  19. i'm hot:D Even though you are sexy, both men and women agree that confidence and a sense of humor are very important when seeking a date or soul mate. So whether you are looking for true love or simply dating, a confident smile goes a long way.
×
×
  • 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