Overwrite

Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
Unstable Kitsune
2023-11-28 23:20:26 -05:00
parent 3cd54811de
commit b918192e4e
11608 changed files with 2644205 additions and 47 deletions

View File

@@ -0,0 +1,24 @@
using System;
using System.Collections;
namespace Server.ACC.CSS
{
[Flags]
public enum School
{
Invalid = 0x00000000,
Magery = 0x00000001,
Necro = 0x00000002,
Chivalry = 0x00000004,
Ninja = 0x00000008,
Samurai = 0x00000010,
Druid = 0x00000020,
Avatar = 0x00000040,
Bard = 0x00000080,
Cleric = 0x00000100,
Ranger = 0x00000200,
Rogue = 0x00000400,
Undead = 0x00000800,
Ancient = 0x00001000,
}
}