Frozek Posted January 26, 2022 Group: Members Topic Count: 20 Topics Per Day: 0.01 Content Count: 37 Reputation: 0 Joined: 10/30/18 Last Seen: May 4, 2024 Share Posted January 26, 2022 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. Quote Link to comment Share on other sites More sharing options...
1 Emistry Posted March 6, 2022 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: Yesterday at 01:10 PM Share Posted March 6, 2022 - 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. 1 1 Quote Link to comment Share on other sites More sharing options...
0 Fluxion Posted February 13, 2022 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 83 Reputation: 7 Joined: 12/29/18 Last Seen: Sunday at 04:10 PM Share Posted February 13, 2022 Maybe this can help you https://github.com/rathena/rathena/pull/5112 Quote Link to comment Share on other sites More sharing options...
0 Frozek Posted March 16, 2022 Group: Members Topic Count: 20 Topics Per Day: 0.01 Content Count: 37 Reputation: 0 Joined: 10/30/18 Last Seen: May 4, 2024 Author Share Posted March 16, 2022 thank you everyone Quote Link to comment Share on other sites More sharing options...
0 zeusc137 Posted October 14, 2024 Group: Members Topic Count: 9 Topics Per Day: 0.01 Content Count: 105 Reputation: 7 Joined: 04/11/22 Last Seen: Sunday at 01:22 AM Share Posted October 14, 2024 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! Quote Link to comment Share on other sites More sharing options...
Question
Frozek
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
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.