Dismiss Notice
Wynncraft, the Minecraft MMORPG. Play it now on your Minecraft client at (IP): play.wynncraft.com. No mods required! Click here for more info...

Strange Item In Item Api

Discussion in 'Questions' started by NoobDoesMC, May 15, 2017.

Thread Status:
Not open for further replies.
  1. NoobDoesMC

    NoobDoesMC Skilled Adventurer

    Messages:
    281
    Likes Received:
    32
    Trophy Points:
    36
    Minecraft:
    I am wondering what is this special item, why it exists, and whether it is manifested in-game:

    Code:
    { name: 'YAMLException',
        reason: 'duplicated mapping key',
        mark:
        { name: null,
          buffer: 'name: Spider Bracelet\ntier: Unique #Normal, Unique, Rare, Legendary, Set\nset: null #Value within sets.yml, do not touch\nsockets: 0 #Amount of powder slots \naccessoryType: Bracelet #ring, bracelet, necklace\naddedLore: null #only for legendary\ndropType: never\nmaterial: \'190\'\nidentified: true\ndropType: dungeon\nrestrictions: Untradable\n\n##Health\nhealth: 0\nfireDefense: 0\nwaterDefense: 0\nairDefense: 0\nthunderDefense: 0\nearthDefense: 5\n\n##Requirements\nlevel: 19\nquest: null\nclassRequirement: null #null, Mage, Assassin, Archer, Warrior\n\nstrength: 0\ndexterity: 0\nintelligence: 0\nagility: 0\ndefense: 0\n\n##IDs\nhealthRegen: 0\nmanaRegen: 0\nspellDamage: 0\ndamageBonus: 0\nlifeSteal: 0\nmanaSteal: 0\nxpBonus: 0\nlootBonus: 0\nreflection: 0\n\nstrengthPoints: 0\ndexterityPoints: 0\nintelligencePoints: 0\nagilityPoints: 3\ndefensePoints: 0\n\nthorns: 0\nexploding: 0\nspeed: 0\nattackSpeedBonus: 0\npoison: 30\nhealthBonus: 0\nsoulPoints: 0\nemeraldStealing: 0\n\nhealthRegenRaw: 0\nspellDamageRaw: 0\ndamageBonusRaw: 0\n\nbonusFireDamage: 0\nbonusWaterDamage: 0\nbonusAirDamage: 0\nbonusThunderDamage: 0\nbonusEarthDamage: 0\n\nbonusFireDefense: 0\nbonusWaterDefense: 0\nbonusAirDefense: 0\nbonusThunderDefense: 0\nbonusEarthDefense: 0\n\u0000',
          position: 308,
          line: 9,
          column: 17 },
        message: 'duplicated mapping key at line 10, column 18:\n    dropType: dungeon\n                     ^',
        category: 'accessory' }
    
     
    Last edited: May 15, 2017
  2. NoobDoesMC

    NoobDoesMC Skilled Adventurer

    Messages:
    281
    Likes Received:
    32
    Trophy Points:
    36
    Minecraft:
    It looks like it may have been auto-generated because it was duplicate in the YAML file that is used to store items.

    My guess.

    This would imply that it is present within the game, but in reality I have no idea.
     
  3. Tato

    Tato Well-Known Adventurer VIP+

    Messages:
    292
    Likes Received:
    193
    Trophy Points:
    70
    Minecraft:
    https://forums.wynncraft.com/threads/ohno.187770/#post-2230585
    this was brought up here
     
  4. NoobDoesMC

    NoobDoesMC Skilled Adventurer

    Messages:
    281
    Likes Received:
    32
    Trophy Points:
    36
    Minecraft:
  5. robincaiye

    robincaiye ♧ the local (broke) emerald dealer HERO

    Messages:
    2,620
    Likes Received:
    1,229
    Trophy Points:
    115
    Guild:
    Minecraft:
    Spider Bracelet is in Infested Pit I think.
    Not sure tho
     
  6. NoobDoesMC

    NoobDoesMC Skilled Adventurer

    Messages:
    281
    Likes Received:
    32
    Trophy Points:
    36
    Minecraft:
    The original yaml would have looked like:

    Code:
    name: Spider Bracelet
    tier: Unique #Normal, Unique, Rare, Legendary, Set
    set: null #Value within sets.yml, do not touch
    sockets: 0 #Amount of powder slots
    accessoryType: Bracelet #ring, bracelet, necklace
    addedLore: null #only for legendary
    dropType: never
    material: '190'
    identified: true
    dropType: dungeon
    restrictions: Untradable
    
    ##Health
    health: 0
    fireDefense: 0
    waterDefense: 0
    airDefense: 0
    thunderDefense: 0
    earthDefense: 5
    
    ##Requirements
    level: 19
    quest: null
    classRequirement: null #null, Mage, Assassin, Archer, Warrior
    
    strength: 0
    dexterity: 0
    intelligence: 0
    agility: 0
    defense: 0
    
    ##IDs
    healthRegen: 0
    manaRegen: 0
    spellDamage: 0
    damageBonus: 0
    lifeSteal: 0
    manaSteal: 0
    xpBonus: 0
    lootBonus: 0
    reflection: 0
    
    strengthPoints: 0
    dexterityPoints: 0
    intelligencePoints: 0
    agilityPoints: 3
    defensePoints: 0
    thorns: 0
    exploding: 0
    speed: 0
    attackSpeedBonus: 0
    poison: 30
    healthBonus: 0
    soulPoints: 0
    emeraldStealing: 0
    healthRegenRaw: 0
    spellDamageRaw: 0
    damageBonusRaw: 0
    bonusFireDamage: 0
    bonusWaterDamage: 0
    bonusAirDamage: 0
    bonusThunderDamage: 0
    bonusEarthDamage: 0
    
    bonusFireDefense: 0
    bonusWaterDefense: 0
    bonusAirDefense: 0
    bonusThunderDefense: 0
    bonusEarthDefense: 0
    

    And there is an item in the DB with exactly the same:

    Code:
    [ { name: 'Spider Bracelet',
        tier: 'Unique',
        set: null,
        sockets: 0,
        accessoryType: 'Bracelet',
        addedLore: null,
        dropType: 'never',
        material: '190',
        identified: true,
        restrictions: 'Untradable',
        health: 0,
        fireDefense: 0,
        waterDefense: 0,
        airDefense: 0,
        thunderDefense: 0,
        earthDefense: 5,
        level: 19,
        quest: null,
        classRequirement: null,
        strength: 0,
        dexterity: 0,
        intelligence: 0,
        agility: 0,
        defense: 0,
        healthRegen: 0,
        manaRegen: 0,
        spellDamage: 0,
        damageBonus: 0,
        lifeSteal: 0,
        manaSteal: 0,
        xpBonus: 0,
        lootBonus: 0,
        reflection: 0,
        strengthPoints: 0,
        dexterityPoints: 0,
        intelligencePoints: 0,
        agilityPoints: 3,
        defensePoints: 0,
        thorns: 0,
        exploding: 0,
        speed: 0,
        attackSpeedBonus: 0,
        poison: 30,
        healthBonus: 0,
        soulPoints: 0,
        emeraldStealing: 0,
        healthRegenRaw: 0,
        spellDamageRaw: 0,
        damageBonusRaw: 0,
        bonusFireDamage: 0,
        bonusWaterDamage: 0,
        bonusAirDamage: 0,
        bonusThunderDamage: 0,
        bonusEarthDamage: 0,
        bonusFireDefense: 0,
        bonusWaterDefense: 0,
        bonusAirDefense: 0,
        bonusThunderDefense: 0,
        bonusEarthDefense: 0,
        category: 'accessory' }
    
     
  7. DaveZombee

    DaveZombee -0-

    Messages:
    400
    Likes Received:
    243
    Trophy Points:
    70
    Minecraft:
    D: I sadness
     
Thread Status:
Not open for further replies.