1
2
3
4
2
3
4
on:use {
ride;
maxhealth "unit",1,110;
}
but how do I make it so that it goes back down when you get off the wagon?
on:use {
ride;
maxhealth "unit",1,110;
}
$bla=riding();
getoff;
on:getoff { ... }
on:riding {
maxhealth "unit",1,110;
}
on:getoff {
maxhealth "unit",1,100;
}