aboutsummaryrefslogtreecommitdiff
path: root/src/game/Group.cpp
AgeCommit message (Collapse)Author
2010-05-31Dungeon Finder:Spp
- Add Rolechecks - Can Join and Leave queue * No Find group implementation, it just adds u to the queue. * Still missing some join queue restrictions. --HG-- branch : trunk
2010-05-31ITEM_FLAGS_EXTRA_NEED_ROLL_DISABLED should only affect Need before Greed ↵Shauren
loot method --HG-- branch : trunk
2010-05-26Add support for random battlegrounds - port by n0n4me, original code by ↵click
Vladimir and Griffonheart (Big thanks to all of you!) --HG-- branch : trunk
2010-05-21Fixed disenchanting rolls being allowed for all items, now works as intendedShauren
Renamed Faction to Flags2 in ItemPrototype and added use for some of them yay, my first commit :D --HG-- branch : trunk
2010-05-21Group: Fix guid and internal counter default value.Spp
Use them in SMSG_GROUP_LIST with groupType 0x10 --HG-- branch : trunk
2010-05-20Dungeon Finder: Initial setup and dungeon listingSpp
--HG-- branch : trunk
2010-05-08Add GUID to groupsSpp
--HG-- branch : trunk
2010-05-05Fix raid groups load from DB and save to DB.Trazom62
Fixes issue #299. - In table GROUPS, since rev 7841, isRaid is used to store the groupType. The DB was not updated. this is now fixed. - Fix isRaid set to 1 when group converted to raid (shall be the groupType). - Fix isRaidGroup check as groupType is now a set of flags. - Fix dungeon/raid check when difficulty change. --HG-- branch : trunk
2010-05-04Add stricter regulations for instances (login-checks and support for sending ↵click
unbound player to parent-instance / homebind if not matching criterias) Patch by Elron103 - closes issue #1323. --HG-- branch : trunk
2010-05-03Revert parts of a previous transaction-fix (would create a nested ↵click
transaction), add missing support for rollback in battleground-group creation --HG-- branch : trunk
2010-04-19Code Style: Remove trailing spaces and tab to spacesSpp
--HG-- branch : trunk
2010-04-19More warning removal (Some code modifications and cleanup when needed)Spp
--HG-- branch : trunk
2010-04-19Remove LOTS of compile warningsSpp
--HG-- branch : trunk
2010-04-17Implement auto pass on loot.Trazom62
Fixes issue #1684. --HG-- branch : trunk
2010-04-11Tab to Spaces and remove of trailing spacesSpp
--HG-- branch : trunk
2010-04-11Fix Crash in GroupLoot and NeedBeforeGreed.Trazom62
--HG-- branch : trunk
2010-04-11Temp revert prev. commit.n0n4m3
--HG-- branch : trunk
2010-04-11Fix compile warning.n0n4m3
--HG-- branch : trunk
2010-04-11Fix some typo and compile errors.n0n4m3
--HG-- branch : trunk
2010-04-11Added enum for SMSG_GROUP_JOINED_BATTLEGROUND opcode and some other fixes. ↵n0n4m3
Big thx to TOM_RUS. --HG-- branch : trunk
2010-04-11Fix mail, professions, group loot, console spam, and some fixes. Big thx to ↵n0n4m3
TOM_RUS. --HG-- branch : trunk
2010-04-08Code Style (game + scripts only):Spp
"!=" --> " != " (when needed) " !=" --> " !=" "!= " --> "!= " --HG-- branch : trunk
2010-04-07Code Style (game + scripts only):Spp
">=" --> " >= " (when needed) " >=" --> " >=" ">= " --> ">= " "<=" --> " <= " (when needed) " <=" --> " <=" "<= " --> "<= " " ==" --> " ==" "== " --> "== " --HG-- branch : trunk
2010-04-07Code Style (game + scripts only):Spp
"==" --> " == " (when needed) --HG-- branch : trunk
2010-04-07Code style (game + scripts only):Spp
"( " --> "(" " )" --> ")" --HG-- branch : trunk
2010-04-07Code style (game + scripts only):Spp
"if(" --> "if (" --HG-- branch : trunk
2010-04-07Code style (game + scripts only):Spp
"while(" --> "while (" --HG-- branch : trunk
2010-04-07Code style (game + scripts only):Spp
"for(" --> "for (" --HG-- branch : trunk
2010-04-07Code Style: Remove trailing spacesSpp
--HG-- branch : trunk
2010-04-07Code Style: tab to spacesSpp
--HG-- branch : trunk
2010-03-19Fix Object::IsInMap to check instanceId.Trazom62
Fig group loot distance checks to also check map instanceId. Fixes issue #1172. --HG-- branch : trunk
2010-03-11Implement group loot for chest having GroupLootRules (go type=3, data15=1).Trazom62
Implement round robin loot. Implement round robin for underthreshold items (group loot and need befor greed). Fix "all players pass" bug on creature. Add SMSG_LOOT_LIST message to indicate looter (round robin or master). And some other minor loot bugs. Fixes issue #167. Fixes issue #247. --HG-- branch : trunk
2010-03-10Fix crash in group loading.Spp
--HG-- branch : trunk
2010-03-10Removed forgotten nonexistent colums from a query. Thank Aokromes for ↵Xanadu
pointing a finger on it --HG-- branch : trunk
2010-03-09One overlooked redundant piece of code related to previous commit removed.Machiavelli
--HG-- branch : trunk
2010-03-09Small update to the group/party system.Machiavelli
- Fixes raid assistant privileges, Fixes issue #248 - Proper designation for Main tank and Main assistant roles - Remove 2 redundant columns in DB, namely groups.mainTank and groups.mainAssist. These are now defined by the value of group_member.memberFlags --HG-- branch : trunk
2010-03-07Some Creature* casts moved to new ToCreature.raczman
Added const Creature* ToCreature() --HG-- branch : trunk
2010-02-15Use PVPDificulty.dbc for bg/arena bracket selection (levels and difficulty). ↵n0n4m3
Rename BG/arena queue_id to bracket_id and related functions/etc. Author: VladimirMangos. --HG-- branch : trunk
2010-02-14* Core switch to client 3.3.2 (11403)Brian
* Credits (in no particular order) to: * n0n4m3, raczman, manuel, Spp, Malcrom, Teacher, QAston, Tartalo, * thenecromancer, Xanadu, Trazom, Zor, kiper * Additional credits to: * TOM_RUS and NoFantasy from MaNGOS * Thanks for testing Aokromes and XTElite1 * SoTA still needs some work, but is very playable (huge thanks to raczman and * kiper) * To upgrade, you need to apply all SQL from sql/updates/3.2.2a_old from the * last rev you are on * and then apply all SQL from sql/updates/3.3.2_old to char / realmd / world * DBs * Known problem with guild banks. --HG-- branch : trunk
2010-01-23Implement QueryResult_AutoPtr type which is ACE's reference counted ↵Anubisss
auto_ptr(ACE_Refcounted_Auto_Ptr) for QueryResult pointers. Use this auto_ptr for every DB queries(except QueryNamedResult yet). This patch guarantees NO memory leaks from QueryResult pointers. Thanks to raczman for the idea and for the helping to make this patch. --HG-- branch : trunk
2010-01-20Fix pass/need opcodethenecromancer
--HG-- branch : trunk
2010-01-17* Really revert commit fced5e40fa1e - don't ask me why, but hg is not being ↵XTZGZoReX
very co-operative. --HG-- branch : trunk
2010-01-16Updated copyright for new year.n0n4m3
--HG-- branch : trunk
2010-01-13Backed out changeset: 52e769d95f14XTZGZoReX
--HG-- branch : trunk
2010-01-13Removed all my commits for today, this is hack? really? okeyn0n4m3
--HG-- branch : trunk
2010-01-13Restore hack for instance dungeon difficulty reset exploit.n0n4m3
--HG-- branch : trunk
2009-12-30* re-add missed part of commit from rev 6418Brian
* Original patch by Machiavelli --HG-- branch : trunk
2009-12-22Fix setting of "main tank" and "main assistant" variables in a raid group, ↵Machiavelli
and correctly send these to the client. --HG-- branch : trunk
2009-12-20*apply trinity style to whole sourceRat
*comment out all mangos to trinity defines *this will make merging a little harder, but code will be more clear --HG-- branch : trunk
2009-12-18*Cleanup, proper indentation, and remove some wrong/irrelevant comments ↵maximius
copied from custom patches.. --HG-- branch : trunk