Files
Paradise/code/game/events/Event.dm
2012-01-02 21:48:42 -07:00

20 lines
216 B
Plaintext

/datum/event
var/Lifetime = 0
var/ActiveFor = 0
New()
..()
if(!Lifetime)
Lifetime = rand(30, 120)
proc
Announce()
Tick()
Die()
LongTerm()
LongTermEvent = ActiveEvent
ActiveEvent = null