Hello, i have made a mode where i need to set the cooldown for ability1 , ability2 , Secondaryfire 50 % lower. I dont now how to do this ingame. I want it so that i can set it so like in total mayhem and set it later back to normal.
you could always go to Settings > Heroes > Left Top Option > General > then set the ability cooldowns to 50%
I want it ingame and then for only one person
if that’s the case then you’ll have to do it the workshop way but you’d have to use the divide action after “set ability cooldown”
i can do it for you if you want
Yeah would be nice ^^
1 Like
can you explain more of how you want it to work?
I want it so that if eventplayer.variable == …
Then change the cooldown of the event player to 50 % less (so like total mayhem settings for only the event player)
im sorry but this is out of my knowledge, though Teawy’s way should work perfectly
rule("Rule 1")
{
event
{
Ongoing - Each Player;
All;
All;
}
conditions
{
Event Player.A == True;
Ability Cooldown(Event Player, Button(Secondary Fire)) != Null;
}
actions
{
Set Ability Cooldown(Event Player, Button(Secondary Fire), Ability Cooldown(Event Player, Button(Secondary Fire)) * 0.500);
}
}
rule("Rule 2")
{
event
{
Ongoing - Each Player;
All;
All;
}
conditions
{
Event Player.A == True;
Ability Cooldown(Event Player, Button(Crouch)) != Null;
}
actions
{
Set Ability Cooldown(Event Player, Button(Crouch), Ability Cooldown(Event Player, Button(Crouch)) * 0.500);
}
}
rule("Rule 3")
{
event
{
Ongoing - Each Player;
All;
All;
}
conditions
{
Event Player.A == True;
Ability Cooldown(Event Player, Button(Ability 1)) != Null;
}
actions
{
Set Ability Cooldown(Event Player, Button(Ability 1), Ability Cooldown(Event Player, Button(Ability 1)) * 0.500);
}
}
rule("Rule 4")
{
event
{
Ongoing - Each Player;
All;
All;
}
conditions
{
Event Player.A == True;
Ability Cooldown(Event Player, Button(Ability 2)) != Null;
}
actions
{
Set Ability Cooldown(Event Player, Button(Ability 2), Ability Cooldown(Event Player, Button(Ability 2)) * 0.500);
}
}
3 Likes
Thank you so much <3
1 Like