ID:264677
 
Code:
        var/Exp = copytext(file2text(http["CONTENT"]),1,11)
src.Expiration=Exp
if(src.Expiration >= time2text(world.realtime, "DD-MM-YY"))
usr<<"Your Sub Expired o.o"
else
usr<<"Your Subscription Expires on [src.Expiration]"
usr<<"Current Day: [ReportDay(world.realtime)]"
return


Problem description: This Always Says "Your Sub Expired o.o" Any idea of how to fix it? o.O

You are storing the string in the wrong order. If the DD from the file is lower than the DD from world.realtime, then you're going to get the expired message, even if the month or year is higher.

You either need to change the format to YY-MM-DD or compare them differently.
In response to Garthor
Thanks.