Table of Contents

Struct SceneData

Namespace
FishMMO.Database.Data
Assembly
FishMMO-DB.dll

Scene data transfer object.

public struct SceneData
Inherited Members

Constructors

SceneData(long, long, long, string, int, int, int, long, int, DateTime, long, int, bool)

public SceneData(long id, long sceneServerID, long worldServerID, string sceneName, int sceneHandle, int sceneStatus, int sceneType, long characterID, int characterCount, DateTime timeCreated, long partyID = 0, int difficulty = 0, bool isPrivate = false)

Parameters

id long
sceneServerID long
worldServerID long
sceneName string
sceneHandle int
sceneStatus int
sceneType int
characterID long
characterCount int
timeCreated DateTime
partyID long
difficulty int
isPrivate bool

Fields

CharacterCount

Number of characters in the scene.

public readonly int CharacterCount

Field Value

int

CharacterID

Currently occupying character ID.

public readonly long CharacterID

Field Value

long

Difficulty

Difficulty index into the dungeon's own difficulty list.

public readonly int Difficulty

Field Value

int

ID

Primary key.

public readonly long ID

Field Value

long

IsPrivate

True when the owning party has hidden this instance from the dungeon finder.

public readonly bool IsPrivate

Field Value

bool

PartyID

Party that owns this instance, or 0 when an ungrouped character opened it.

public readonly long PartyID

Field Value

long

SceneHandle

Scene handle identifier.

public readonly int SceneHandle

Field Value

int

SceneName

Scene name.

public readonly string SceneName

Field Value

string

SceneServerID

Scene server hosting this scene.

public readonly long SceneServerID

Field Value

long

SceneStatus

Scene status flag.

public readonly int SceneStatus

Field Value

int

SceneType

Scene type identifier.

public readonly int SceneType

Field Value

int

TimeCreated

Timestamp when scene was created.

public readonly DateTime TimeCreated

Field Value

DateTime

WorldServerID

World server this scene belongs to.

public readonly long WorldServerID

Field Value

long