ID:154914
 
mob/var/tmp/blah


A temporary variable?

Aren't they temporary regardless if its only run specificaly in a proc? I've never had any problems without using tmp. Is there any reason why it can be useful?
By default, temporary variables are not saved in savefiles during the datum/Write() operation. Often times, you would use this to prevent accidentally saving other objects with a player (such as a 'target' mob that the player was attacking, or a turf that represents the player's spawn location, or a list of other players in their team, ect)

In the future, the reference is a good place to start for answers to these types of questions.
In response to DarkCampainger
"In the future, the reference is a good place to start for answers to these types of questions."

Actually I had looked there, but savefiles are another place of infamiliar territory for me, and I think you actually graciously answered some of my questions regarding savefiles.

Anyways thanks!