Implement SE lootpacks for SE enabled shards.
http://www.runuo.com/community/threads/scn-656-osi-loot.429885/ Range Corrections for NPC context menus. http://www.runuo.com/community/threads/svn-656-bulk-order-info-and-train-context-menu-range.451723/ Correction to ships' tillerman. Fixes dropping maps to tillerman, and a boat-break-in exploit. http://www.runuo.com/community/threads/svn-656-tillerman-doesnt-accept-map.447911/ Aesthetic corrections to GargoylesPickaxe. http://www.runuo.com/community/threads/svn-656-blacksmith-reward-gargoyle-pickaxes.436462/
This commit is contained in:
parent
030daa30da
commit
c81a87394d
6 changed files with 23 additions and 16 deletions
|
|
@ -468,13 +468,13 @@ namespace Server
|
|||
#endregion
|
||||
|
||||
#region Generic accessors
|
||||
public static LootPack Poor{ get{ return Core.AOS ? AosPoor : OldPoor; } }
|
||||
public static LootPack Meager{ get{ return Core.AOS ? AosMeager : OldMeager; } }
|
||||
public static LootPack Average{ get{ return Core.AOS ? AosAverage : OldAverage; } }
|
||||
public static LootPack Rich{ get{ return Core.AOS ? AosRich : OldRich; } }
|
||||
public static LootPack FilthyRich{ get{ return Core.AOS ? AosFilthyRich : OldFilthyRich; } }
|
||||
public static LootPack UltraRich{ get{ return Core.AOS ? AosUltraRich : OldUltraRich; } }
|
||||
public static LootPack SuperBoss{ get{ return Core.AOS ? AosSuperBoss : OldSuperBoss; } }
|
||||
public static LootPack Poor{ get{ return Core.SE ? SePoor : Core.AOS ? AosPoor : OldPoor; } }
|
||||
public static LootPack Meager{ get{ return Core.SE ? SeMeager : Core.AOS ? AosMeager : OldMeager; } }
|
||||
public static LootPack Average{ get{ return Core.SE ? SeAverage : Core.AOS ? AosAverage : OldAverage; } }
|
||||
public static LootPack Rich{ get{ return Core.SE ? SeRich : Core.AOS ? AosRich : OldRich; } }
|
||||
public static LootPack FilthyRich{ get{ return Core.SE ? SeFilthyRich : Core.AOS ? AosFilthyRich : OldFilthyRich; } }
|
||||
public static LootPack UltraRich{ get{ return Core.SE ? SeUltraRich : Core.AOS ? AosUltraRich : OldUltraRich; } }
|
||||
public static LootPack SuperBoss{ get{ return Core.SE ? SeSuperBoss : Core.AOS ? AosSuperBoss : OldSuperBoss; } }
|
||||
#endregion
|
||||
|
||||
public static readonly LootPack LowScrolls = new LootPack( new LootPackEntry[]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue