Jump to content
  • 0

Instance Reset Time


Question

Posted

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.

4 answers to this question

Recommended Posts

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

required the Pull: 5112 mentioned above.

  • Love 1
  • MVP 1
  • 0
Posted
On 3/6/2022 at 8:11 AM, Emistry said:
-	script	sample	-1,{
	OnInit:
		setarray .map$, "prontera", "izlude";
		.map_size = getarraysize(.map$);
		end;
		
	OnHour00:
		for (.@i = 0; .@i < .map_size; .@i++) {
			.@size = instance_list(.map$[.@i]);
			for (.@x = 0; .@x < .@size; .@x++) {
				instance_announce .@instance_list[.@x], "<SYSTEM> Instance are destroyed upon reached 12AM everyday.", bc_map;
				instance_destroy .@instance_list[.@x]);
			}
		}
		end;
}

required the Pull: 5112 mentioned above.

I was considering creating a script with similar idea, but as I didn't know the existence of *instance_list* I would need to put manually all quest/instance IDs I wanted to destroy.

It is so good to search for other alternatives as soon as you got your own idea in mind, that's such a good approach!
 

Thank you for sharing this! ❤️ 

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...