Help Grant weapon to all players at the start of each round ?

Hi guys Im new to programming I created a voting loadout system with verse following Warforge tutorial (this guy is the best btw) https://www.youtube.com/watch?v=TnUm9poP5ds&t=847s

Is there a way to Grant the winning LOADOUT to all players at the start of each round ?

Can you take a picture of your code? and how the winning function works?

I’d recommend having an array of all the item granters which you set to the winning ones in whatever function decides that

var WinningLoadout : []item_granter_device = array{}

Then to give them assuming you have an array with players you can do this

for(Player:Players):
     for(ItemGranter:WinningLoadout):
           ItemGranter.GrantItem(Player)

sorry for the delay.
I tried using verse but my lack of experience was to much for me so i found a way to do with without code using class selector.
Thanks for the help

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.