anyone have a code with a rule that gives me ult straight after using it
Not sure if it is that you want but I will try
Code
rule("Start ultimate ..")
{
event
{
Ongoing - Each Player;
All;
All;
}
actions
{
Set Ultimate Charge(Event Player, 100);
Wait(0.100, Ignore Condition);
Press Button(Event Player, Ultimate);
}
}
More info about me and my game mods you can find here.
rule("Rule 1")
{
event
{
Ongoing - Each Player;
All;
All;
}
conditions
{
Is Using Ultimate(Event Player) == False;
}
actions
{
Set Ultimate Charge(Event Player, 100);
}
}