forked from ExMod-Team/EXILED
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into Fix-OnWaitingForPlayersBeingCalledTooEarly
- Loading branch information
Showing
130 changed files
with
5,111 additions
and
784 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
// ----------------------------------------------------------------------- | ||
// <copyright file="ObjectiveType.cs" company="ExMod Team"> | ||
// Copyright (c) ExMod Team. All rights reserved. | ||
// Licensed under the CC BY-SA 3.0 license. | ||
// </copyright> | ||
// ----------------------------------------------------------------------- | ||
|
||
namespace Exiled.API.Enums | ||
{ | ||
/// <summary> | ||
/// An enum representing the different types of objectives. | ||
/// </summary> | ||
/// <seealso cref="Exiled.API.Features.Objectives.Objective" /> | ||
public enum ObjectiveType | ||
{ | ||
/// <summary> | ||
/// Unknown objective. | ||
/// </summary> | ||
None, | ||
|
||
/// <summary> | ||
/// Objective that is completed when SCP item is picked up. | ||
/// </summary> | ||
ScpItemPickup, | ||
|
||
/// <summary> | ||
/// Objective that is completed when enemy military is damaged. | ||
/// </summary> | ||
HumanDamage, | ||
|
||
/// <summary> | ||
/// Objective that is completed when enemy military is killed. | ||
/// </summary> | ||
HumanKill, | ||
|
||
/// <summary> | ||
/// Objective that is completed when generator is activated. | ||
/// </summary> | ||
GeneratorActivation, | ||
|
||
/// <summary> | ||
/// Objective that is completed when player escapes. | ||
/// </summary> | ||
Escape, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
// ----------------------------------------------------------------------- | ||
// <copyright file="Scp939VisibilityStates.cs" company="ExMod Team"> | ||
// Copyright (c) ExMod Team. All rights reserved. | ||
// Licensed under the CC BY-SA 3.0 license. | ||
// </copyright> | ||
// ----------------------------------------------------------------------- | ||
|
||
namespace Exiled.API.Enums | ||
{ | ||
using Features.Roles; | ||
|
||
/// <summary> | ||
/// Unique identifier for a <see cref="Scp939Role"/>. | ||
/// </summary> | ||
public enum Scp939VisibilityState | ||
{ | ||
/// <summary> | ||
/// SCP-939 doesnt see an other player, by default FPC role logic. | ||
/// </summary> | ||
None, | ||
|
||
/// <summary> | ||
/// SCP-939 doesnt see an player, by basic SCP-939 logic. | ||
/// </summary> | ||
NotSeen, | ||
|
||
/// <summary> | ||
/// SCP-939 sees an other player, who is teammate SCP. | ||
/// </summary> | ||
SeenAsScp, | ||
|
||
/// <summary> | ||
/// SCP-939 sees an other player due the Alpha Warhead detonation. | ||
/// </summary> | ||
SeenByDetonation, | ||
|
||
/// <summary> | ||
/// SCP-939 sees an other player, due the base-game vision range logic. | ||
/// </summary> | ||
SeenByRange, | ||
|
||
/// <summary> | ||
/// SCP-939 sees an other player for a while, after it's out of range. | ||
/// </summary> | ||
SeenByLastTime, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.