PlayerTypes enum distinguishes between different types of players found in Fortnite replay files. This is essential for filtering and analyzing player eliminations and interactions.
Enum Values
Bot
Represents an AI bot player.- Value:
0x03 - Description: Standard AI-controlled bot without a specific name
- Use case: Identifying bot eliminations, filtering out bot interactions
NamedBot
Represents a named AI bot player.- Value:
0x10 - Description: AI-controlled bot with a generated name (looks like a real player)
- Use case: Distinguishing named bots from actual players
Player
Represents a real human player.- Value:
0x11 - Description: Actual human player in the match
- Use case: Identifying real player interactions and eliminations
Usage Example
Filtering Examples
Count Real Player Eliminations Only
Separate Bot and Player Stats
Filter Out All Bot Interactions
Identify Named Bots
Understanding Bot Types
Bot (0x03)
- Traditional AI bots
- Usually have generic or no names
- Easier to identify as non-human
- Common in lower-skilled lobbies
NamedBot (0x10)
- More sophisticated bot representation
- Given realistic player names
- Can be mistaken for real players without type checking
- Introduced in later Fortnite seasons
Player (0x11)
- Confirmed human players
- Authenticated Epic Games accounts
- Real competitive interactions
Practical Applications
Competitive Analysis
Bot Detection Report
Skill-Based Matchmaking Analysis
Type Values Reference
| Type | Hex Value | Decimal | Description |
|---|---|---|---|
| Bot | 0x03 | 3 | Standard AI bot |
| NamedBot | 0x10 | 16 | Named AI bot |
| Player | 0x11 | 17 | Human player |