mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-05 10:17:46 +00:00
Player state enum adjusted
This commit is contained in:
parent
258dc8d69b
commit
db94a098a2
1 changed files with 7 additions and 8 deletions
|
@ -1284,17 +1284,16 @@ namespace Sapphire::Common
|
||||||
|
|
||||||
enum PlayerStateFlag : uint8_t
|
enum PlayerStateFlag : uint8_t
|
||||||
{
|
{
|
||||||
HideUILockChar = 16, // as the name suggests, hides the ui and logs the char...
|
HideUILockChar = 1, // as the name suggests, hides the ui and logs the char...
|
||||||
InCombat = 17, // in Combat, locks gearchange/return/teleport
|
InCombat = 2, // in Combat, locks gearchange/return/teleport
|
||||||
Casting = 18,
|
Casting = 3,
|
||||||
InNpcEvent = 20, // when talking to an npc, locks ui giving "occupied" message
|
InNpcEvent = 6, // when talking to an npc, locks ui giving "occupied" message
|
||||||
|
|
||||||
// InNpcEvent1 = 10, // Sent together with InNpcEvent, when waiting for input? just a guess...
|
// InNpcEvent1 = 10, // Sent together with InNpcEvent, when waiting for input? just a guess...
|
||||||
|
|
||||||
BoundByDuty = 26,
|
BoundByDuty = 10,
|
||||||
BetweenAreas = 37,
|
BetweenAreas = 21,
|
||||||
WatchingCutscene = 49, // this is actually just a dummy, this id is different
|
WatchingCutscene = 34,
|
||||||
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue