Very quick question, which I believe should have an easy answer if it's possible.
Code:
sub EVENT_DEATH {
quest::setglobal(aten,1,3,"H108");
}
If I instead wanted that variable above to last forever, I would change "H108" to "F". That's easy. What if I wanted to have it write a timestamp to the database for when the event actually occurred? I guess the first question is, is there a perl value that accomplishes that? Substitute $timestamp or an equivalent? And the second is, since I wouldn't want to put that in the expiration field, is the value field big enough to hold it?
Just looking for an idea on how this might be done. Appreciate any suggestions.