TheGhostGroup / trinitydb

Early Trinitycore Databases Backup from code.google.com/p/trinitydb
0 stars 1 forks source link

Bag of fishing trasures #24

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Have lvl 70 and high fishing skill (not sure about the skill level)
2. Go to Marcia Chase at Dalaran (npc=28742)
3. Get one of the six daily quests she offers (quest=13830, 13832, 13833, 
13834, 13836, 
24806)

What is the expected output? What do you see instead?
After completion, you receive Bag of Fishing Treasures (item=46007), which 
should contain 
some items (http://www.wowhead.com/?item=46007#contains).
The bag comes empty, however.

What version of TDB? What version of the core (LATEST is NOT acceptable)?
TDB_332.8.26_7332

TrinityCore Rev: 7537 Release Hash: 7a12de4c94b4 (Unix,little-endian) 
(core-daemon) on both 
Mac OS X and Linux.

Original issue reported on code.google.com by e_warn...@mac.com on 23 Mar 2010 at 9:03

GoogleCodeExporter commented 9 years ago
Added the loot content into DB with this:

INSERT INTO item_loot_template (entry, item, ChanceOrQuestChance, 
minCountOrRef, maxcount, lootmode, 
groupid, lootcondition, condition_value1, condition_value2) VALUES
    (46007, 45862, 0.1, 1, 1, 1, 0, 0, 0, 0),
    (46007, 45882, 0.1, 1, 1, 1, 0, 0, 0, 0), 
    (46007, 45879, 0.1, 1, 1, 1, 0, 0, 0, 0), 
    (46007, 45987, 0.1, 1, 1, 1, 0, 0, 0, 0), 
    (46007, 45883, 0.3, 1, 1, 1, 0, 0, 0, 0), 
    (46007, 45880, 0.2, 1, 1, 1, 0, 0, 0, 0), 
    (46007, 45881, 0.1, 1, 1, 1, 0, 0, 0, 0), 
    (46007, 45991, 0.4, 1, 1, 1, 0, 0, 0, 0), 
    (46007, 45992, 0.4, 1, 1, 1, 0, 0, 0, 0), 
    (46007, 36784, 1, 1, 1, 1, 0, 0, 0, 0), 
    (46007, 44983, 0.9, 1, 1, 1, 0, 0, 0, 0), 
    (46007, 45986, 0.2, 1, 1, 1, 0, 0, 0, 0), 
    (46007, 33820, 1, 1, 1, 1, 0, 0, 0, 0), 
    (46007, 19971, 0.5, 1, 1, 1, 0, 0, 0, 0), 
    (46007, 36783, 6, 1, 3, 1, 0, 0, 0, 0), 
    (46007, 34834, 0.6, 1, 1, 1, 0, 0, 0, 0), 
    (46007, 45998, 5, 1, 1, 1, 0, 0, 0, 0), 
    (46007, 6522, 50, 2, 4, 1, 0, 0, 0, 0), 
    (46007, 45861, 6, 1, 1, 1, 0, 0, 0, 0), 
    (46007, 8827, 23, 2, 3, 1, 0, 0, 0, 0), 
    (46007, 46006, 23, 1, 1, 1, 0, 0, 0, 0), 
    (46007, 40195, 46, 3, 5, 1, 0, 0, 0, 0), 
    (46007, 33448, 9, 1, 2, 1, 0, 0, 0, 0), 
    (46007, 46004, 5, 1, 1, 1, 0, 0, 0, 0), 
    (46007, 45984, 5, 1, 1, 1, 0, 0, 0, 0), 
    (46007, 48679, 1.6, 1, 1, 1, 0, 0, 0, 0), 
    (46007, 46023, 0.5, 1, 1, 1, 0, 0, 0, 0), 
    (46007, 46361, 6, 2, 2, 1, 0, 0, 0, 0), 
    (46007, 45981, 5, 1, 1, 1, 0, 0, 0, 0), 
    (46007, 45977, 2, 1, 1, 1, 0, 0, 0, 0), 
    (46007, 45978, 13, 2, 5, 1, 0, 0, 0, 0), 
    (46007, 46360, 0.6, 1, 1, 1, 0, 0, 0, 0), 
    (46007, 45979, 5, 1, 1, 1, 0, 0, 0, 0), 
    (46007, 46359, 6, 1, 1, 1, 0, 0, 0, 0), 
    (46007, 45980, 5, 1, 1, 1, 0, 0, 0, 0), 
    (46007, 46001, 6, 1, 3, 1, 0, 0, 0, 0), 
    (46007, 46003, 6, 1, 3, 1, 0, 0, 0, 0), 
    (46007, 46000, 6, 1, 3, 1, 0, 0, 0, 0), 
    (46007, 46002, 7, 1, 3, 1, 0, 0, 0, 0), 
    (46007, 45999, 6, 1, 3, 1, 0, 0, 0, 0);

Original comment by e_warn...@mac.com on 25 Mar 2010 at 6:17