NAME
SetAstroType Set the type of Astrology, at script level (do not overwrite proastro setting). Astrology type is fixed (Hindu) or movable (Occidental) Astrology.
USAGE
SetAstroType astrotype
PARAMETERS
astrotype is 0 (fixed) or 1 (movable)
RETURN
none
OPTIONS
None
EXAMPLE
#SetAstroType set astrotype [GetAstroType] PutTxt "Old astrology type is $astrotype" if { $astrotype == 1 } { SetAstroType 0 } else { SetAstroType 1 } PutTxt "New astrology type is [GetAstroType]"
Output:
Old astrology type is 0 New astrology type is 1