Subscription in Developer Help
|
|
Code:
mob proc SUBS() set category="Debug"
var/http[]=world.Export("http://paygamez.angelfire.com/Subscribers.txt") var/F=http["CONTENT"] if(F) var/FX=html_encode(file2text(F)) var/key=copytext(FX,1,findtext(FX,"/")) var/date=copytext(FX,findtext(FX,"/")+1) var/expdate=date Keys+=key
var/time = time2text(world.realtime, "DD-MM-YY")
if(time <= date&&usr.key==key) src<<time2text(world.realtime,"DD-MM-YY") usr<<"You are Subscribed" else usr<<"You are not Subscribed to Pay Gamez"
|
Problem description:I cant make it work it was suppose to output wherever if the player is subscribed or not but it always output "you are not subscribed" plz help
|