Welcome to the Creatures Wiki! Log in and join the community.

HIST DATE

From Creatures Wiki
Jump to navigation Jump to search

HIST DATE is a CAOS command that returns the in-game day of a given world tick.

Usage[edit]

Syntax: HIST DATE world_tick(integer)

Returns the day that it was at world_tick.

Example[edit]

The Creature History script displays the real-world time that life events happened by default, but using HIST WTIK to retrieve the world tick, along with HIST DATE, HIST SEAN, and HIST YEAR, it can display the in-game time of events instead:

*where ov01 is the creature's moniker and va00 is a given life event in a loop
doif game "c3_after_shee_dates" eq 0
	...
else
	*obtain world tick of the event
	setv va50 hist wtik ov01 va00
	*get date of that world tick
	setv va51 hist date va50
	addv va51 1
	sets va10 vtos va51
	adds va10 " "
	*get season of that world tick
	adds va10 read "creature_history_seasons" hist sean va50
	adds va10 " "
	*get year of that world tick
	setv va51 hist year va50
	addv va51 127
	adds va10 vtos va51
endi
ptxt va10

See also[edit]