Is there a way to check the current value of a variable?Running that on the console dumps out all variables. A lot of those are useless to us as they're for the ui or other pieces, but the lists usually short enough you can look through it. plus if you have a rough idea of what you're looking for, you can do a search on it too, likeCode:dir()
Would have reported ['r_relationastrid', 'r_metastrid', 'r_mindconastrid']Code:[x for x in dir() if 'astrid' in x]