How to make your own allegiance.
- Navigate to the following directory:
lua/wos/prs/squad/allegiances/
- Use the existing file, or create your own .lua file in that folder.
- Allegiances can be created using the provided format. You can insert as many as you want in one file, or create multiple files for organization.
wOS.RenegadeSquad.Alleg:RegisterAllegiance({
Name = "Clone Trooper",
Description = "For the chancellor",
UserGroups = false,
AdminGroups = { "superadmin", "founder" },
TeamColor = Color( 133, 133, 133 ),
Logo = "wos/prs/renicon.png",
RequiredCertif = {
[ "-Trained" ] = true,
},
DefaultRole = "Clone Trooper",
OnSpawn = function( ply )
end,
})