Jump to content
  • 0
Frozek

Instance Reset Time

Question

Hello guys, as you all know the pattern of some instances are to reset after a certain time, I would like to leave it and fixed reset to 00:00 hours, I don't want to change anything in the instances just the time it will reset.

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0
-	script	sample	-1,{
	OnInit:
		setarray .map$, "prontera", "izlude";
		.map_size = getarraysize(.map$);
		end;
		
	OnHour00:
		for ([email protected] = 0; [email protected] < .map_size; [email protected]++) {
			[email protected] = instance_list(.map$[[email protected]]);
			for ([email protected] = 0; [email protected] < [email protected]; [email protected]++) {
				instance_announce [email protected]_list[[email protected]], "<SYSTEM> Instance are destroyed upon reached 12AM everyday.", bc_map;
				instance_destroy [email protected]_list[[email protected]]);
			}
		}
		end;
}

required the Pull: 5112 mentioned above.

  • Love 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.