--得到星座 function DataCenter_Setting:GetConstellation(month, day)local dataInfo = {121, 220, 321, 421, 522, 622, 723, 824, 924, 1024, 1123, 1222}local Constellations = {"水瓶", "雙魚", "白羊", "金牛", "雙子", "巨蟹", "獅子", "處女", "天秤", "天蝎", "射手", "摩羯"}local birth = 100*month+date; for i=12, 1, -1 doif birth > dataInfo[i] thenreturn Constellations[i]endendreturn "摩羯" end
?