Table of Contents

Class SpawnProperties

Namespace
Exiled.API.Features.Spawn
Assembly
Exiled.API.dll

Handles special properties of spawning an item.

public class SpawnProperties
Inheritance
SpawnProperties
Inherited Members
Extension Methods

Properties

DynamicSpawnPoints

Gets or sets a List<T> of possible dynamic spawn points.

public List<DynamicSpawnPoint> DynamicSpawnPoints { get; set; }

Property Value

List<DynamicSpawnPoint>

Limit

Gets or sets a value indicating how many of the item can be spawned when the round starts.

public uint Limit { get; set; }

Property Value

uint

LockerSpawnPoints

Gets or sets a List<T> of possible locker-based spawn points.

public List<LockerSpawnPoint> LockerSpawnPoints { get; set; }

Property Value

List<LockerSpawnPoint>

RoleSpawnPoints

Gets or sets a List<T> of possible role-based spawn points.

public List<RoleSpawnPoint> RoleSpawnPoints { get; set; }

Property Value

List<RoleSpawnPoint>

RoomSpawnPoints

Gets or sets a List<T> of possible room-based spawn points.

public List<RoomSpawnPoint> RoomSpawnPoints { get; set; }

Property Value

List<RoomSpawnPoint>

StaticSpawnPoints

Gets or sets a List<T> of possible static spawn points.

public List<StaticSpawnPoint> StaticSpawnPoints { get; set; }

Property Value

List<StaticSpawnPoint>

Methods

Count()

Counts how many spawn points are in this instance.

public int Count()

Returns

int

How many spawn points there are.