Transfering script from al client

Post Reply
syrik
Posts: 90
Joined: Sat Jun 26, 2010 9:57 pm

Transfering script from al client

Post by syrik »

it is just a basic tick timer. Anyway, here it is:

#alias {RegularTickAlias} {#print TICK IN 5 SECONDS;#delay RegularTickTimer TickLength -1 #print TICK IN 5 SECONDS (+/- drift)};
#alias {ResetTick} {#undelay RegularTickTimer;#undelay FirstTickTimer;#delay FirstTickTimer ShortTick RegularTickAlias};
#alias {Tick} {#set TickLength %1;#set ShortTick = TickLength - 5};
#hotkey {f1} {ResetTick};
#ignore Delay entry added.;
#ignore Removed delay key: tick;
#variable {ShortTick} {55};
#variable {TickLength} {60};
#action {Autosave complete.}{ResetTick};
#action {Shadows lengthen as the sun dips out of sight}{ResetTick};
#action {The day has begun.}{ResetTick};
#action {The night has begun.}{ResetTick};
#action {The sun rises}{ResetTick};
#action {The sun slowly disappears}{ResetTick};

Post Reply