Rak_Bibi
(Rak_Bibi)
June 26, 2024, 4:14pm
1
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 ?
Mineblo
(Mineblo)
June 26, 2024, 4:18pm
2
Can you take a picture of your code? and how the winning function works?
Mineblo
(Mineblo)
June 26, 2024, 4:25pm
3
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)
Rak_Bibi
(Rak_Bibi)
June 29, 2024, 10:53pm
4
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
system
(system)
Closed
July 29, 2024, 10:53pm
5
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.