Hey hey, im back, im trying to give characters specific ammo amounts (for example im trying to give soldier 60 ammo but can with the % on custom games) is there a code that allows me to set an ammo amount for each individual character?
Just to make sure, you’re aware that you can adjust things like ammunition specific to certain Heroes, right ?
Settings > Heroes > “Pick the Hero you’d like to modify”
Anyway if you wan’t to do the whole thing with Workshop script (which uselessly increases server load)
rule("Soldier Ammunition")
{
event
{
Ongoing - Each Player;
All;
Soldier: 76;
}
conditions
{
Has Spawned(Event Player) == True;
}
actions
{
Set Max Ammo(Event Player, 0, 60);
Set Ammo(Event Player, 0, 60);
}
}
is what you’re looking for.
Thank you so much!!!