Ok first,run any build or sed run. Check your version number in the start-up screen.
Or check the "version" engine var http://www.conitec.net/beta/aversion.htm
Makes sure your engine version.
Code:
STRING* str_show_v="";
TEXT={string(str_show_v);flags|= SHOW;}

function main()
{
......
str_for_num(str_show_v,version);
}



Next - there is issue with "file_date" it's a long that hold all second since 1/1970 till file creation - super stupid. I was unable to use it to find the actual file creation date and have conversion errors with the long'

Totally untested and guess code, check also the math in second conversions
Code:
var total=0;
var years= sys_year-1970; 
var month=sys_months
var day=sys_day; 
day=day*86400:
month=month*2592000;
year=year*31104000;
total=(year+month+day)-file_date; // ERROR var to long
// convert total back to hours or days
total/=86400;
//total should now be a var/fixed of days old the build is


Last edited by Malice; 10/28/15 05:50.