Age | Commit message (Collapse) | Author |
|
Veil
Closes #16068
|
|
By @tkrokli
Closes #16078
|
|
Closes #16094
|
|
Closes #16097
|
|
Fix Gossips used for taxi
Closes #16112
|
|
By @Saben65
Closes #16121
|
|
creature addon
Closes #16107
|
|
By @Saben65
Closes #16104
|
|
Drathir
Closes #16122
|
|
Closes #16081
|
|
Closes #16119
|
|
|
|
|
|
Add missing spawns
|
|
This optional breadcrumb quest should not be takable if player has already started quest chain it leads to.
|
|
- Changed SetStackSizeForItem to GetStackSizeForItem in AuctionHouseBotSeller
- Added Initializer to SellerItemClassInfo.RandomStackRatio in AuctionHouseBotSeller
- Updated verbiage around AuctionHouseBot.Class.RandomStackRatio.* to be clearer
|
|
For each item class (consumable, glyph), you can now edit the worldserver.conf to
configure the ratio (percent) of random compared to single stack auction postings.
Example 1
AuctionHouseBot.Class.RandomStackRatio.Consumable = 0
- New consumable auctions posted by AuctionHouseSeller will always be single stack.
Example 2
AuctionHouseBot.Class.RandomStackRatio.Consumable = 100
- New consumable auctions posted by AuctionHouseSeller will always be of a random
stack size.
Example 3
AuctionHouseBot.Class.RandomStackRatio.Consumable = 20
- New consumable auctions posted by AuctionHouseSeller have a 20% chance of being a
random stack size, and an 80% chance of being single stack size.
|
|
|
|
Closes #16093
|
|
|
|
Dalaran
|
|
Related: 193dd505
|
|
and move to correct section.
|
|
Spells/Penance: Fix erroneous cooldown on misplaced hostile target
|
|
Core/Arena: more arena configs
|
|
cast rather than the triggered cast, thus not erroneously causing a cooldown.
|
|
Closes #16032
|
|
By: @Treeston
Closes #16034
|
|
Closes #16036
|
|
Closes #16050
|
|
Closes #16057
|
|
|
|
Fix a levelling exploit with http://www.wowhead.com/quest=254/digging-through-the-dirt and http://www.wowhead.com/quest=253/deprecated-bride-of-the-embalmer where multiple http://www.wowhead.com/npc=45801/eliza could be summoned and aoed down.
|
|
Closes #15982
|
|
Core/Quest: code style
|
|
closes #16009
|
|
by P-Kito; retrieved from #15027
The paladin talent Sanctified Wrath should pierce absorb effects.
|
|
|
|
Core/Player: Fix Weapon Skillup on low level mobs
Remove check for skill up on grey level mobs
|
|
Closes #15998
Removed block for skill up on grey level mobs.
|
|
Texts need synchronization and some issues must be fixed.
|
|
|
|
|
|
Enable achievement 1428, "Mine Sweeper" in SpellScript
by @Re3os / @ccrs / @sirikfoll . based on original script from @Vincent-Michael
Closes #15938
|
|
|
|
- Fix missing yells
- Rearrange existing yells to match live
- Sniffed positions for adds
- Improve add respawn handling
- Make adds not fight the player for control (don't use their spells on their own etc.)
- Update adds' hotbar keys to match live (this will affect other creatures with nonsequential possess keys as well)
- Fix adds' movement when mind controlled, they no longer move automatically when right-clicking (this affects all mind-controlled creatures)
- Blizzlike timers
|
|
- made rating modifiers configurable
- made arena points rate configurable
|
|
Including the weird quirks.
Changes:
* Deposit caculated according to same rule as client. (detailed below). Should always match client deposit now
* Deposit for multiple auctions now only collected once. Deferred calculation of deposit until all auctions listed.
Deposit calculation is as follows:
Base deposit calculation = MSV x 15/75% (depending on AH). However this is not rounded. Case to int is used (so always round down)
The remainder is held in a float.
The base is then multiplied by number of items, and the time multiplier (x2 for 24 hour, x4 for 48 hour)
The nearest (no of items or lower) no of items when multiplied by the remainder that creates a whole number is then multiplied by the time multiplier (x1/x2/x4) and then added to deposit.
Example:
Item sell price 1s25. Deposit 18.75c (15% of 1s25). So base deposit = 18, remainder 0.75. Time 24h (x2) Item count 1 = 36c. Remainder = 0.75 (n) Min = 1s. Deposit 1s
Item sell price 1s25. Deposit 18.75c (15% of 1s25). So base deposit = 18, remainder 0.75. Time 24h (x2) Item count 2 = 72c. Remainder = 1.50 (n) Min = 1s. Deposit 1s
Item sell price 1s25. Deposit 18.75c (15% of 1s25). So base deposit = 18, remainder 0.75. Time 24h (x2) Item count 3 = 108c. Remainder = 2.25 (n) Min = 1s. Deposit 1s08c
Item sell price 1s25. Deposit 18.75c (15% of 1s25). So base deposit = 18, remainder 0.75. Time 24h (x2) Item count 4 = 144c. Remainder = 3.00 (n) Min = 1s. Deposit 1s50c (144c + (3c * 2))
Horrible kludge, to re-create a very weird deposit method.
Closes #15674 (PR)
Closes #15643 (Issue)
|
|
|
|
|