How can I pull the information from a get_property, and then display it in a print("");?
IE:
else if (get_property("_spacegateTurnsLeft") >= 20)
{ print ("your space gate is open, and you have " + spacegateTurnsLeft + " turns left"); }
Assign it to a variable. For example,
		Code:
	
	    int turns;
    turns = to_int(get_property("_spacegateTurnsLeft"));
    if (turns >= 20)
            {    
              print ("your space gate is open, and you have " + turns +" turns left.");
        }