Jump to content
  • 0
Yhaj

Problem with Pet Evolution

Question

image.png.6ddb003c29a600c74b32b7b7310ed562.png

 

The problem says, It is not requested petal?

How to resolve this anyone?

Thanks in advance...

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

There's no Mastering Pet on your pet_db.yml

pet_db.yml

Spoiler
  - Mob: PORING
    TameItem: Unripe_Apple
    EggItem: Poring_Egg
    EquipItem: Backpack
    FoodItem: Apple_Juice
    Fullness: 3
    IntimacyFed: 50
    CaptureRate: 2000
    AllowAutoFeed: true
    Script: >
      [email protected] = getpetinfo(PETINFO_INTIMATE);
      
      if( [email protected] >= PET_INTIMATE_LOYAL ){
        bonus bLuk,2;
        bonus bCritical,1;
      }
    Evolution:
      - Target: MASTERING
        ItemRequirements:
          - Item: Leaf_Of_Yggdrasil
            Amount: 10
          - Item: Unripe_Apple
            Amount: 3
  - Mob: MASTERING
    EggItem: Mastering_Egg
    FoodItem: Pet_Food
    Fullness: 2
    HungryDelay: 120
    IntimacyFed: 15
    CaptureRate: 0
    SpecialPerformance: false
    AllowAutoFeed: true
    Script: >
      [email protected] = getpetinfo(PETINFO_INTIMATE);
      
      if ([email protected] >= PET_INTIMATE_LOYAL) {
        bonus bLuk,3;
        bonus bCritical,3;
      } else if ([email protected] >= PET_INTIMATE_CORDIAL) {
        bonus bLuk,3;
        bonus bCritical,2;
      } else if ([email protected] >= PET_INTIMATE_NEUTRAL) {
        bonus bLuk,3;
        bonus bCritical,1;
      } else {
        bonus bLuk,2;
        bonus bCritical,1;
      }
    Evolution:
      - Target: ANGELING
        ItemRequirements:
          - Item: Yellow_Potion
            Amount: 20
          - Item: Spirit_Chain
            Amount: 1
          - Item: White_Herb
            Amount: 50
          - Item: Jellopy
            Amount: 200
  - Mob: ANGELING
    EggItem: Angeling_Egg
    FoodItem: Pet_Food
    Fullness: 1
    HungryDelay: 120
    IntimacyFed: 15
    CaptureRate: 0
    SpecialPerformance: false
    AllowAutoFeed: true
    Script: >
      [email protected] = getpetinfo(PETINFO_INTIMATE);
      
      if ([email protected] >= PET_INTIMATE_LOYAL) {
        bonus bMaxHPrate,2;
        bonus bHealPower,8;
      } else if ([email protected] >= PET_INTIMATE_CORDIAL) {
        bonus bMaxHPrate,2;
        bonus bHealPower,6;
      } else if ([email protected] >= PET_INTIMATE_NEUTRAL) {
        bonus bMaxHPrate,1;
        bonus bHealPower,4;
      } else {
        bonus bMaxHPrate,1;
        bonus bHealPower,2;
      }

 

item_db.txt

Spoiler

9069,Mastering_Egg,Mastering Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
9088,Angeling_Egg,Angeling Egg,7,20,,0,,,,,,,,,,,,,{},{},{}

 

Edited by Haruka Mayumi
  • Upvote 1
Link to comment
Share on other sites

  • 0
15 hours ago, Haruka Mayumi said:

There's no Mastering Pet on your pet_db.yml

pet_db.yml

  Reveal hidden contents

  - Mob: PORING
    TameItem: Unripe_Apple
    EggItem: Poring_Egg
    EquipItem: Backpack
    FoodItem: Apple_Juice
    Fullness: 3
    IntimacyFed: 50
    CaptureRate: 2000
    AllowAutoFeed: true
    Script: >
      [email protected] = getpetinfo(PETINFO_INTIMATE);
      
      if( [email protected] >= PET_INTIMATE_LOYAL ){
        bonus bLuk,2;
        bonus bCritical,1;
      }
    Evolution:
      - Target: MASTERING
        ItemRequirements:
          - Item: Leaf_Of_Yggdrasil
            Amount: 10
          - Item: Unripe_Apple
            Amount: 3
  - Mob: MASTERING
    EggItem: Mastering_Egg
    FoodItem: Pet_Food
    Fullness: 2
    HungryDelay: 120
    IntimacyFed: 15
    CaptureRate: 0
    SpecialPerformance: false
    AllowAutoFeed: true
    Script: >
      [email protected] = getpetinfo(PETINFO_INTIMATE);
      
      if ([email protected] >= PET_INTIMATE_LOYAL) {
        bonus bLuk,3;
        bonus bCritical,3;
      } else if ([email protected] >= PET_INTIMATE_CORDIAL) {
        bonus bLuk,3;
        bonus bCritical,2;
      } else if ([email protected] >= PET_INTIMATE_NEUTRAL) {
        bonus bLuk,3;
        bonus bCritical,1;
      } else {
        bonus bLuk,2;
        bonus bCritical,1;
      }
    Evolution:
      - Target: ANGELING
        ItemRequirements:
          - Item: Yellow_Potion
            Amount: 20
          - Item: Spirit_Chain
            Amount: 1
          - Item: White_Herb
            Amount: 50
          - Item: Jellopy
            Amount: 200
  - Mob: ANGELING
    EggItem: Angeling_Egg
    FoodItem: Pet_Food
    Fullness: 1
    HungryDelay: 120
    IntimacyFed: 15
    CaptureRate: 0
    SpecialPerformance: false
    AllowAutoFeed: true
    Script: >
      [email protected] = getpetinfo(PETINFO_INTIMATE);
      
      if ([email protected] >= PET_INTIMATE_LOYAL) {
        bonus bMaxHPrate,2;
        bonus bHealPower,8;
      } else if ([email protected] >= PET_INTIMATE_CORDIAL) {
        bonus bMaxHPrate,2;
        bonus bHealPower,6;
      } else if ([email protected] >= PET_INTIMATE_NEUTRAL) {
        bonus bMaxHPrate,1;
        bonus bHealPower,4;
      } else {
        bonus bMaxHPrate,1;
        bonus bHealPower,2;
      }

 

item_db.txt

  Reveal hidden contents

9069,Mastering_Egg,Mastering Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
9088,Angeling_Egg,Angeling Egg,7,20,,0,,,,,,,,,,,,,{},{},{}

 

Ohhh I see I'll try this one ...

 

Ohhh It definetely works thanks ...

Link to comment
Share on other sites

  • 0
On 4/23/2020 at 10:51 PM, Haruka Mayumi said:

There's no Mastering Pet on your pet_db.yml

pet_db.yml

  Hide contents

  - Mob: PORING
    TameItem: Unripe_Apple
    EggItem: Poring_Egg
    EquipItem: Backpack
    FoodItem: Apple_Juice
    Fullness: 3
    IntimacyFed: 50
    CaptureRate: 2000
    AllowAutoFeed: true
    Script: >
      [email protected] = getpetinfo(PETINFO_INTIMATE);
      
      if( [email protected] >= PET_INTIMATE_LOYAL ){
        bonus bLuk,2;
        bonus bCritical,1;
      }
    Evolution:
      - Target: MASTERING
        ItemRequirements:
          - Item: Leaf_Of_Yggdrasil
            Amount: 10
          - Item: Unripe_Apple
            Amount: 3
  - Mob: MASTERING
    EggItem: Mastering_Egg
    FoodItem: Pet_Food
    Fullness: 2
    HungryDelay: 120
    IntimacyFed: 15
    CaptureRate: 0
    SpecialPerformance: false
    AllowAutoFeed: true
    Script: >
      [email protected] = getpetinfo(PETINFO_INTIMATE);
      
      if ([email protected] >= PET_INTIMATE_LOYAL) {
        bonus bLuk,3;
        bonus bCritical,3;
      } else if ([email protected] >= PET_INTIMATE_CORDIAL) {
        bonus bLuk,3;
        bonus bCritical,2;
      } else if ([email protected] >= PET_INTIMATE_NEUTRAL) {
        bonus bLuk,3;
        bonus bCritical,1;
      } else {
        bonus bLuk,2;
        bonus bCritical,1;
      }
    Evolution:
      - Target: ANGELING
        ItemRequirements:
          - Item: Yellow_Potion
            Amount: 20
          - Item: Spirit_Chain
            Amount: 1
          - Item: White_Herb
            Amount: 50
          - Item: Jellopy
            Amount: 200
  - Mob: ANGELING
    EggItem: Angeling_Egg
    FoodItem: Pet_Food
    Fullness: 1
    HungryDelay: 120
    IntimacyFed: 15
    CaptureRate: 0
    SpecialPerformance: false
    AllowAutoFeed: true
    Script: >
      [email protected] = getpetinfo(PETINFO_INTIMATE);
      
      if ([email protected] >= PET_INTIMATE_LOYAL) {
        bonus bMaxHPrate,2;
        bonus bHealPower,8;
      } else if ([email protected] >= PET_INTIMATE_CORDIAL) {
        bonus bMaxHPrate,2;
        bonus bHealPower,6;
      } else if ([email protected] >= PET_INTIMATE_NEUTRAL) {
        bonus bMaxHPrate,1;
        bonus bHealPower,4;
      } else {
        bonus bMaxHPrate,1;
        bonus bHealPower,2;
      }

 

item_db.txt

  Hide contents

9069,Mastering_Egg,Mastering Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
9088,Angeling_Egg,Angeling Egg,7,20,,0,,,,,,,,,,,,,{},{},{}

 

Hello can i ask where to see the other guide of the other pets

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.