mhielo12 Posted August 3, 2021 Group: Members Topic Count: 23 Topics Per Day: 0.01 Content Count: 114 Reputation: 4 Joined: 08/28/14 Last Seen: April 26 Share Posted August 3, 2021 Hi can I make a request regarding Hourly System but the change was an item needs to be equip before the hourly count starts. Equip = Hat Makes Hourly countdown starts UN equip = Hat Makes Hourly Countdown stop AFK/VENDING/CHATTING will also makes the countdown stop Quote Link to comment Share on other sites More sharing options...
0 Easycore Posted September 5, 2021 Group: Members Topic Count: 36 Topics Per Day: 0.01 Content Count: 220 Reputation: 258 Joined: 04/08/13 Last Seen: August 24, 2023 Share Posted September 5, 2021 Post the Hourly System Reward script that you want to modify. Quote Link to comment Share on other sites More sharing options...
0 Emistry Posted September 16, 2021 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2371 Joined: 10/28/11 Last Seen: Thursday at 02:49 PM Share Posted September 16, 2021 EquipScript: | addtimer (60 * 1000), "Sample::OnUpdate"; UnEquipScript: | deltimer "Sample::OnUpdate"; - script Sample -1,{ OnUpdate: if (checkvending()) { dispbottom "Hourly Point stopped due to vending."; } else if (checkchatting()) { dispbottom "Hourly Point stopped due to chatroom."; } else if (checkidle() >= 60) { // idled for 60 seconds dispbottom "Hourly Point stopped due to idle."; } else { #hourly_point_duration++; if (#hourly_point_duration >= 60) { #hourly_point++; dispbottom "Hourly Point +1. Total "+#hourly_point+" Points."; } addtimer (60 * 1000), strnpcinfo(3)+"::OnSample"; } end; } 1 Quote Link to comment Share on other sites More sharing options...
Question
mhielo12
Hi can I make a request regarding Hourly System but the change was an item needs to be equip before the hourly count starts.
Equip = Hat
Makes Hourly countdown starts
UN equip = Hat
Makes Hourly Countdown stop
AFK/VENDING/CHATTING will also makes the countdown stop
Link to comment
Share on other sites
2 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.