Summary
I’ve been trying to get these snow spawners working for about a month now. They worked perfectly when I first set it up.. but now they’re just very inconsistent. Here is the verse code for the ‘snow_device’ that runs the whole game basically.
Just an explanation before you read all the code. I wanted to make a snowball fight and have the players grab ‘snowballs’ (rockets for the snowball launcher’ from the snow piles I put on the map. All that works great. Shout out to Cleverlike for showing me the beginnings of that in their FFA course. I expanded on it quite a bit but the snow piles work just fine (every once in a while I was still able to gather snow (interact with the invisible button device) after the snow pile disappeared but I haven’t experienced that in a while.) So the code here makes it snow for x seconds and there’s a short delay between the time it stops snowing and melts and starts snowing and forms done with spawns and sleeps. You can see all that in the ‘Snow()’ function definition.
using { /Fortnite.com/Devices }
using { /Verse.org/Simulation }
using { /UnrealEngine.com/Temporary/Diagnostics }
using { /UnrealEngine.com/Temporary/SpatialMath }
# using { VendingModule }
# See https://dev.epicgames.com/documentation/en-us/uefn/create-your-own-device-in-verse for how to create a verse device.
# A Verse-authored creative device that can be placed in a level
snow_device := class(creative_device):
@editable IN_Vending_Manager : vending_manager = vending_manager{}
@editable
SnowTime: float = 90.0
@editable
SnowMeltingTime: float = 5.0
@editable
SnowFormingTime: float = 7.0
@editable_number(float):
MinValue:=option{30.0}
SnowMeltedTime: float = 60.0
# Phase counter
var Phase: int = 1
# Messages to show when the snow is forming, snowing, melting, and melted
SnowFormingMessage<localizes>: message = "Snowpiles are forming!"
SnowMessage<localizes>: message = "Scoop some snow!"
SnowMeltingMessage<localizes>: message = "Snow is melting!"
SnowMeltedMessage<localizes>: message = "Snow is gone for now!"
@editable
HUD: hud_message_device = hud_message_device{}
# Arrays to store the buttons, piles, spawners, and vending machines
var SnowButtons : []button_device = array{}
var SnowPiles : []creative_prop = array{}
var SnowSpawners : []vfx_spawner_device = array{}
var Timers : []timer_device = array{}
var Billboards : []billboard_device = array{}
OnBegin<override>()<suspends>:void=
# Find all the buttons in the level that have the snowButton tag
FoundSpawners := FindCreativeObjectsWithTag(snowVFX{})
FoundButtons := FindCreativeObjectsWithTag(snowButton{})
FoundPiles := FindCreativeObjectsWithTag(snowPile{})
FoundTimersAndBillBoards := FindCreativeObjectsWithTag(SnowLaunchVendTimer{})
# Cast and populate Items
for (Item : FoundTimersAndBillBoards):
if (Timer := timer_device[Item]):
set Timers = Timers + array{Timer}
if (Billboard := billboard_device[Item]):
set Billboards = Billboards + array{Billboard}
Print("Found {Timers.Length} timers")
Print("Found {Billboards.Length} billboards")
for (Button : FoundButtons, CastedItem := button_device[Button]):
set SnowButtons = SnowButtons + array{CastedItem}
for (Pile : FoundPiles, CastedItem := creative_prop[Pile]):
set SnowPiles = SnowPiles + array{CastedItem}
for (Spawner : FoundSpawners, CastedItem := vfx_spawner_device[Spawner]):
set SnowSpawners = SnowSpawners + array{CastedItem}
# CastedItem.EffectEnabledEvent.Subscribe(EnableSnowButtons)
# CastedItem.EffectDisabledEvent.Subscribe(DisableSnowButtons)
# DEBUG: Print the number of buttons found
Print("Found {SnowButtons.Length} snow buttons")
Print("Found {SnowPiles.Length} snow piles")
Print("Found {SnowSpawners.Length} snow spawners")
Print("Phase: {Phase}.")
DisableSnowButtons()
DisableSnowSpawners()
spawn:
SnowPhase()
SnowPhase()<suspends>:void=
loop:
if (Phase <= 2):
ResetTimers(SnowTime+SnowMeltedTime)
else:
DestroyTimers()
Snow()
Melted()
# Cool Down functions
Snow()<suspends>:void=
EnableSnowSpawners()
spawn:
SnowForming()
Sleep(SnowTime)
DisableSnowSpawners()
spawn:
SnowMelting()
SnowForming()<suspends>:void=
HUD.Show(SnowFormingMessage, ?DisplayTime:=SnowFormingTime/2.0)
Sleep(SnowFormingTime)
EnableSnowButtons()
HUD.Show(SnowMessage, ?DisplayTime:=SnowTime/2.0)
SnowMelting()<suspends>:void=
HUD.Show(SnowMeltingMessage, ?DisplayTime:=SnowMeltingTime/2.0)
Sleep(SnowMeltingTime)
DisableSnowButtons()
HUD.Show(SnowMeltedMessage, ?DisplayTime:=SnowMeltedTime/2.0)
Melted()<suspends>:void=
Sleep(SnowMeltedTime)
if (Phase >= 1):
if (IN_Vending_Manager.SpawnVendingMachines[Phase]):
Print("Vending Machines Spawned")
else:
Print("Vending Machines Not Spawned")
set Phase += 1
Print("Phase: {Phase}.")
# Enable/Disable functions
EnableSnowSpawners():void=
for (Spawner : SnowSpawners):
Spawner.Enable()
Spawner.Restart()
Print("Snow spawner enabled")
DisableSnowSpawners():void=
for (Spawner : SnowSpawners):
Spawner.Disable()
Print("Snow spawner disabled")
EnableSnowButtons():void=
for (Button : SnowButtons):
Button.Enable()
for (SnowPile : SnowPiles):
SnowPile.Show()
DisableSnowButtons():void=
for (Button : SnowButtons):
Button.Disable()
for (SnowPile : SnowPiles):
SnowPile.Hide()
#Reset Timers
ResetTimers(Duration: float):void=
for (Timer : Timers):
Timer.ResetForAll()
Timer.SetMaxDuration(Duration)
Timer.StartForAll()
DestroyTimers():void=
for (Timer : Timers):
Timer.Disable()
if (IN_Vending_Manager.TeleportTimer[Timer]) {}
for (Billboard : Billboards):
Billboard.HideText()
The system is quite intricate and is supposed to be a part of the gameplay and make the world itself feel alive and dynamic.
Please select what you are reporting on:
Verse
What Type of Bug are you experiencing?
Devices
Steps to Reproduce
- Put a VFX spawner in the scene.
- Get a reference to it in verse
- Call the disable function.
Expected Result
The spawner will stop spawning.
Observed Result
The spawner doesn’t stop spawning… most of the time. Seems like after a few minutes it starts working sometimes but not always.. hard to say, it’s just not consistent. I thought I fixed it the other day. I reworked it a bunch but still not working as intended.
Platform(s)
Windows
Island Code
2116-3890-0280
Video
Additional Notes
is there something in my code, maybe the wave counter or something, that could make it so the snow spawners are only being disabled later in the game and not every time? It seems to work after a few minutes but it’s all very inconsistent (it never worked in the video, spoiler alert!).
Like I said, this used to work fine and here is an island code with it working: 9100-5450-0786 Which is from 2/10. I originally started working on it around 1/24. Today is 3/18. I’ve been at it for a while and have asked for help but no one can find an issue with the code.
P.S. Sorry for the weird cut in the video. Idk why it was like that. I realized halfway through and fixed it. But also the timing on the messages that pop up were a little off. I’ve updated the verse code and fixed that. What you see above is the fixed and newest version of the code. I probably won’t mess with it unless someone tells me a solution or where I’ve gone wrong. The spawners are still not listening though.
Thanks in advance for your help!