Jump to content
  • 0

L2Off Editing Quest Sub !


Question

Posted
hi I wonder how do I change the sub quest! Ex.
 
 
I do like the l2alucard ... get the items from the box without need the quest!
 
need edited in the ai.obj of the box or the quests?

 

 

under this the ai.obj if anyone can help I will be grateful!

 

chest_of_golkonda.txt

chest_of_hallate.txt

chest_of_kernon.txt

coffer_of_the_dead.txt

6 answers to this question

Recommended Posts

  • 0
Posted

You could learn AI and do it yourself.

 

It's stupidly simple to mod this stuff.

 

 

You could write your own menu_selected handler to give crown, if user does not have crown ID in inventory.

 

that way your not touching anything retail, just adding new menu_selected bypasses to the htmls.

  • 0
Posted

 

I did some modifications but when I use nasc give error!

I don't have a lot of experience!

 

 

 

so why are you not posting the errors to help solve the problem?

  • 0
Posted (edited)

@ref :)

 

how to properly edit the code?

class 1 chest_of_golkonda : citizen
{
handler:
  EventHandler TALK_SELECTED( fhtml0, talker )
  {
    if( _from_choice == 0 )
    {
      if( myself::HaveMemo( talker, @whispers_of_destiny ) == 1 &&
          myself::GetMemoState( talker, @whispers_of_destiny ) == 2 &&
          myself::OwnItemCount( talker, @q_infernium_scepter_2 ) == 0 )
      {
        _choiceN = _choiceN + 1;
        _code = 0;
        myself::AddChoice( 0, "Fate's Whisper (Continue)" );
      }
      if( myself::HaveMemo( talker, @whispers_of_destiny ) == 1 &&
          ( myself::GetMemoState( talker, @whispers_of_destiny ) != 2 ||
            myself::OwnItemCount( talker, @q_infernium_scepter_2 ) == 1 ) )
      {
        _choiceN = _choiceN + 1;
        _code = 1;
        myself::AddChoice( 1, "Fate's Whisper (Continue)" );
      }
      if( _choiceN > 1 )
      {
        myself::ShowChoicePage( talker, 1 );
        return;
      }
    }
    if( _from_choice || _choiceN == 1 )
    {
      switch( _code )
      {
        case 0:
        {
          if( _from_choice == 0 ||
              ( myself::HaveMemo( talker, @whispers_of_destiny ) == 1 &&
                myself::GetMemoState( talker, @whispers_of_destiny ) == 2 &&
                myself::OwnItemCount( talker, @q_infernium_scepter_2 ) == 0 ) )
          {
            myself::SetCurrentQuestID( @whispers_of_destiny );
            if( myself::GetInventoryInfo( talker, 0 ) >= myself::GetInventoryInfo( talker, 1 ) * 0.800000 ||
                myself::GetInventoryInfo( talker, 2 ) >= myself::GetInventoryInfo( talker, 3 ) * 0.800000 )
            {
              myself::ShowSystemMessage( talker, 1118 );
              return;
            }
            if( myself::GetCurrentTick() - talker.quest_last_reward_time > 1 )
            {
              talker.quest_last_reward_time = myself::GetCurrentTick();
              myself::GiveItem1( talker, @q_infernium_scepter_2, 1 );
              myself::ShowPage( talker, "chest_of_golkonda_q0234_01.htm" );
            }
          }
          break;
        }
        case 1:
        {
          if( _from_choice == 0 ||
              ( myself::HaveMemo( talker, @whispers_of_destiny ) == 1 &&
                ( myself::GetMemoState( talker, @whispers_of_destiny ) != 2 ||
                  myself::OwnItemCount( talker, @q_infernium_scepter_2 ) == 1 ) ) )
          {
            myself::SetCurrentQuestID( @whispers_of_destiny );
            if( myself::GetInventoryInfo( talker, 0 ) >= myself::GetInventoryInfo( talker, 1 ) * 0.800000 ||
                myself::GetInventoryInfo( talker, 2 ) >= myself::GetInventoryInfo( talker, 3 ) * 0.800000 )
            {
              myself::ShowSystemMessage( talker, 1118 );
              return;
            }
            myself::ShowPage( talker, "chest_of_golkonda_q0234_02.htm" );
          }
          break;
        }
      }
      return;
    }
    super;
  }

  EventHandler TIMER_FIRED_EX( timer_id )
  {
    myself::SetCurrentQuestID( @whispers_of_destiny );
    if( timer_id == 23403 )
    {
      myself::Despawn();
    }
    super;
  }

  EventHandler CREATED( i0 )
  {
    myself::SetCurrentQuestID( @whispers_of_destiny );
    myself::AddTimerEx( 23403, 1000 * 120 );
    super;
  }
}
Edited by marek2904

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • 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