9 lines
234 B
Plaintext
9 lines
234 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oModule = GetModule();
|
||
|
int nDecrement = GetLocalInt(oModule, "ReloadTime") -1;
|
||
|
SetLocalInt(GetModule(), "ReloadTime", nDecrement);
|
||
|
ActionSpeakString("Server Reboot rolled back one autosave.", TALKVOLUME_TALK);
|
||
|
|
||
|
}
|