Either it doesn’t exist or I am just really awful at looking stuff up tonight, but is there a command to get an absolute value in choicescript?
thanks for your time.
Either it doesn’t exist or I am just really awful at looking stuff up tonight, but is there a command to get an absolute value in choicescript?
thanks for your time.
There isn’t. But there’s a quick fix.
*if (var < 0)
*set var (var * "-1")
thank you