The title basically says it all, I am new to programming or the simplified programming from the workshop, I want to recreate ana’s old nano boost, can someone help me?
I have a fully functional nano speed boost in one of my workshop projects.
I don’t know if you want me to just share it with you or walk you through it but I’ll give you the rundown in case you wanna try it yourself.
All you need is a single rule.
Event: Ongoing - Each player
Team - All
Player - ANA
For condition you have to make sure that the rule only runs if Ana is using her ultimate.
For Actions
You have to make the teammate closest to Ana’s reticle the target for the rule
You have to increase the move speed to 130%
You have to put in a wait timer for the duration of nano boost.
You have to decrease the move speed down to 100%
If you need more help or just want me to post the rule, just ask.
As Flik pointed out
rule(“Ana Speed Boost”)
{
event
{
Ongoing - Each Player;
All;
Ana;
}
conditions
{
Is Using Ultimate(Event Player) == True;
}
actions
{
Set Player Variable(Event Player, A, Player Closest To Reticle(Event Player, Team Of(Event Player)));
Set Move Speed(Player Variable(Event Player, A), 130);
Wait(8, Ignore Condition);
Set Move Speed(Player Variable(Event Player, A), 100);
}
}