Overview
The Earth Sprite is a Device in Fortnite: Creative.
All Settings
All Settings[]
All default values have been Bolded.
| Option | Value | Description |
|---|---|---|
| Enabled at Game Start | Yes, No | Determines if this device is enabled when the match starts. When disabled the Sprite appears dormant, and noninteractable by all players. |
| Grant Timer | 10.0s, 1.0s - 60.0s | Determines the amount of time that it takes for the Earth Sprite to spit out a new item after having consumed a weapon. |
| Item List | 0 Array elements, Add Element | The list of items associated with this device/trap |
| Usable by Team | Any, Team 1 - Team 100 | Determines which Team can interact with the device. If not set to Any, this can be reverse by Invert Team Selection. |
| Invert Team Selection | No, Yes | If set to Yes, the selected Team is the only Team that cannot activate the device. |
| Usable by Class | Any, No Class, Class 1 - Class 254 | Determines which Class can interact with the device. This can be reverse by Invert Class Selection. |
| Invert Class Selection | No, Yes | If set to Yes, the selected Class is the only Class that cannot activate the device. |
| Visible During Game | Yes, No | Determines whether the Sprite will be visible. |
| Item Granting | Yes, No | Determines if the Sprite should grant an item after the timer completes. |
| Trade Limit | 1, 0 - 2,147,483,648 | Determines how many times the device can make a trade before the Sprite disables. |
| Add to Global Count | Yes, No | No: The Sprite will individually track trades with each player. Yes: When a player trades with the Sprite, the trade will increment the player's trade count with all Sprites in the island. |
| Override Label Text | Blank, { Custom Text } | Overrides the label over the Sprite. |
| Override Welcome Text | Blank, { Custom Text } | Overrides the welcome text the Sprite displays during the conversation. |
| Override Success Text | Blank, { Custom Text } | Overrides the Success text the Sprite displays during the conversation. |
| Override Deny Text | Blank, { Custom Text } | Overrides the Deny text the Sprite displays during the conversation. |
Functions and Events
Functions and Events[]
| Option | Description |
|---|---|
| Enable When Receiving From | Enables the Sprite, and resets all trade counts the Sprite is tracking. |
| Disable When Receiving From | Disables the Sprite making it appear dormant, and noninteractable by all players. |
| Enable Item Granting When Receiving From | Enables the device's ability to grant items. |
| Disable Item Granting When Receiving From | Disables the device's ability to grant items. Can still interact and consume weapons. |
| Hide When Receiving From | Makes the Earth Sprite invisible. |
| Show When Receiving From | Makes the Earth Sprite visible. |
| Enable Trading for Player When Receiving From | Allows a player to trade, and will reset the player's trade count for this Sprite |
| Disable Trading for Player When Receiving From | Prevents the player from trading. |
| Option | Description |
|---|---|
| On Consume Weapon Send Event To | Sends an event when a player gives the Earth Sprite a weapon. |
| On Grant Timer Completed Send Event To | Sends an event when the grant timer has completed. |
This device can be found in Content Browser in the following path: /All/Fortnite/Devices/Item
earth_sprite_device class
earth_sprite_device class[]
using { /Fortnite.com/Devices }
| Inheriting | Description |
|---|---|
creative_object
|
Base class for creative devices and props. |
creative_device_base
|
Base class for creative_device.
|
| Event Function | Type |
|---|---|
WeaponConsumedEvent
|
listenable(?agent)
|
GrantTimerCompletedEvent
|
listenable(?agent)
|
| Function | Parameters | Description |
|---|---|---|
Enable
|
Enable the device, and resets all trade counts the Sprite is tracking. | |
Disable
|
Disables this device. | |
IsEnabled
|
Succeeds if the device is enabled, fails if it's disabled. | |
EnableItemGranting
|
Enable the device’s ability to grant items. | |
DisableItemGranting
|
Disable the device’s ability to grant items. Can still interact and consume weapons. | |
Hide
|
Makes the Earth Sprite invisible. | |
Show
|
Makes the Earth Sprite visible. | |
EnableTradingForPlayer
|
Allows a agent to trade, and will reset the agent's trade count for this Sprite.
| |
DisableTradingForPlayer
|
Prevents the agent from trading.
|