WildStar:API GameLib GetLocalTime: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(Added an example GetLocalTime response)
 
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
Example:
{{\|uiapi}}


{
== Example ==
 
<pre>
  nDay = 1,
{
 
  nDay = 1,
  nDayOfWeek = 2,
  nDayOfWeek = 2,
 
  nHour = 9,
  nHour = 9,
  nMinute = 42,
 
  nMonth = 9,
  nMinute = 42,
  nSecond = 51,
 
  nYear = 2014,
  nMonth = 9,
  strFormattedTime = "9:42:51 AM"
 
}
  nSecond = 51,
</pre>
 
  nYear = 2014,
 
  strFormattedTime = "9:42:51 AM"
 
}

Latest revision as of 06:06, 10 August 2023

UI API < GameLib.GetLocalTime

Example[edit]

 {
   nDay = 1,
   nDayOfWeek = 2,
   nHour = 9,
   nMinute = 42,
   nMonth = 9,
   nSecond = 51,
   nYear = 2014,
   strFormattedTime = "9:42:51 AM"
 }