mob/proc
Season()
if(time2text(world.realtime,"MM"==11))
src<<"The current season is: Fall."
if(time2text(world.realtime,"MM"==12))
src<<"The current season is: Winter."
Problem description:
Ok so this proc is supposed to name the current season like if it's november it would tell you it's fall and if it's december it would tell you it's winter, when I log in it tells me "The current season is: Fall. The current season is: Winter." Please help.
Also comparing a text string to a number isn't going to work. You need to compare text strings to text strings.