L2JMobius

High Five Newbie guide edit

vaggone · 6 · 1835

Offline vaggone

  • Heir
  • **
    • Posts: 10
Hello everyone,

I want to change the buffs that players take from newbie guide.

I would like to also change the level but for now is not so important cause in H5 let you get until 75 and then you can still get from Steven.

I found the "Gift of Vitality" event that i will change and add more buffs, but i am trying to find where i can do the same for newbie guide, i dont want to add any buffer at all,i am trying to keep it as retail like as is possible so i want only to add some more buffs on newbie guide.

Thanks in advance.


Offline nasseka

  • Distinguished King
  • *****
    • Posts: 1729
    • L2Unknown
I don't have H5 installed but easiest way is when u are in game, talk to the npc(as GM) and you will see which html file it uses. Then follow the code after.


Offline vaggone

  • Heir
  • **
    • Posts: 10
I will try that, i knew that this is a way i just ask if someone already knew where exactly is. i mean in scripts etc.

Thanks for your answer.


Offline vaggone

  • Heir
  • **
    • Posts: 10
So after i find the SupportMagic and change the buffs as you will see below:
Quote
// Buffs
   private static final SkillHolder HASTE_1 = new SkillHolder(1086, 1);
   private static final SkillHolder HASTE_2 = new SkillHolder(1086, 2);
   private static final SkillHolder CUBIC = new SkillHolder(4338, 1);
   private static final SkillHolder[] FIGHTER_BUFFS =
   {
      new SkillHolder(1204, 2), // Wind Walk
      new SkillHolder(1040, 3), // Shield
      new SkillHolder(1068, 3), // Might
      new SkillHolder(1036, 2), // Magic Barrier
      new SkillHolder(1045, 6), // Bless the Body
      new SkillHolder(1268, 4), // Vampiric Rage
      new SkillHolder(1044, 3), // Regeneration
      new SkillHolder(1062, 2), // Berseker
      new SkillHolder(1242, 3), // Death Whisper
      new SkillHolder(1077, 3), // Focus
        };
   private static final SkillHolder[] MAGE_BUFFS =
   {
      new SkillHolder(1204, 2), // Wind Walk
      new SkillHolder(1040, 3), // Shield
      new SkillHolder(1059, 3), // Empower
      new SkillHolder(1036, 2), // Magic Barrier
      new SkillHolder(1045, 6), // Bless the Body
      new SkillHolder(1048, 6), // Bless the Soul
      new SkillHolder(1303, 2), // Wild Magic
      new SkillHolder(1044, 3), // Regeneration
      new SkillHolder(1062, 2), // Berseker
      new SkillHolder(1078, 6), // Concentration
      new SkillHolder(1085, 3), // Acumen
   };
i log in game i press for buffs and newbie guide gives me only Haste.

Is there something else that it must be changed in ordcer to work?
Also maybe i must change the .java file in eclipse and compile again? i have just edit it throw notepad++  in data directory.


Offline kinghanker

  • Knight
  • ***
    • Posts: 64
So after i find the SupportMagic and change the buffs as you will see below:i log in game i press for buffs and newbie guide gives me only Haste.

Is there something else that it must be changed in ordcer to work?
Also maybe i must change the .java file in eclipse and compile again? i have just edit it throw notepad++  in data directory.

It works but you will have to remove the "hitTime" tag from the skills you want to use.
Remembering that the time defined in "abnormalTime" is what will be applied.


Offline vaggone

  • Heir
  • **
    • Posts: 10
So in order to work i must change the "hitTime" in XML of each skill?
I must delete it or from "4000" that is now on 1204 - Windwalk put it something like 0 or 500 for example?
Ok I will try that. Thanks for info.