Malcrom
8332cee052
Scripting/The Slave Pens: Moved boss_mennu_the_betrayer from EAI to CPP.
2013-11-10 10:53:43 -03:30
Malcrom
e5b259fb4a
Scripting/Arcatraz: Move Zereketh the Unbound, Dalliah the Doomsayer, & Wrath-Scryer Soccothrates to cpp scripting and some cleanup.
2013-11-10 03:22:22 -03:30
Discover-
b98cc11a49
Core/Misc: Fix compile after 316da388d5
2013-11-03 10:36:02 +01:00
untaught
316da388d5
Fix quest Redeeming the Dead (9685) and remove the core script
2013-11-03 11:17:28 +02:00
Spp
ec1e88d888
Core/RBAC: Move send commands to RBAC (using individual permissions)
2013-09-10 12:24:40 +02:00
Spp
83cb44d79f
Core/RBAC: Move pet commands to RBAC (using individual permissions)
...
- Pet commands moved from cs_misc.cpp to own file
2013-09-10 12:07:03 +02:00
Spp
1eee42433b
Core/RBAC: Move group commands to RBAC (using individual permissions)
...
- group commands moved from cs_misc.cpp to own file
- renamed groupsummon to "group summon"
2013-09-10 11:45:59 +02:00
Vincent-Michael
22b71244a0
DB/Creature: Fix cords for quest "Death Comes From On High"
2013-08-31 19:33:14 +02:00
joschiwald
1f34284828
Scripts/UtgardeKeep: reworked InstanceScript and cleanup some boss script
2013-08-27 23:50:40 +02:00
joschiwald
2aa944caee
Scripts/Auchindoun: add missing InstanceScripts and cleanup some boss scripts
2013-08-26 18:52:29 +02:00
w1sht0l1v3
1ad954e215
Core/Scripts: Placeholders for instances Maraudon and Dire Maul.
...
It is needed for Random Dungeon Finder credit.
2013-08-17 19:14:48 +03:00
w1sht0l1v3
7c7f19228e
Core/Scripts: Placeholders for instances The Slave Pens and The Underbog.
...
It is needed for Random Dungeon Finder credit.
2013-08-17 17:50:33 +03:00
w1sht0l1v3
0333d22fe9
Core/Scripts: Placeholder for instance Ragefire Chasm.
...
It is needed for Random Dungeon Finder credit.
2013-08-17 15:25:09 +03:00
w1sht0l1v3
7b9f34afc5
Core/Scripts: Placeholder for instance The Stockade.
...
It is needed for Random Dungeon Finder credit.
Correct entry for last encounter in the instance.
2013-08-17 14:59:49 +03:00
Vincent-Michael
c5ff184ebd
Core/Scripts: Add missing stuff in 0161012c69
2013-08-10 23:16:36 +02:00
Kirkhammett
0161012c69
Scripts/ZulFarrak: Convert Witch Doctor Zum'rah from SAI to Cpp
...
Closes #10508
2013-08-10 20:36:45 +01:00
Vincent-Michael
dbb40dd4fe
Scripted/Pets: Move some player pets in pet_xxx.cpp
2013-08-09 19:22:16 +02:00
Malcrom
090f348d59
Scripting/Sethekk Halls: Move Boss Anzu from EAI to CPP and some cleanup.
2013-08-07 18:53:17 -02:30
Malcrom
f5e4fd67c3
Scripting: Moved Lord Valthalak from EAI to CPP. Moved all Blackrock Instances to Blackrock Mountain Dir.
2013-08-07 10:50:06 -02:30
joschiwald
d868f9db4b
Scripts/DrakTharonKeep: reworked InstanceScript
2013-07-29 12:49:27 +02:00
Vincent-Michael
b4d4e04f53
Scripts/Misc: Rename creatures with mob_ / mobs_ in npc_
...
Note: Have fun :P
2013-07-04 22:11:47 +02:00
Malcrom
722f7068f2
Core/Scripting: More updates for BRS instance. Added missing scripts for urok and gizrul.
2013-07-01 10:19:18 -02:30
Malcrom
eb74361470
Core/Scripting: Updated BWL Scripts. Thanks to gerripeach for the base.
...
Closes #4952 #9283
2013-06-24 13:48:02 -02:30
Malcrom
6623a9dc42
Core/Scripting: Renamed Dark Portal scripts to The Black Morass
2013-06-21 23:14:59 -02:30
Bezo
178cb300d1
Implement .arena commands - add new commands to the core to handle with arena teams.
...
*.arena create [player] "arena name" [type]
*.arena create "arena name" [type]
*.arena disband [TeamID]
*.arena rename "oldName" "newName"
*.arena captain [TeamID] [Player]
*.arena info [TeamID]
*.arena lookup [name]
2013-05-22 00:50:51 +03:00
horn
0a0698b1d4
Scripts/Ulduar: Yogg-Saron
...
Known issues:
- encounter doesn't start immediately after you enter the room, you need to go closer
- players standing outside of the room are not turned Insane after 15 seconds
- encounter resets if the last living player is gripped by Constrictor Tentacle or encased in Hodir's Flash Freeze
- Hodir won't freeze multiple players when they die at the same moment
- Flash Freeze missile (64176) won't hit anybody, probably cast too soon (cosmetic issue)
- there are some unused spells, don't know when or why they should be cast
- some spell animations hit multiple players, but they shouldn't do that
2013-05-14 17:52:37 +02:00
joschiwald
425f85c354
Core/ScriptLoader: load eventscripts
2013-04-28 15:57:44 +02:00
Nefarion
1b45bcd7b9
Add the following commands:
...
.deserter instance add $time (Adds the instance deserter debuff with $time duration to your target)
.deserter bg add $time (Adds the BG deserter debuff with $time duration to your target)
.deserter instance remove (Removes the instance deserter debuff)
.deserter instance remove (Removes the bg deserter debuff)
2013-03-09 18:43:09 +01:00
Spp
b980aff83e
Core: Implement Role based Access Control
...
- This system will give more control of actions an account can perform.
System defines:
- Permissions to perform some action
- Roles: a set of permissions that have some relation
- Groups: a set of roles that have some relation
Operations:
- Grant: Assign and allow
- Deny: Assign and do not allow
- Revoke: Remove
Precedence to know if something can be done: Grant, Deny. That means, if you are granted some action by a role but you have denied the permission, the action can not be done.
Some Rules:
- Groups can only have roles
- Roles can only have permissions
- An account can be assigned granted and denied roles. Permissions inherited from roles are granted if roles is granted and denied if roles is denied
- An account can be assigned granted and denied permissions
- An account can have multiple groups, roles and permissions
- An account can not have same role granted and denied at same time
- An acconnt can not have same permission granted and denied at same time
- Id 0 can not be used to define a group, role or permission
Added some permissions as a sample of use (Instant Logout, Skip Queue, Join BGs, Join DF) and some permissions as a workaround to commands till command system is modified to use RBAC
2013-02-04 09:04:33 +01:00
Vincent_Michael
480c847156
Core: Some cosmetic changes
2013-01-26 19:49:53 +01:00
Vincent_Michael
b08ea19aff
Merge branch 'master' of github.com:TrinityCore/TrinityCore into mmaps
2013-01-13 01:25:56 +01:00
Malcrom
df2e54f587
Core/Scripting: More cleanup to Mechanar scripts. Added missing doors and handling to instance.
2013-01-12 19:35:14 -03:30
Vincent_Michael
24e0eb1812
Merge branch 'master' of github.com:TrinityCore/TrinityCore into mmaps
...
Conflicts:
src/server/game/Movement/Spline/MoveSplineInit.cpp
2013-01-05 16:55:17 +01:00
Malcrom
e8ca1d5cd1
Core/Scripting: Add Kirtonos The Herald to c++ scripting. Combat still not finished.
2013-01-04 01:00:51 -03:30
Vincent_Michael
b873156c3c
Merge branch 'master' of github.com:TrinityCore/TrinityCore into mmaps
...
Conflicts:
src/server/game/Movement/Spline/MoveSplineInit.h
2013-01-02 14:12:48 +01:00
Vincent_Michael
336752a409
Core: Add missing changes in f7e7f5fe26
2013-01-02 03:25:08 +01:00
Malcrom
f7e7f5fe26
CORE/Scripting: Move Commander Sarannis & Thorngrin the Tender to cpp scripting. Add instance script.
...
Thanks to Vincent Micheal for the help :)
2013-01-01 21:36:21 -03:30
Vincent_Michael
62adbdab99
Merge branch 'master' of github.com:TrinityCore/TrinityCore into mmaps
...
Conflicts:
src/server/game/Movement/MovementGenerators/HomeMovementGenerator.cpp
2013-01-01 23:12:21 +01:00
Vincent_Michael
cc65aba789
Update copyright note for 2013.
...
Happy new year.
2013-01-01 00:41:01 +01:00
kaelima
0a88787dfc
Merge git://github.com/TrinityCore/TrinityCore into mmaps
...
Conflicts:
src/server/game/Entities/Vehicle/Vehicle.cpp
src/server/game/Movement/MovementGenerator.h
src/server/game/Movement/MovementGenerators/ConfusedMovementGenerator.cpp
src/server/game/Movement/MovementGenerators/ConfusedMovementGenerator.h
src/server/game/Movement/MovementGenerators/FleeingMovementGenerator.cpp
src/server/game/Movement/MovementGenerators/FleeingMovementGenerator.h
src/server/game/Movement/MovementGenerators/IdleMovementGenerator.cpp
src/server/game/Movement/MovementGenerators/IdleMovementGenerator.h
src/server/game/Movement/MovementGenerators/PointMovementGenerator.cpp
src/server/game/Movement/MovementGenerators/PointMovementGenerator.h
src/server/game/Movement/MovementGenerators/TargetedMovementGenerator.cpp
src/server/game/Movement/MovementGenerators/TargetedMovementGenerator.h
src/server/game/Movement/MovementGenerators/WaypointMovementGenerator.cpp
src/server/game/Movement/MovementGenerators/WaypointMovementGenerator.h
src/server/game/Movement/Spline/MoveSpline.h
2012-12-21 00:00:16 +01:00
Mislav Blažević
9991f4ae2d
Implement Viscidus AQ40
...
Signed-off-by: Nay <dnpd.dd@gmail.com >
2012-12-18 14:09:27 +00:00
Spp
2251d1bfae
Core/Misc: Set mode 0644 for files
2012-11-27 13:03:12 +01:00
Vincent-Michael
7ed100a74e
Core/Scripting: Small cleanup
2012-11-25 01:01:22 +01:00
kaelima
3c13454ad7
Merge git://github.com/TrinityCore/TrinityCore into mmaps
...
Conflicts:
src/server/game/Movement/MovementGenerators/TargetedMovementGenerator.cpp
src/server/game/Movement/MovementGenerators/WaypointMovementGenerator.cpp
src/server/game/Movement/Spline/MoveSplineInit.cpp
2012-11-05 12:02:08 +01:00
Subv
55892048ef
Merge pull request #8127 from Gacko/childrens_week
...
Core/DB: Children's Week
2012-10-25 07:43:02 -07:00
Spp
ca85c3b475
Core/Dungeon Finder: Fix teleport to dungeon and add missing code from 1be638e731
2012-10-23 19:09:50 +02:00
Gacko
9c4cf9b39c
Core/DB: Children's Week
2012-10-21 14:33:20 +02:00
Nay
972b418103
Merge remote-tracking branch 'origin/master' into mmaps
...
Conflicts:
src/server/game/Movement/MovementGenerators/ConfusedMovementGenerator.cpp
src/server/game/Movement/MovementGenerators/FleeingMovementGenerator.cpp
2012-10-07 14:51:21 +01:00
Warpten
c971447855
Scripts/Ruby Sanctum: Halion, the Twilight Destroyer.
2012-10-06 22:47:52 +02:00
Venugh
c9eb42f246
Core/Commands: Implemented mmaps commands.
2012-09-06 00:36:24 +02:00