Welcome to Yserbius.Org! Join our Ultima Online Private Server and have some old school fun.

Yserbius file format documentation

ZaneDubya

Active Members
#21
Updates are rare because I've already extracted nearly all of the data from the resource files. Here a few random tidbits:

In the original data files, the rune reading skill is coded as a passive, non-usable skill, like athletics. However, the game treats this skill as if it were a usable, active skill. I changed the rune reading skill from 'passive' to 'active' to reflect this difference. https://github.com/ZaneDubya/YserbiusData/blob/master/Data/Skills.csv.

I discovered that the 25th mystery skill is used to restore mana! Of course, you can't access this skill in the skill dialogue window, but when you use a mana potion, this user action activates skill # 25 and restores your mana! Pretty neat reuse of the skill system by the programmers.

I also figured out the formula for resisting spells. In short:
  • If you are a player, then add together your base agility, all item agility mods, and all buff (spell/skill) agility mods. Cap this value at 15.
  • Get a random number from 0-15 and add 1.
  • If the total agility is greater than or equal to the random number, then you resist the spell.
  • Resistance means you take half damage and do not take any debuffs (poison, petrify, control, paralysis).
This means that the combat utility of any agility point above 15 is precisely zero. Good to know for anyone who is planning another cano run in the near future.

I wonder how many people still play this game in a given year. It must be a small number, particularly after the revival server closed down. If the cano came back, would you want to revisit it?
 

slohand

Yserbian
Staff member
#22
nice read, I tried some links in the earlier threads and they are defunct. would be interested in those documents if you still have them. Slo
 

ZaneDubya

Active Members
#25
Pretty darn good! I've been working in the language for nine years and I have good comprehension of the language features and best practices. I'm not looking for new projects to work on; between work and my own projects I'm fully committed at the moment and don't have the time to take more on.

Here's something new I just figured out! How does the game determine if your physical attack hits your target?
  • Take the difference between the attacker's Strength attribute and the defender's Defense attribute.
  • Cap this difference to a range of 0-28.
  • Divide the difference by 2 for a range of 0-14. This is the "ToHitR" value.
  • Roll a random number between 0-15. This is the "ToHitC" value.
  • Get the HitTable entry at index ToHitR * 16 + ToHitC. If the entry is 0, you miss. 1 is hit. 2 is a critical hit!
Code:
        public byte[] HitTable = new byte[240] {
            0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
            0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1,
            0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1,
            0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1,
            0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1,
            0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1,
            0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1,
            0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1,
            0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1,
            0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1,
            0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2,
            0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2,
            0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2,
            0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2,
            0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2,
            1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2
        };
 
Last edited:

ZaneDubya

Active Members
#26
Uploaded what is probably going to be the final data set for spells and skills: https://github.com/ZaneDubya/YserbiusData/blob/master/Data

I ripped out the item data for Fates of Twinion and Ruins of Cawdor on Tiger's request. Cawdor's sense of humor leaks through in every bit of text from the game, and the itemdata for that game is no exception!

Items for Fates of Twinion:
Code:
Name,Icon,Type,Charges,Guilds,Flags,MonGrp,MonEffect,StrMod,DexMod,DefMod,DmgRed,Spell,SpellLvl,Skill,SkillLvl,AgiMod,IniMod,CanRemove,CanTrade,InfoMsg,BuyAt,SellAt
Null Item,0,0,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Short Sword,1,1,0,0,0,0,0,0,1,0,0,255,0,5,255,0,0,0,1,20,15,5
Broadsword,1,1,0,12,0,0,0,1,4,0,0,255,0,5,255,0,0,0,1,20,30,25
Longsword,1,1,0,28,0,0,0,2,8,0,0,255,0,5,255,0,0,0,1,20,250,50
Heaven's Wrath,76,1,6,169,0,3,7,4,15,0,0,11,6,5,255,0,1,0,0,20,0,125
Flame Blade,76,1,5,44,0,0,0,2,20,0,0,6,5,5,255,0,0,0,0,20,0,125
Crystalized Blade,76,1,3,156,0,0,0,3,20,0,0,9,3,5,255,0,0,0,0,20,0,200
Frost Blade,76,1,5,60,0,0,0,2,22,0,0,7,6,5,255,0,0,0,0,20,0,200
Iron Cutlass,1,1,0,8,0,11,6,2,24,255,0,255,0,5,255,0,0,0,1,20,0,65
Katana,1,1,0,164,0,0,0,2,25,0,0,255,0,16,255,0,0,0,1,21,3500,50
Samurai Sword,1,1,0,196,0,0,0,3,30,1,0,255,0,16,255,0,1,0,1,21,0,200
Silver Sword,1,1,5,136,64,7,11,2,30,0,0,5,6,5,255,0,0,0,0,20,0,200
Black Blade,60,1,5,58,128,3,11,3,55,255,0,1,8,5,255,0,0,0,0,20,0,200
Serpent's Fang,1,1,8,168,32,5,10,2,65,0,0,10,2,5,255,0,0,0,0,20,0,200
Thief's Stiletto,60,1,0,236,0,0,0,4,90,2,0,255,0,5,255,0,3,0,0,20,0,200
Flame Tongue,76,1,3,36,0,0,0,4,90,0,0,6,7,5,255,0,0,0,0,20,0,200
Two-Handed Sword,53,1,0,28,0,4,11,5,125,253,0,255,0,5,255,0,0,0,0,20,0,200
Phosphorescent Blade,53,1,0,188,64,10,12,6,240,253,0,255,0,5,255,0,1,0,0,20,0,1500
Axe,2,1,0,0,0,0,0,1,6,0,0,255,0,1,255,0,0,0,1,22,60,5
Battle Axe,2,1,0,28,0,0,0,2,10,0,0,255,0,1,255,0,0,0,1,22,250,25
Woodsman's Axe,2,1,0,76,0,0,0,1,17,0,0,255,0,1,255,0,0,0,1,22,0,25
Bronze Battle Axe,2,1,10,112,0,0,0,3,20,0,0,20,3,1,255,0,0,0,0,22,0,175
Mercury Axe,2,1,0,52,64,7,9,3,35,0,0,255,0,1,255,0,0,0,0,22,0,500
Axe of Venom,2,1,10,60,32,0,0,2,45,0,0,10,3,1,255,0,0,0,0,22,0,1500
Barbarian Axe,2,1,5,124,0,11,12,4,225,0,2,0,6,1,255,0,0,0,0,22,0,3500
Death's Cleaver,2,1,10,0,0,0,0,6,6,250,0,5,6,1,255,255,255,0,0,22,0,0
Club,3,1,0,0,0,0,0,0,2,0,0,255,0,1,255,0,0,0,1,23,15,2
Mace,6,1,0,20,0,0,0,1,6,0,0,255,0,1,255,0,0,0,1,23,50,5
Stone Club,3,1,5,0,128,4,9,2,8,0,0,9,3,1,255,0,0,0,1,23,0,75
Morningstar,7,1,0,28,0,0,0,2,17,0,0,255,0,1,255,0,0,0,1,23,2500,200
Heart Flail,74,1,5,140,128,0,0,2,15,0,0,20,6,1,255,0,0,0,0,23,0,1750
Nunchukas,4,1,0,224,0,0,0,3,20,0,0,255,0,16,255,0,0,0,1,23,3200,150
Ninja Sticks,4,1,0,224,0,2,9,3,24,1,6,255,0,16,255,0,2,0,1,23,0,170
Peace Maker,5,1,8,149,0,0,0,3,30,0,0,0,10,1,255,0,0,0,0,23,0,400
Flail,71,1,0,4,0,0,0,2,40,0,0,255,0,1,255,0,0,0,1,23,0,350
Hollowed Nunchukas,73,1,8,224,0,0,0,2,50,1,5,4,8,16,255,0,1,0,0,23,0,400
Soldier's Flail,71,1,2,52,0,0,0,2,55,255,0,19,10,1,255,0,0,0,1,23,0,100
War Hammer,5,1,0,116,0,0,0,2,60,0,0,255,0,1,255,0,255,0,1,23,15000,400
Hammer of Might,5,1,0,52,0,6,5,2,80,1,0,255,0,1,255,0,1,0,0,23,0,1200
Wrath of Faith,7,1,8,245,0,5,12,4,90,0,0,6,6,1,255,0,0,1,0,23,0,1200
Stone Giants Hammer,5,1,5,156,128,12,15,4,195,254,0,1,10,1,255,0,0,0,0,23,0,5000
Gauntlets of Mercy,52,6,10,128,64,0,0,3,30,1,5,20,3,16,255,1,0,0,0,26,0,750
Gloves of Protection,52,6,10,44,32,0,0,1,20,2,10,14,8,16,255,2,2,0,0,26,0,750
Quarterstaff,8,2,0,0,0,0,0,1,7,0,0,255,0,21,255,0,0,0,1,24,55,10
Spear,9,2,0,0,0,0,0,2,8,0,0,255,0,21,255,0,0,0,1,24,110,25
Mandrake Staff,8,2,8,144,0,0,0,2,18,0,0,10,5,21,255,0,0,1,1,24,0,800
Halberd,10,2,0,60,0,0,0,2,16,1,5,255,0,21,255,0,0,0,1,24,5500,200
King's Lance,9,2,0,12,0,0,0,2,25,3,0,255,0,21,255,0,0,0,1,24,0,1150
Lightning Rod,67,2,5,68,0,0,0,1,25,0,0,8,9,21,255,0,2,1,0,24,0,500
Rod of Mercy,8,2,8,200,32,0,0,2,30,0,0,22,8,21,255,0,0,1,0,24,0,500
Staff of Giants,8,2,0,24,0,12,14,3,35,0,0,255,0,21,255,0,0,0,0,24,0,500
Lance of Darkness,9,2,5,72,0,11,10,1,35,0,0,0,6,21,255,0,0,0,0,24,0,500
Polearm,9,2,0,60,0,0,0,2,35,0,0,255,0,21,255,0,0,0,1,24,0,250
Bardiche,10,2,0,28,0,0,0,3,45,0,0,255,0,21,255,0,0,0,1,24,0,150
Staff of Justice,8,2,5,208,0,0,0,4,50,0,0,6,9,21,255,0,0,0,0,24,0,500
Divining Rod,8,2,8,160,0,0,0,2,60,0,0,5,7,21,255,0,0,0,0,24,0,3500
Lance,9,2,0,156,0,5,9,3,60,0,0,255,0,21,255,0,0,0,1,24,0,200
Arnakkian's Staff,8,2,8,242,0,1,10,3,65,253,0,2,4,21,255,0,0,1,0,24,0,500
Rod of the Serpent,8,2,5,84,32,5,10,2,65,0,0,10,2,21,255,0,0,0,0,20,0,200
Rod of Resonance,67,2,5,192,0,0,0,4,65,0,0,1,11,21,255,0,0,1,0,24,0,1250
Staff of the Magus,67,2,0,248,0,1,14,4,70,3,0,255,0,21,255,0,2,0,0,24,0,1250
Time's Scythe,70,2,5,168,64,12,10,3,110,0,0,9,10,21,255,0,2,0,0,24,0,0
Disruptor,70,2,5,148,0,0,0,0,40,0,0,4,10,21,255,1,0,1,0,24,0,3500
Voranti's Gauntlets,52,6,5,236,32,0,0,1,5,1,7,14,3,16,255,0,1,0,0,26,0,750
Short Bow,12,3,0,0,0,0,0,1,9,0,0,255,0,8,255,0,0,0,1,25,50,10
Longbow,12,3,0,20,0,0,0,2,12,0,0,255,0,8,255,0,0,0,1,25,250,50
Silver Bow,68,3,8,68,0,7,10,2,15,0,0,5,7,8,255,0,0,0,1,25,0,450
Crossbow,13,3,0,12,0,0,0,1,18,0,0,255,0,8,255,0,0,0,1,25,500,40
Composite Bow,12,3,0,28,0,3,9,2,30,0,0,255,0,8,255,0,1,0,1,25,0,150
Storm's Bow,12,3,8,208,0,5,12,2,30,0,0,11,5,8,255,0,0,0,0,25,0,700
Glass Bow,68,3,5,128,0,0,0,0,36,0,0,1,8,8,255,0,0,0,0,25,0,700
Bow of Flames,68,3,8,0,0,0,0,2,40,0,0,6,4,8,255,0,0,0,0,25,0,700
Crescent Moon,68,3,5,148,0,1,10,3,50,0,0,0,6,8,255,0,2,0,0,25,0,900
Longbow of Legend,12,3,0,212,0,0,0,3,60,0,0,255,0,8,255,0,0,0,0,25,0,1000
Twin Bolts,13,3,8,12,0,10,12,1,60,0,0,8,4,8,255,0,1,1,1,25,0,1500
Degree of Vengeance,43,3,0,200,0,9,13,3,100,0,0,255,0,8,255,0,1,0,0,25,0,1700
Arched Death,43,3,5,220,128,7,11,4,95,0,0,4,6,8,255,0,0,0,0,25,0,3500
Buckler,16,6,0,0,0,0,0,0,0,0,1,255,0,255,0,0,0,0,1,26,35,10
Round Shield,17,6,0,0,0,0,0,0,0,1,4,255,0,255,0,0,0,0,1,26,150,40
Blood Shield,17,6,10,128,0,3,1,0,0,2,6,20,4,255,0,1,0,0,1,26,0,350
Ice Shield,16,6,5,0,0,0,0,0,0,1,6,7,2,255,0,1,0,0,1,26,0,350
Oblong Shield,18,6,0,28,0,0,0,0,0,1,7,255,0,255,0,0,0,0,1,26,300,60
Winged Shield,18,6,0,0,32,10,7,0,0,2,7,255,0,255,0,3,0,0,0,26,0,500
Harm's Way,44,6,25,12,0,0,0,0,0,1,9,255,0,17,3,0,0,0,0,26,0,500
Silver Aegis,18,6,0,4,128,0,0,0,0,2,9,255,0,255,0,2,0,0,0,26,0,2500
Aegis d' Draco,44,6,5,68,32,9,7,0,0,3,11,6,5,255,0,0,1,1,0,26,0,1500
Skull Aegis,44,6,5,68,64,6,3,0,0,1,14,255,0,22,2,2,0,0,0,26,0,1250
Chaos' Guardian ,50,6,10,2,128,1,7,0,0,2,15,0,6,255,0,2,0,0,0,26,0,200
Harmony's Guardian ,50,6,10,1,128,1,7,0,0,2,15,14,6,255,0,2,0,0,0,26,0,200
Platinum Buckler,18,6,0,28,0,6,7,0,0,2,16,255,0,255,0,0,0,0,0,26,0,10000
Midnight Aegis,50,6,8,192,32,0,0,0,0,2,17,13,7,255,0,0,0,0,0,26,0,500
Knight's Shield,50,6,5,188,128,7,7,0,0,2,20,2,6,255,0,3,1,0,0,26,0,1500
Spiked Shield,11,6,5,92,0,0,0,0,0,3,15,4,10,255,0,2,0,1,0,26,0,3000
Aegis of Might,44,6,8,156,0,12,7,0,0,4,5,255,0,2,5,0,2,1,0,26,0,2500
Leather Cap,19,7,0,0,0,0,0,0,0,0,1,255,0,255,0,0,0,0,1,27,35,15
Head Chainmail,20,7,0,0,0,0,0,0,0,1,2,255,0,255,0,0,0,0,1,27,450,45
War-Hat,21,7,0,148,0,0,0,0,0,2,2,255,0,255,0,0,0,0,1,27,1500,125
Sovereign Crown,20,7,5,0,0,0,0,0,0,0,3,2,11,255,0,0,0,1,0,27,0,250
Meditation Cap,19,7,8,12,128,1,8,0,0,1,6,255,0,23,4,1,0,1,1,27,0,90
Scribe's Sallet,21,7,8,28,0,0,0,0,0,2,6,255,0,20,10,0,0,1,1,27,0,350
Helmet,22,7,0,52,0,0,0,0,0,2,8,255,0,255,0,0,0,0,1,27,3000,275
Iron Crown,20,7,0,64,96,0,0,0,0,2,8,255,0,255,0,0,0,0,1,27,0,25
Winged Sallet,21,7,8,192,0,0,0,0,0,1,8,255,0,3,8,0,0,0,0,27,0,400
Spidersilk Helm,72,7,5,0,32,0,0,0,0,2,8,255,0,6,3,0,0,0,1,27,0,400
Helm of Wisdom,19,7,8,148,0,12,8,0,0,2,9,23,9,255,0,2,0,0,0,27,0,800
Tracker's Mask,21,7,5,140,128,0,0,0,0,2,10,255,0,11,7,0,0,0,1,27,0,350
Basinet,22,7,0,28,0,0,0,0,0,3,10,255,0,255,0,0,0,0,1,27,0,200
Barbarian's Helm,22,7,5,124,0,1,8,0,0,2,11,1,6,255,0,1,0,0,0,27,0,3500
Night Elf Helm,72,7,8,4,32,11,7,0,0,3,12,10,4,255,0,2,0,0,0,27,0,2500
Dawn's Headpiece,72,7,0,188,32,0,0,0,0,4,15,255,0,255,0,0,0,0,0,27,0,2750
Valkyrie's Helm,21,7,8,16,128,0,0,0,0,2,16,255,0,13,10,1,0,1,0,27,0,1250
Helm of Guile,22,7,5,16,64,9,7,0,0,3,18,255,0,14,10,2,0,0,0,27,0,1500
Arnakkian's Cap,19,7,5,242,0,12,7,0,0,3,25,0,4,255,0,254,1,1,0,27,0,0
Jester's Cap,49,7,0,0,224,0,0,10,250,5,50,255,0,255,0,2,2,0,0,0,0,0
Cloth Jacket,24,8,0,0,0,0,0,0,0,0,1,255,0,255,0,0,0,0,1,28,15,5
Leather Jacket,25,8,0,0,0,0,0,0,0,1,1,255,0,255,0,0,0,0,1,28,125,40
Chainmail,26,8,0,16,0,0,0,0,0,1,3,255,0,255,0,0,0,0,1,28,1500,60
Sack Cloth Jacket,24,8,0,224,32,0,0,0,0,1,2,255,0,255,0,1,0,0,1,28,500,45
Breastplate,27,8,0,16,0,0,0,0,0,2,5,255,0,255,0,0,0,0,1,28,12000,350
Barbarian's Plate,27,8,0,124,0,0,0,0,0,2,5,255,0,255,0,1,2,0,0,28,0,600
Knight's Breastplate,27,8,0,188,0,0,0,0,0,2,5,255,0,255,0,1,2,0,0,28,0,600
Ranger's Chainmail,26,8,0,220,0,0,0,0,0,2,5,255,0,255,0,1,2,0,0,28,0,600
Thief's Jacket,25,8,0,236,128,0,0,0,0,2,5,255,0,255,0,1,2,0,0,28,0,600
Cleric's Chainmail,26,8,0,244,32,0,0,0,0,2,5,255,0,255,0,1,2,0,0,28,0,600
Wizard's Sash,24,8,0,248,64,0,0,0,0,2,5,255,0,255,0,1,2,0,0,28,0,600
Snakeskin Jacket,25,8,0,200,32,0,0,0,0,2,5,255,0,255,0,0,0,0,1,28,0,500
Mail of the Magus,26,8,0,240,128,1,8,0,0,3,5,255,0,255,0,2,0,0,0,28,0,1500
Etheric Vestment,25,8,5,192,0,2,7,0,0,3,6,255,0,10,5,2,0,1,0,28,0,2500
Shadow Cloak,25,8,5,12,0,0,0,0,0,3,10,255,0,17,6,0,3,0,0,28,0,1200
Priestly Garb,24,8,10,244,64,7,7,0,0,4,10,255,0,23,4,3,0,0,0,28,0,1000
Wizard's Robes,24,8,10,248,0,1,8,0,0,3,20,255,0,18,6,3,1,0,0,28,0,2300
Plate of Iron,27,8,0,28,0,0,0,0,0,3,25,255,0,255,0,2,0,0,0,28,0,1750
Dragon's Skin,28,8,0,28,0,0,0,0,0,3,25,255,0,255,0,0,0,0,0,28,0,0
Granite Armor,28,8,0,28,128,10,7,0,0,4,30,255,0,255,0,0,0,0,0,28,0,1000
Jeweled Breastplate,27,8,0,152,128,11,7,0,0,3,50,255,0,255,0,0,0,0,0,28,0,1500
Thief's Cloak,25,8,5,236,64,0,0,0,0,5,75,255,0,2,6,0,0,0,0,28,0,1000
Tempered Adamantine,28,8,0,60,0,0,0,0,0,6,90,255,0,255,0,0,0,0,0,28,0,2500
Spiritual Armor,28,8,0,181,32,0,0,0,0,5,100,255,0,255,0,0,0,0,0,28,0,5000
Berserker Talisman,32,9,5,0,0,0,0,1,5,0,0,255,0,2,8,0,0,1,1,29,0,5
Binding Talisman,32,9,5,0,0,0,0,0,0,1,1,255,0,6,8,0,0,1,1,29,0,5
Read Tracks Talisman,32,9,5,0,0,0,0,1,2,0,0,255,0,11,8,0,0,1,1,29,0,5
Trance Talisman,32,9,5,0,0,0,0,0,0,0,0,255,0,23,8,1,2,1,1,29,0,5
Freedom Ring,33,9,5,0,128,0,0,0,0,1,0,255,0,10,10,2,0,1,0,0,0,50
Jaded Ring,15,9,5,0,64,0,0,2,0,0,0,255,0,18,10,1,0,1,0,0,0,50
Ring of Thieves,15,9,10,0,64,0,0,0,0,0,0,255,0,13,10,3,0,0,1,0,0,90
Iron Ring,33,9,5,0,128,0,0,0,0,0,0,255,0,6,10,0,3,1,1,0,0,5
Nero's Lyre,14,9,5,68,0,1,12,0,0,0,0,6,8,255,0,0,0,1,0,0,0,125
Thieves Flute,40,9,5,236,0,9,3,1,0,2,3,11,10,255,0,0,2,0,0,0,0,125
Stone of the Magi,35,9,5,0,32,1,8,0,0,0,0,255,0,24,10,0,0,1,0,0,0,100
Scorched Stone,35,9,5,0,0,9,7,0,0,0,0,12,8,255,0,0,0,1,1,0,0,75
Mirrored Gemstone,75,9,5,0,128,2,3,0,0,0,0,9,8,255,0,0,0,0,1,0,0,75
Priest's Amulet,34,9,5,0,64,7,2,0,0,0,0,20,10,255,0,0,0,1,0,0,0,75
Dragon's Stone,35,9,5,0,0,9,8,0,0,2,5,14,8,255,0,3,2,0,0,0,0,75
Pipes of Enchantment,40,9,5,132,0,0,0,0,0,1,0,2,8,255,0,0,0,1,0,0,0,75
Sisyphus' Stone,35,9,5,0,128,7,7,0,0,1,0,255,0,9,12,2,1,1,0,0,0,100
Amulet of Protection,23,9,5,0,128,1,4,0,0,2,3,255,0,255,0,1,1,1,0,0,0,75
Halo Scroll,37,11,5,0,0,0,0,0,0,0,0,12,5,255,0,0,0,1,1,31,100,5
Scroll of Protection,37,11,5,0,0,0,0,0,0,0,0,14,5,255,0,0,0,1,1,31,250,5
Refresh Scroll,37,11,5,0,0,0,0,0,0,0,0,16,5,255,0,0,0,1,1,31,250,5
Scroll of the Sun,37,11,5,0,0,0,0,0,0,0,0,6,7,255,0,0,0,1,0,31,350,5
Cursed Scroll,37,11,5,0,0,0,0,0,0,0,0,3,5,255,0,0,0,1,1,31,100,5
Basalt Scroll,37,11,5,0,0,0,0,0,0,0,0,9,6,255,0,0,0,1,1,31,250,5
Rune Chart,41,11,5,0,0,0,0,0,0,0,0,255,0,20,6,0,0,1,1,35,750,55
Hawk's Eye,61,11,5,0,0,0,0,0,0,0,0,255,0,11,6,0,0,1,1,144,300,35
Crystal Ball,61,11,5,0,0,0,0,0,0,0,0,23,6,255,0,0,0,1,1,144,300,25
Shaman Scroll,37,11,5,0,0,0,0,0,0,0,0,1,7,255,0,0,0,1,0,31,4500,350
Scroll of Death,37,11,5,0,0,0,0,0,0,0,0,4,9,255,0,0,0,1,0,31,0,1000
Life Giver,37,11,5,0,0,0,0,0,0,0,0,22,8,255,0,0,0,1,1,31,0,400
Aura Scroll,37,11,5,0,0,0,0,0,0,0,0,12,10,255,0,0,0,1,1,31,0,50
Boomerang Scroll,37,11,5,0,0,0,0,0,0,0,0,0,8,255,0,0,0,1,1,31,0,500
Pummel Scroll,37,11,8,0,0,0,0,0,0,0,0,1,9,255,0,0,0,1,0,31,0,1000
Zeus' Scroll,37,11,8,0,0,0,0,0,0,0,0,2,12,255,0,0,0,1,0,31,0,1000
Sovereign Scroll,37,11,5,0,0,0,0,0,0,0,0,2,10,255,0,0,0,1,0,31,18000,2500
Symbol of Death,37,11,8,0,0,0,0,0,0,0,0,4,11,255,0,0,0,1,0,31,0,1000
Scroll of Safety,37,11,5,0,0,0,0,0,0,0,0,14,8,255,0,0,0,1,1,31,0,50
Scorched Scroll,37,11,5,0,0,0,0,0,0,0,0,6,9,255,0,0,0,1,1,31,0,200
Crystal Scroll,37,11,5,0,0,0,0,0,0,0,0,7,8,255,0,0,0,1,1,31,1000,200
Blood Scroll,37,11,5,0,0,0,0,0,0,0,0,20,9,255,0,0,0,1,0,31,0,500
Refresh-All Scroll,37,11,5,0,0,0,0,0,0,0,0,16,11,255,0,0,0,1,1,31,0,150
Shielding Scroll,37,11,5,0,0,0,0,0,0,0,0,15,7,255,0,0,0,1,1,31,0,50
Scroll of Wind,37,11,5,0,0,0,0,0,0,0,0,11,8,255,0,0,0,1,1,31,0,75
Heal Potion,39,11,10,0,0,0,0,0,0,0,0,20,2,255,0,0,0,1,1,32,50,5
Elixir of Health,39,11,12,0,0,0,0,0,0,0,0,20,7,255,0,0,0,1,1,32,550,65
Heal-All Potion,39,11,10,0,0,0,0,0,0,0,0,20,11,255,0,0,0,1,0,32,20000,250
Heal Amphora,59,11,15,0,0,0,0,0,0,0,0,20,12,255,0,0,0,1,0,32,0,500
Teleport Pass,41,11,5,0,0,0,0,0,0,0,0,17,12,255,0,0,0,1,1,34,250,45
Silver Bar,77,11,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,1,33,1000,1000
Gold Bar,78,11,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,1,33,10000,10000
Platinum Bar,79,11,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,1,33,50000,50000
Sliver Bar,77,11,1,0,0,0,0,0,0,0,0,4,10,255,0,0,0,1,0,33,0,1000
Green Lockpick,51,11,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,1,36,300,50
Red Lockpick,51,11,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,1,0,0,75
Blue Lockpick,51,11,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,1,0,0,100
Cure Potion,65,11,8,0,0,0,0,0,0,0,0,19,1,255,0,0,0,1,1,37,35,5
Curative Elixir,65,11,10,0,0,0,0,0,0,0,0,19,7,255,0,0,0,1,1,37,500,45
Cure-All Potion,65,11,15,0,0,0,0,0,0,0,0,19,12,255,0,0,0,1,1,37,0,150
Bless Potion,66,11,8,0,0,0,0,0,0,0,0,18,10,255,0,0,0,1,1,0,0,5
Resuscitator,64,9,2,0,0,0,0,0,0,0,0,22,10,255,0,0,0,1,1,30,15000,200
Hope's Fury,23,9,0,0,0,10,7,0,0,3,10,255,0,255,0,3,1,0,0,0,0,0
Carissa's Gauntlets,52,6,5,72,0,12,11,4,40,3,15,9,10,16,255,0,0,0,0,0,0,0
Lava Glove,62,6,5,0,32,9,7,1,20,0,0,21,3,16,255,0,0,0,0,0,0,0
Ice Flame,1,1,0,0,0,10,12,5,100,253,0,255,0,5,255,0,1,0,0,0,0,0
Flask of Shadowfall,66,11,20,0,0,0,0,1,15,0,0,10,12,255,0,0,0,0,0,0,0,0
Mana Potion,66,11,10,0,0,0,0,0,0,0,0,255,0,24,5,0,0,1,1,38,75,5
Mana Elixir,66,11,8,0,0,0,0,0,0,0,0,255,0,24,9,0,0,1,1,38,1000,45
Mana Restore,66,11,5,0,0,0,0,0,0,0,0,255,0,24,11,0,0,1,0,38,10000,150
Mana Amphora,59,11,10,0,0,0,0,0,0,0,0,255,0,24,12,0,0,1,0,38,0,250
Stone of Awareness,57,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Skeleton Key,30,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Luminous Lantern,36,12,0,0,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0
Maze Key,45,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Slate Map,47,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Parchment Map,47,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Leather Map,47,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Snakeskin Map,47,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Snake Charm,29,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Fellowship Key,45,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Tnepres Key,30,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Diamond Lockpick,42,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Emerald Lockpick,42,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Sapphire Lockpick,42,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Ruby Lockpick,42,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Front Door Key,45,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Key of C,45,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Rope,38,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Life Jacket,25,8,0,0,32,0,0,0,0,2,25,255,0,255,0,1,1,0,0,0,0,0
Coral,54,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Topaz,56,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Pearl,55,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Ebony,57,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Opal,58,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Spirit Bottle,65,11,0,0,0,0,0,0,0,0,0,255,0,20,12,0,0,0,0,0,0,0
Priceless Bar,79,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Dralkarian Ring,69,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Queen's Key,31,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Whole Map,46,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Juicy Dragon Steak,48,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Funhouse Key,31,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Nimbus of the Fates,21,7,0,0,0,7,7,2,20,2,20,21,12,255,0,2,2,0,0,0,0,0
Reality's Rampart,44,6,0,0,192,12,7,0,0,4,35,1,12,255,0,3,1,0,0,0,0,0
Starburst,33,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Cross Key,45,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Brass Ring,33,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Sword of Ares,53,1,0,0,0,10,12,8,250,0,0,255,0,5,255,254,2,0,0,0,0,0
Gaea's Flail,74,1,0,0,0,10,12,8,250,0,0,255,0,1,255,254,2,0,0,0,0,0
Neptune's Trident,70,2,0,0,0,10,12,8,250,0,0,255,0,21,255,254,2,0,0,0,0,0
Bow of Eos,43,3,0,0,0,10,12,8,250,0,0,255,0,8,255,254,2,0,0,0,0,0
Eye of Circinus,63,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Easter Egg,55,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Statue of Storm Giant,63,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Naomi's Key,30,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Hacksaw Blade,1,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Hands of the Magi,52,6,0,248,0,0,0,2,2,1,4,19,5,255,0,0,1,0,0,0,0,750
Rod of Dissemination,8,2,0,0,0,0,0,2,45,2,12,255,0,21,255,1,1,0,0,0,0,0
Unity Ring,33,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Not to be Assigned,0,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Items for Ruins of Cawdor:
Code:
Name,Icon,Type,Charges,Guilds,Flags,MonGrp,MonEffect,StrMod,DexMod,DefMod,DmgRed,Spell,SpellLvl,Skill,SkillLvl,AgiMod,IniMod,CanRemove,CanTrade,InfoMsg,BuyAt,SellAt
Null Item,0,0,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Short Sword,62,1,0,0,0,0,0,1,2,0,0,255,0,5,255,0,0,0,1,20,15,5
Broadsword,1,1,0,12,0,0,0,2,4,0,0,255,0,5,255,0,0,0,1,20,30,25
Longsword,1,1,0,12,0,0,0,2,12,0,0,255,0,5,255,0,0,0,1,20,250,50
Martel's Blade,1,1,6,12,0,3,7,4,33,0,0,11,6,5,255,0,1,0,0,20,0,125
Hengist's Sword,1,1,5,12,0,0,0,3,42,0,0,6,5,5,255,0,0,0,0,20,0,125
Talorcan's Claymore,4,1,3,12,0,0,0,4,90,0,0,9,3,5,255,0,0,0,0,20,0,200
Edwin's Peacegiver,4,1,5,12,0,0,0,3,47,0,0,7,6,5,255,0,0,0,0,20,0,200
Lowland Stabber,1,1,0,12,0,11,6,5,77,255,0,255,0,5,255,0,0,0,1,20,0,65
Thor's Bane,60,1,0,0,0,10,12,9,250,253,216,255,0,5,255,0,1,0,0,0,0,0
Lodbrok's Blade,4,1,0,12,0,10,12,10,240,253,206,255,0,5,255,0,1,0,0,20,0,1500
Oswald's Bane,1,1,5,12,0,7,11,6,83,0,0,5,6,5,255,0,0,0,0,20,0,200
Ecgfrith's Sword,60,1,5,12,0,3,11,8,110,255,241,1,8,5,255,0,0,0,0,20,0,200
Athelstan's Sword,1,1,8,12,0,5,10,8,120,0,236,10,2,5,255,0,0,0,0,20,0,200
Seax,60,1,0,12,0,0,0,7,130,1,0,255,0,5,255,0,3,0,0,20,0,200
Scramasax,1,1,3,12,0,0,0,7,140,255,226,10,7,5,255,0,0,0,0,20,0,200
Claymore,4,1,0,12,0,4,11,9,190,253,206,255,0,5,255,0,0,0,0,20,0,200
Axe,2,1,0,0,0,0,0,1,3,0,0,255,0,1,255,0,0,0,1,22,60,5
Battle Axe,2,1,0,28,0,0,0,2,10,0,0,255,0,1,255,0,0,0,1,22,250,25
Woodsman's Axe,2,1,0,76,0,0,0,1,17,0,0,255,0,1,255,0,0,0,1,22,0,25
Duncan's Axe,2,1,10,112,0,0,0,4,20,0,0,20,3,1,255,0,0,0,0,22,0,175
Malcolm's Chopper,2,1,0,52,0,7,9,3,35,0,0,255,0,1,255,0,0,0,0,22,0,500
Donalbain's Axe,29,1,10,60,0,0,0,6,83,0,0,10,3,1,255,0,0,0,0,22,0,1500
Banquo's Axe,29,1,5,124,0,11,12,9,200,252,216,0,6,1,255,0,0,0,0,22,0,3500
The Axe of Angus,29,1,10,0,0,0,0,7,100,253,226,5,12,1,255,255,255,0,0,22,0,0
Club,3,1,0,0,0,0,0,0,2,0,0,255,0,1,255,0,0,0,1,23,15,2
Mace,6,1,0,20,0,0,0,1,6,0,0,255,0,1,255,0,0,0,1,23,50,5
Cathness's Club,3,1,5,0,0,4,9,2,8,0,0,9,3,1,255,0,0,0,1,23,0,75
Morningstar,7,1,0,28,0,0,0,2,17,0,0,255,0,1,255,0,0,0,1,23,2500,200
Strathclyde's Club,3,1,5,140,0,0,0,2,15,0,0,20,6,1,255,0,0,0,0,23,0,1750
Hecate's Hammer,5,1,8,20,0,0,0,3,30,0,0,0,10,1,255,0,0,0,0,23,0,400
Flail,71,1,0,4,0,0,0,6,90,0,251,255,0,1,255,0,0,0,1,23,0,350
Fleance's Flail,71,1,2,52,0,0,0,6,100,255,246,19,10,1,255,0,0,0,1,23,0,100
War Hammer,31,1,0,116,0,0,0,2,60,0,0,255,0,1,255,0,255,0,1,23,15000,400
Hilda's Hammer,31,1,0,52,0,6,5,9,175,1,241,255,0,1,255,0,1,0,0,23,0,1200
Horsa's Hammer,31,1,8,244,0,5,12,9,180,254,236,6,6,1,255,0,0,0,0,23,0,1200
Macduff's Maul,10,1,5,156,0,12,15,8,250,254,231,1,10,1,255,0,0,0,0,23,0,5000
Quarterstaff,8,2,0,0,0,0,0,1,2,1,3,255,0,21,255,0,0,0,1,24,55,10
Spear,9,2,0,0,0,0,0,2,8,1,2,255,0,21,255,0,0,0,1,24,110,25
Ascomanni Spear,9,2,8,144,0,0,0,2,18,0,5,10,5,21,255,0,0,0,1,24,0,800
Halberd,10,2,0,4,0,0,0,2,16,1,5,255,0,21,255,0,0,0,1,24,5500,200
Long Spear,9,2,0,12,0,0,0,3,25,2,15,255,0,21,255,0,0,0,1,24,0,1150
Tapering Spear,9,2,5,68,0,0,0,3,25,1,10,8,9,21,255,0,2,0,0,24,0,500
Bayonet Spear,9,2,8,200,0,0,0,3,30,1,10,22,8,21,255,0,0,0,0,24,0,500
Lozenge Spear,8,2,0,24,0,12,14,4,50,1,15,255,0,21,255,0,0,0,0,24,0,500
Leaf Spear,9,2,5,72,0,11,10,5,65,2,15,0,6,21,255,0,0,0,0,24,0,500
Polearm,10,2,0,60,0,0,0,4,45,2,20,255,0,21,255,0,0,0,1,24,0,250
Bardiche,10,2,0,0,0,0,0,5,75,2,25,255,0,21,255,0,0,0,1,24,0,150
Elchere's Staff,44,2,5,208,0,0,0,5,80,1,20,6,9,21,255,0,0,0,0,24,0,500
Coerl's Staff,44,2,8,160,0,0,0,5,70,1,10,5,7,21,255,0,0,0,0,24,0,3500
Lance,9,2,0,156,0,5,9,6,90,1,15,255,0,21,255,0,0,0,1,24,0,200
Oswy's Javelin,45,2,8,148,0,1,10,7,100,1,10,2,8,21,255,0,0,0,0,24,0,500
Lugh's Spear,45,2,250,0,0,0,0,5,70,1,5,4,8,21,255,0,0,0,0,24,0,800
Osric's Staff,44,2,5,228,0,0,0,7,120,2,20,1,11,21,255,0,0,0,0,24,0,1250
Wulfherd's Staff,44,2,0,244,0,1,14,9,130,3,30,255,0,21,255,0,2,0,0,24,0,1250
Swithun's Staff,44,2,5,164,0,12,10,8,150,3,40,9,10,21,255,0,2,0,0,24,0,0
Aldhelm's Staff,44,2,10,0,0,0,0,9,100,4,40,4,12,21,255,1,0,0,0,24,0,3500
Short Bow,12,3,0,0,0,0,0,1,2,0,0,255,0,8,255,0,0,0,1,25,50,10
Longbow,12,3,0,12,0,0,0,2,12,0,0,255,0,8,255,0,0,0,1,25,250,50
Hunting Bow,12,3,8,204,0,7,10,2,18,0,0,5,7,8,255,0,0,0,1,25,0,450
Crossbow,13,3,0,12,0,0,0,2,29,0,0,255,0,8,255,0,0,0,1,25,500,40
Composite Bow,12,3,0,12,0,3,9,3,47,0,0,255,0,8,255,0,1,0,1,25,0,150
Welsh Longbow,43,3,8,192,0,5,12,4,60,0,0,11,5,8,255,0,0,0,0,25,0,700
Bernician Bow,43,3,5,128,0,0,0,4,73,0,0,1,8,8,255,0,0,0,0,25,0,700
Deiran Bow,43,3,8,0,0,0,0,5,83,0,0,6,4,8,255,0,0,0,0,25,0,700
Bow of Badonicus,43,3,5,132,0,1,10,7,140,0,0,0,6,8,255,0,2,0,0,25,0,900
Camlunn Crossbow,13,3,0,204,0,0,0,6,160,0,0,255,0,8,255,0,0,0,0,25,0,1000
Yew Bow of York,43,3,8,12,0,10,12,7,120,0,0,8,4,8,255,0,1,0,1,25,0,1500
Brunanburh Bow,43,3,0,200,0,9,13,9,200,0,0,255,0,8,255,0,1,0,0,25,0,1700
Dalriadan Bow,43,3,5,204,0,7,11,8,220,0,0,4,6,8,255,0,0,0,0,25,0,3500
Buckler,16,6,0,0,0,0,0,0,0,0,2,255,0,255,0,0,0,0,1,26,35,10
Round Shield,17,6,0,4,0,0,0,0,0,1,4,255,0,255,0,0,0,0,1,26,150,40
Linden Shield,18,6,10,128,0,3,1,0,0,2,9,20,4,255,0,1,0,0,1,26,0,350
Iron Bossed Shield,17,6,5,20,0,0,0,0,0,3,14,7,2,255,0,1,0,0,1,26,0,350
Convex Shield,18,6,0,20,0,0,0,0,0,1,7,255,0,255,0,0,0,0,1,26,300,60
Flat Shield,18,6,0,0,0,10,7,0,0,2,16,255,0,255,0,3,0,0,0,26,0,500
Pointed Shield,11,6,25,12,0,0,0,1,15,2,14,255,0,17,3,0,0,0,0,26,0,500
Kite Shield,18,6,0,20,0,0,0,0,0,3,32,255,0,255,0,2,0,0,0,26,0,2500
Shield Wall,18,6,5,68,0,9,7,0,0,5,54,6,5,255,0,0,1,0,0,26,0,1500
Edwin's Defender,17,6,5,68,0,6,7,0,0,6,50,255,0,22,2,2,0,0,0,26,0,1250
Guardian of Wessex,17,6,10,20,0,1,7,0,0,6,47,0,6,255,0,2,0,0,0,26,0,200
Ethelbald's Buckler,16,6,10,0,0,1,7,0,0,6,60,14,6,255,0,2,0,0,0,26,0,200
Wulfherd's Shield,18,6,50,28,0,6,7,0,0,4,40,255,0,24,7,1,1,0,0,26,0,10000
Ealstan's Absorber,17,6,22,4,0,0,0,0,0,9,86,13,7,255,0,0,0,0,0,26,0,500
My Lady's Favor,16,6,5,184,0,7,7,0,0,8,83,2,6,255,0,3,1,0,0,26,0,1500
Spiked Shield,11,6,5,92,0,0,0,3,40,7,69,4,10,255,0,2,0,0,0,26,0,3000
Hadrian's Wall,18,6,100,20,0,0,0,0,0,9,101,15,12,255,0,0,0,0,0,26,0,2500
Leather Cap,19,7,0,0,0,0,0,0,0,0,2,255,0,255,0,0,0,0,1,27,35,15
Head Chainmail,20,7,0,0,0,0,0,0,0,1,3,255,0,255,0,0,0,0,1,27,450,45
Turkish Hat,21,7,5,148,0,0,0,0,0,2,6,8,5,255,0,0,0,0,1,27,1500,125
Huda's Headgear,19,7,5,0,0,0,0,0,0,1,10,2,11,255,0,0,0,0,0,27,0,250
Ealstan's Cap,19,7,8,12,0,1,8,0,0,1,15,255,0,23,4,1,0,0,1,27,0,90
Wulfherd's Helm,21,7,8,28,0,0,0,0,0,2,17,255,0,20,10,0,0,0,1,27,0,350
Helmet,22,7,0,52,0,0,0,0,0,2,12,255,0,255,0,0,0,0,1,27,3000,275
Iron Crown,20,7,0,64,0,0,0,0,0,2,22,255,0,255,0,0,0,0,1,27,0,25
Deer Horned Helm,21,7,8,192,0,0,0,1,5,1,25,255,0,3,8,0,0,0,0,27,0,400
Spiked Helm,21,7,5,0,0,0,0,1,8,3,27,255,0,6,3,0,0,0,1,27,0,400
Antlered Helm,21,7,8,148,0,12,8,1,10,3,29,23,9,255,0,2,0,0,0,27,0,800
Reindeer Horn Helm,21,7,5,140,0,0,0,2,15,4,34,255,0,11,7,0,0,0,0,27,0,350
Slotted Helm,22,7,5,28,0,0,0,0,0,5,45,255,0,24,3,0,0,0,0,27,0,2000
Unicorn Horn Helm,21,7,5,0,0,1,8,1,10,8,75,1,9,255,0,2,0,0,0,27,0,3500
Phrygian Cap,20,7,0,4,0,11,7,0,0,6,47,255,0,255,0,1,0,0,0,27,0,2500
Rhino Horn Helm,21,7,15,188,0,0,0,5,30,9,83,4,7,255,0,0,0,0,0,27,0,2750
Ivar's Helm,22,7,8,16,0,0,0,0,0,7,58,255,0,13,10,1,0,0,0,27,0,1250
Alfred's Hat,67,7,5,0,0,9,7,0,0,8,77,255,0,14,10,2,0,0,0,27,0,1500
Ironside's Headgear,22,7,5,244,0,12,7,0,0,9,96,0,4,255,0,254,1,0,0,27,0,0
Alcuin's Cap,19,7,0,0,0,0,0,10,120,10,110,255,0,255,0,2,2,0,0,0,0,0
Cloth Jacket,24,8,0,0,0,0,0,0,0,1,2,255,0,255,0,0,1,0,1,28,15,5
Leather Jacket,25,8,0,0,0,0,0,0,0,1,4,255,0,255,0,0,0,0,1,28,125,40
Chainmail,26,8,0,20,0,0,0,0,0,1,8,255,0,255,0,1,255,0,1,28,1500,60
Cuirboillis,25,8,0,224,0,0,0,0,0,2,6,255,0,255,0,1,1,0,1,28,500,45
Breastplate,27,8,0,4,0,0,0,0,0,1,18,255,0,255,0,1,255,0,1,28,12000,350
Steel Breastplate,27,8,0,20,0,0,0,0,0,1,27,255,0,255,0,2,255,0,1,28,0,600
Woolen Cloak,24,8,0,0,0,0,0,0,0,2,12,255,0,255,0,2,2,0,1,28,0,600
Red Tartan Cloak,24,8,0,16,0,0,0,0,0,2,15,255,0,255,0,2,2,0,1,28,0,600
Blue Tartan Cloak,24,8,0,236,0,0,0,0,0,2,19,255,0,255,0,3,3,0,1,28,0,600
Field Plate,28,8,0,148,0,0,0,0,0,3,36,255,0,255,0,2,1,0,1,28,0,600
Full Plate,28,8,0,20,0,0,0,0,0,3,47,255,0,255,0,3,254,0,1,28,0,600
Half Plate,28,8,0,20,0,0,0,0,0,4,42,255,0,255,0,2,0,0,1,28,0,500
Adamantine Plate,28,8,0,20,0,1,8,0,0,5,60,255,0,255,0,4,254,0,0,28,0,1500
Holy Vestments,50,8,5,180,0,2,7,0,0,6,45,255,0,10,5,3,3,0,1,28,0,2500
Wizard's Tabard,53,8,5,248,0,0,0,255,236,7,45,255,0,17,6,2,5,0,1,28,0,1200
Thief's Tabard,53,8,10,236,0,7,7,1,10,6,45,255,0,23,4,3,4,0,1,28,0,1000
Ranger's Tabard,53,8,10,220,0,1,8,0,0,7,45,255,0,18,6,3,4,0,1,28,0,2300
Cleric's Tabard,53,8,0,244,0,0,0,0,0,6,45,255,0,255,0,3,4,0,1,28,0,1750
Knight's Tabard,53,8,0,188,0,0,0,0,0,7,45,255,0,255,0,4,3,0,1,28,0,0
Barbarian's Tabard,53,8,0,124,0,10,7,0,0,6,75,255,0,255,0,5,2,0,1,28,0,1000
Disbelieving Tunic,50,8,0,72,0,11,7,0,0,7,90,255,0,255,0,6,2,0,0,28,0,1500
Mendicant's Tunic,50,8,5,172,0,0,0,0,0,8,135,255,0,2,6,7,7,0,0,28,0,1000
Beggar's Robes,24,8,0,96,0,0,0,2,40,9,150,255,0,255,0,8,8,0,0,28,0,2500
Alfred's Robes,24,8,0,0,0,0,0,3,50,10,120,255,0,255,0,9,9,0,0,28,0,5000
Turgeis's Tripper,8,1,0,128,0,0,0,2,25,0,0,255,0,16,255,0,0,0,1,21,3500,50
Saxon Sticks,8,1,0,0,0,0,0,3,35,1,4,255,0,16,255,0,1,0,1,21,0,200
Ethelfleda's Flail,71,1,0,224,0,0,0,5,75,0,0,255,0,16,255,0,0,0,1,23,3200,150
Alcuin's Sticks,8,1,25,224,0,2,9,5,60,2,15,23,12,16,255,0,2,0,0,23,0,170
Menteth's Maul,10,1,8,224,0,0,0,9,250,252,209,4,8,16,255,254,254,0,0,23,0,400
Aldhelm's Gauntlets,52,6,10,0,0,0,0,5,50,5,56,20,3,16,255,1,0,0,0,26,0,750
Alfred's Gloves,35,6,10,32,0,0,0,1,20,7,77,14,8,16,255,2,2,0,0,26,0,750
Gorgon's Gauntlets,52,6,5,72,0,12,11,7,200,2,47,9,10,16,255,0,0,0,0,0,0,8000
Adamantine Glove,35,6,5,0,0,9,7,6,130,9,113,21,8,16,255,3,3,0,0,0,0,10000
Ivar's Gauntlets,52,6,5,124,0,0,0,1,5,2,15,14,3,16,255,0,1,0,0,26,0,750
Berserker Talisman,32,9,5,0,0,0,0,1,5,0,0,255,0,2,8,0,0,1,1,29,0,5
Binding Talisman,32,9,5,0,0,0,0,0,0,1,10,255,0,6,10,0,0,1,1,29,0,5
Tracking Talisman,32,9,5,0,0,0,0,1,5,0,0,255,0,11,8,0,0,1,1,29,0,5
Trance Talisman,32,9,5,0,0,0,0,0,0,1,7,255,0,23,8,1,2,1,1,29,0,5
Perseus's Ring,15,9,15,0,0,0,0,0,0,2,18,255,0,10,10,2,0,0,0,0,0,50
Hippocrates's Ring,15,9,15,0,0,0,0,2,0,3,35,255,0,18,10,1,0,0,0,0,0,50
Alcuin's Ring,33,9,20,0,0,0,0,3,25,9,118,255,0,13,10,3,0,0,0,0,0,9000
Gauze Ring,33,9,15,0,0,0,0,0,0,7,93,255,0,6,10,3,3,0,1,0,0,5
Aldhelm's Harp,14,9,25,0,0,1,12,0,0,6,77,6,10,255,0,0,0,1,0,0,0,3500
The Dagda's Harp,14,9,20,0,0,9,11,5,100,5,53,4,9,255,0,0,1,1,0,0,0,3750
Merlin's Ease,40,9,15,0,0,1,8,0,0,4,40,255,0,24,10,0,0,0,0,0,0,100
Merlin's Support,32,9,15,0,0,9,7,0,0,1,9,12,8,255,0,0,0,1,1,0,0,75
Merlin's Will,34,9,15,0,0,2,12,4,75,0,0,9,8,255,0,0,0,0,1,0,0,75
Holy  Relic,34,9,5,0,0,7,15,1,5,8,52,20,10,255,0,0,0,0,0,0,0,75
Drakesbane,34,9,5,0,0,9,8,0,0,2,7,14,8,255,0,3,2,0,0,0,0,75
Succubus Pipes,40,9,5,8,0,0,0,2,15,0,0,2,8,255,0,0,0,1,0,0,0,75
Gaelic Garlic,55,9,4,0,0,7,7,1,5,1,4,5,5,255,0,2,1,0,1,0,0,100
Reversing Amulet,23,9,15,0,0,1,15,0,0,2,11,0,6,255,0,1,1,0,0,0,0,75
Halo Scroll,37,11,5,0,0,0,0,0,0,0,0,12,5,255,0,0,0,1,1,31,100,5
Scroll of Protection,37,11,5,0,0,0,0,0,0,0,0,14,5,255,0,0,0,1,1,31,250,5
Refresh Scroll,37,11,5,0,0,0,0,0,0,0,0,16,5,255,0,0,0,1,1,31,250,5
Scroll of the Sun,37,11,5,0,0,0,0,0,0,0,0,6,7,255,0,0,0,1,0,31,350,5
Lantern,36,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,1,0,50,5
Basalt Scroll,37,11,5,0,0,0,0,0,0,0,0,9,6,255,0,0,0,1,1,31,250,5
Rune Chart,41,11,5,0,0,0,0,0,0,0,0,255,0,20,6,0,0,1,1,35,750,55
Hawk's Eye,61,11,5,0,0,0,0,0,0,0,0,255,0,11,6,0,0,1,1,144,300,35
Crystal Ball,61,11,5,0,0,0,0,0,0,0,0,23,6,255,0,0,0,1,1,144,300,25
Shaman Scroll,37,11,5,0,0,0,0,0,0,0,0,1,7,255,0,0,0,1,0,31,4500,350
Volley Scroll,37,11,5,0,0,0,0,0,0,0,0,4,9,255,0,0,0,1,0,31,0,1000
Methuselah's Scroll,37,11,5,0,0,0,0,0,0,0,0,22,11,255,0,0,0,1,1,31,0,400
Aura Scroll,37,11,5,0,0,0,0,0,0,0,0,12,10,255,0,0,0,1,1,31,0,50
Boomerang Scroll,37,11,5,0,0,0,0,0,0,0,0,0,8,255,0,0,0,1,1,31,0,500
Pummel Scroll,37,11,8,0,0,0,0,0,0,0,0,1,9,255,0,0,0,1,0,31,0,1000
Lady's Scroll,37,11,8,0,0,0,0,0,0,0,0,2,12,255,0,0,0,1,0,31,0,1000
Sovereign Scroll,37,11,5,0,0,0,0,0,0,0,0,2,10,255,0,0,0,1,0,31,18000,2500
Deadly Scroll,37,11,8,0,0,0,0,0,0,0,0,4,11,255,0,0,0,1,0,31,0,1000
Defending  Scroll,37,11,5,0,0,0,0,0,0,0,0,14,8,255,0,0,0,1,1,31,0,50
Oxymoron Scroll,37,11,5,0,0,0,0,0,0,0,0,6,9,255,0,0,0,1,1,31,0,200
Viking's Scroll,37,11,5,0,0,0,0,0,0,0,0,7,8,255,0,0,0,1,1,31,1000,200
Hippocratic Scroll,37,11,5,0,0,0,0,0,0,0,0,20,9,255,0,0,0,1,0,31,0,500
Emanating Scroll,37,11,5,0,0,0,0,0,0,0,0,16,11,255,0,0,0,1,1,31,0,150
Left Arm Scroll,37,11,5,0,0,0,0,0,0,0,0,15,7,255,0,0,0,1,1,31,0,50
Thor's Scroll,37,11,5,0,0,0,0,0,0,0,0,11,8,255,0,0,0,1,1,31,0,75
Begonia Balm,66,11,10,0,0,0,0,0,0,0,0,255,0,24,5,0,0,1,1,38,50,5
Petunia Poultice,66,11,12,0,0,0,0,0,0,0,0,255,0,24,9,0,0,1,1,38,550,65
Lavender Lotion,66,11,10,0,0,0,0,0,0,0,0,255,0,24,11,0,0,1,1,38,20000,250
Dragon Flagon,59,11,15,0,0,0,0,0,0,0,0,20,12,255,0,0,0,1,0,36,0,500
Teleport Pass,41,11,5,0,0,0,0,0,0,0,0,17,12,255,0,0,0,1,1,34,250,45
Small Letter of Credit,48,11,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,1,33,1000,1000
Large Letter of Credit,48,11,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,1,33,10000,10000
Great Letter of Credit,48,11,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,1,33,50000,50000
Skeleton Keyring,30,11,2,0,0,0,0,0,0,0,0,255,0,14,10,0,0,1,1,36,2000,300
Wooden Lockpick,56,11,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,1,36,300,50
Brass Lockpick,56,11,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,1,36,2000,300
Iron Lockpick,57,11,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,1,36,20000,3000
Mugwort Mead,65,11,8,0,0,0,0,0,0,0,0,19,1,255,0,0,0,1,1,37,35,5
Willowbark Wine,65,11,10,0,0,0,0,0,0,0,0,19,7,255,0,0,0,1,1,37,500,45
Juniper Juice,65,11,15,0,0,0,0,0,0,0,0,19,12,255,0,0,0,1,1,37,0,150
Bless Potion,68,11,8,0,0,0,0,0,0,0,0,18,10,255,0,0,0,1,1,0,0,5
Brief Candle,64,9,2,0,0,0,0,0,0,0,0,22,10,255,0,0,0,1,1,30,15000,200
Streoneshalh's Aid,23,9,0,0,0,10,7,0,0,5,55,255,0,255,0,3,1,0,0,0,0,5000
Beorhtric's Bane,68,11,20,0,1,0,0,4,50,0,0,10,12,255,0,0,0,0,0,0,0,0
Blueberry Brew,39,11,10,0,0,0,0,0,0,0,0,20,3,255,0,0,0,1,1,32,75,5
Elderberry Elixir,39,11,8,0,0,0,0,0,0,0,0,20,7,255,0,0,0,1,1,32,1000,45
Woad Wine,39,11,5,0,0,0,0,0,0,0,0,20,11,255,0,0,0,1,1,32,10000,150
Palace Chalice,59,11,10,0,0,0,0,0,0,0,0,255,0,24,12,0,0,1,0,32,0,250
Doormat,58,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
UnusedKey,30,12,3,0,0,0,0,0,0,0,0,255,0,14,8,0,0,1,0,0,0,500
Cursed Scroll,37,11,5,0,0,0,0,0,0,0,0,3,5,255,0,0,0,1,1,31,100,5
Horseshoe,80,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Grappling Hook,81,12,255,0,0,0,0,0,0,0,0,255,0,13,12,0,0,0,0,0,0,0
Sharp Grappling Hook,83,12,255,0,0,0,0,0,0,0,0,255,0,13,12,0,0,0,0,0,0,0
A Shrubbery,82,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Rasp File,84,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Hand Saw,85,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Ohthere's Dagger,62,1,0,0,0,0,0,4,70,1,12,255,0,255,0,0,0,0,0,0,0,1000
Mannanan's Ring,15,12,3,0,0,0,0,2,24,2,19,255,0,13,12,4,4,1,0,0,0,2000
Silver Lockpick,57,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,1,0,0,0
Steel Lockpick,57,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,1,0,0,0
Cold Steel Lockpick,57,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,1,0,0,0
Adamantine Lockpick,56,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,1,0,0,0
Hole Punch,86,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Carding Brush,87,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Rope,38,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Unused12 Life Jacket,25,8,0,0,0,0,0,0,0,2,18,255,0,255,0,1,1,0,0,0,0,0
The Prunes of Cawdor,51,12,2,0,0,10,1,0,0,0,0,255,0,11,1,0,0,1,1,0,0,4
Tongs,88,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Mallet,89,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Unused16 Ebony,57,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Unused17 Opal,58,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
Leaden Dagger,62,12,1,0,0,10,15,0,0,0,0,1,1,255,0,0,0,1,0,0,0,0
Blue Banner,63,12,1,0,0,10,15,0,0,0,0,4,1,255,0,0,0,1,0,0,0,0
Orange Banner,63,12,1,0,0,10,15,0,0,0,0,1,1,255,0,0,0,1,0,0,0,0
Cup of Drowning,59,12,1,0,0,10,15,0,0,0,0,1,1,255,0,0,0,1,0,0,0,0
Crown of Crimson,67,12,1,0,0,10,15,0,0,0,0,1,1,255,0,0,0,1,0,0,0,0
Healing Locket,34,12,255,0,0,10,15,0,0,0,0,20,1,255,0,0,0,1,0,0,0,0
Hurly Burly,67,12,1,0,0,10,15,0,0,0,0,1,1,255,0,0,0,1,1,0,0,5000
Milk of Human Kindness,68,12,5,0,0,10,15,0,0,0,0,20,2,255,0,0,0,1,1,0,0,5000
Fillet of a Fenny Snake,69,12,1,0,0,9,15,0,0,0,0,1,2,255,0,0,0,1,1,0,0,5000
Eye of Newt,70,12,1,0,0,9,15,0,0,0,0,1,2,255,0,0,0,1,1,0,0,5000
Toe of Frog,72,12,1,0,0,9,15,0,0,0,0,1,2,255,0,0,0,1,1,0,0,5000
Wool of Bat,42,12,1,0,0,3,15,0,0,0,0,1,2,255,0,0,0,1,1,0,0,5000
Tongue of Dog,74,11,1,0,0,3,15,0,0,0,0,1,2,255,0,0,0,1,1,0,0,5000
Adder Fork,76,12,1,0,0,9,15,0,0,0,0,1,2,255,0,0,0,1,1,0,0,5000
Blindworm Sting,77,12,1,0,0,9,15,0,0,0,0,1,2,255,0,0,0,1,1,0,0,5000
Lizard Leg,78,12,1,0,0,9,15,0,0,0,0,1,2,255,0,0,0,1,1,0,0,5000
Howlet Wing,69,12,1,0,0,9,15,0,0,0,0,1,2,255,0,0,0,1,1,0,0,5000
Scale of Dragon,79,12,1,0,0,9,15,0,0,0,0,1,2,255,0,0,0,1,1,0,0,5000
Tooth of Wolf,73,12,1,0,0,3,15,0,0,0,0,1,2,255,0,0,0,1,1,0,0,5000
Witches Mummy,46,12,1,0,0,10,15,0,0,0,0,1,2,255,0,0,0,1,1,0,0,5000
Gall of Goat,51,12,1,0,0,3,15,0,0,0,0,1,2,255,0,0,0,1,1,0,0,5000
Witches Thumb,77,12,1,0,0,10,15,0,0,0,0,1,2,255,0,0,1,1,1,0,0,5000
Crack of Doom,47,2,3,0,0,10,15,0,0,0,0,4,2,255,0,0,0,1,0,0,0,0
Unity Ring,33,12,0,0,0,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0
Not to be Assigned,0,12,0,0,0,0,0,0,0,0,0,255,0,255,0,0,0,0,0,0,0,0
 

ZaneDubya

Active Members
#29
You may also be interested in the description of spells and skills ... https://github.com/ZaneDubya/YserbiusData/blob/master/Data/Strings.Resource.040.csv

... and the text associated with the map events from Yserbius - as an example, here is all the events from the Land of Giants map, down deep in the 'cano: https://github.com/ZaneDubya/YserbiusData/blob/master/Maps/YsMap30.cs

That repo contains a great deal of information which I've managed to mine from Yserbius over the past year. Who knows what else you'll find in there. ;)
 

slohand

Yserbian
Staff member
#33
A quick personal update: I passed the bar (back in Summer 2016)! The intervening years have been a blur. Do you ever get the sense that time is speeding up?

I picked up this project again last month. Since then, I've deciphered the remaining item data, skill and spell data, and made more progress on the monster data. I've also transcoded the map script files from 16-bit x86 overlays to c# code. You can view the transcoded dungeon entrance script file here. n.b. I admit the code is ugly, but it's machine-based transcoding, not done by hand!

My inspiration to continue looking at this game data comes from my love of Yserbius. The game was fun, but my fondest memories of that old platform are of the community. Most everyone was positive, helpful, and affirming. I'd like there to be a way to replicate that place, and make it accessible in a modern way.
So what type of law do you practice?
 

ZaneDubya

Active Members
#34
Health data security/privacy. About 90% of my time is spent on HIPAA. My wife, also an attorney, works on data breaches and complex/class action litigation.

I really enjoy my job, but I wish I had the opportunity to do more programming or code review. Software privacy by design is something I'd like to explore in a future career!
 

ZaneDubya

Active Members
#36
Dolnor, that's a great idea. Maybe I'll drop him a line to send thanks for creating such a great experience that so many people still think of so many years later. :)

Joe Ybarra produced not just one but two of my favorite computer games ever: Yserbius and Alien Legacy. He also worked at Infocom and on MULE! What a legacy that guy has.
 

Dolnor

Active Members
#37
In 2017, he received an Honorary Doctorate Degree: http://www.marketwired.com/press-re...advancing-technology-uat-honorary-2214296.htm

He also tried to kickstart a game on Kickstarter but it failed to gain enough donations: https://www.kickstarter.com/projects/470015043/shackleton-crater?ref=nav_search&result=project&term=shackleton crater

He also was Vice President of Product Development at Cheyenne Mountain Entertainment but then that imploded. I helped test Stargate Worlds but not their secondary game...which was meant to create enough revenue to finish Worlds but failed. I don't know if he was involved in the Cheynne Mountain Entertainment bankruptcy fiasco (shady assets-transference business).

He went on to serve on the Faculty of Collins College, which has closed. He created a website called JoeGotGame.com but it also has disappeared when the kickstarter failed. Since then, news of him has faded from the InterTubes.

TQQdles™
 

Tiger

Active Members
#38
Slo, the list Zane has for items/skills is already in the YS2 Github Resource folder... I already included all the items in the main Ys Item List there.
 

ZaneDubya

Active Members
#39
Fun fact! Although the Pick Pocket skill requires you to choose a target, the enemy you choose does not matter. Your chance of gaining an extra loot item is based solely on your skill level, and the type of extra loot item is based on the treasure table row for the map you are currently adventuring within.

The skill data for Pick Pocket: at pick pocket level one, you have a 10% chance of an extra loot item; at level twelve, you have a 40% chance of an extra loot item.

Treasure table: each map has its own "treasure row" of item ids. The first row is the dungeon entrance; the second row is the mines. Each monster has an equal chance to drop any of the item ids in that map's treasure row. When you pick pocket, you get another roll on the treasure row.
 
Top