In Clonk Rage we could use in script: Func ControlLeftDouble(), Func ControlRightDouble, Func ControlDownDouble, Func ControlUpDouble, but in openclonk it is not working.
The Func ControlLeft() are Working, but control double no.
We can't press the button in a double in openclonk?
Someone to help me about it?
The Func ControlLeft() are Working, but control double no.
We can't press the button in a double in openclonk?
Someone to help me about it?

If you really need the Control*Double commands, you can build them yourself. I can help you with that if you want
A Control Double for a run command, or a double jump, could be good.
Helpe me, Please.
Helpe me, Please.

When the function is called again and you already have that effect on you, you know that the function is pressed the second time.
func ControlLeft()
{
if (GetEffect("IntControlLeftDouble", this))
{
RemoveEffect("IntControlLeftDouble", this);
return ControlLeftDouble();
}
AddEffect("IntControlLeftDouble", this, 1, 15);
// ... more code
}
func ControlLeftDouble()
{
// .. code!
}
Powered by mwForum 2.29.7 © 1999-2015 Markus Wichitill