Changed folder name.

Changed folder name.
This commit is contained in:
Jaysyn904
2022-10-07 21:08:37 -04:00
parent 1c33c2843e
commit 8d97886c3f
7060 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
//Script Name: time_template
//////////////////////////////////////////
//Created By: Genisys (Guile)
//Created On: 8/16/08
/////////////////////////////////////////
/*
Please see the "time_tutorial" script
for instructions on how to utlize
the intergals below in scripts.
*/
////////////////////////////////////////
void main()
{
//////////////CURRENT REAL TIME VARIABLE DEFINITIONS/////////////////
//Total # of heartbeats (6 seconds) since the module has started..
int nMT = GetLocalInt(GetObjectByTag("timekeeper"), "moduletime");
//Current time that has passed by since the module started..
int nHr = GetLocalInt(GetObjectByTag("timekeeper"), "MODHR");
int nMin = GetLocalInt(GetObjectByTag("timekeeper"), "MODMIN");
int nSec = GetLocalInt(GetObjectByTag("timekeeper"), "MODSEC");
int nTotalSec = nMT*6; //(Total Time Passed In Seconds)
int nTotalMin = nTotalSec/60; //(Total Time Passed In Minutes)
///////////////////////////////////////////////////////////////////
//Declare your Major Variables here...
///////////////////////////////////////////////////////////////////
//Enter your Script's Main Functions Here
}