16 lines
288 B
Markdown
16 lines
288 B
Markdown
### Function: GetLevel(spawn)
|
|
|
|
**Description:**
|
|
Gets the current level of the spawn (not effective level).
|
|
|
|
**Parameters:**
|
|
- `spawn` (Spawn) - Spawn object representing `spawn`.
|
|
|
|
**Returns:** UInt32 value of the Spawn's level.
|
|
|
|
**Example:**
|
|
|
|
```lua
|
|
local level = GetLevel(Player)
|
|
```
|