Currently Posted March 22, 2013 Group: Members Topic Count: 162 Topics Per Day: 0.03 Content Count: 313 Reputation: 1 Joined: 01/22/12 Last Seen: November 17, 2023 Share Posted March 22, 2013 lunar01,219,180,4 script Dreamworks Coins 807,5,5,{ makeitem 1022, 10, "lunar01", rand(214, 217),rand(177,184); end; OnTouch: makeitem 1022, 10, "lunar01", rand(214, 217),rand(177,184); end; } How to enable a 1 second delay before the player can click again to prevent spamming or flood? Quote Link to comment Share on other sites More sharing options...
Capuche Posted March 22, 2013 Group: Developer Topic Count: 10 Topics Per Day: 0.00 Content Count: 2407 Reputation: 616 Joined: 07/05/12 Last Seen: March 20 Share Posted March 22, 2013 (edited) Little optimized lunar01,219,180,4 script Dreamworks Coins 807,5,5,{ OnTouch: if ( @HD > gettimetick(2) ) end; makeitem 1022, 10, "lunar01", rand(214, 217),rand(177,184); set .@Delay,1; // In Seconds if ( .@Delay ) set @HD, gettimetick(2)+.@Delay; end; } or lunar01,219,180,4 script Dreamworks Coins 807,5,5,{ OnTouch: if ( @delay_item ) end; @delay_item = 1; makeitem 1022, 10, "lunar01", rand(214, 217),rand(177,184); sleep2 1000; // 1000 = 1 sec of delay @delay_item = 0; // automatically reset the variable end; } Edited March 22, 2013 by Capuche 1 Quote Link to comment Share on other sites More sharing options...
Emistry Posted March 22, 2013 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10017 Reputation: 2369 Joined: 10/28/11 Last Seen: 5 hours ago Share Posted March 22, 2013 like this ? sleep2 1000; makeitem......... 1 Quote Link to comment Share on other sites More sharing options...
leertaste Posted March 22, 2013 Group: Members Topic Count: 41 Topics Per Day: 0.01 Content Count: 137 Reputation: 1 Joined: 02/02/13 Last Seen: July 18, 2019 Share Posted March 22, 2013 (edited) nar01,219,180,4 script Dreamworks Coins 807,5,5,{ if(gettimetick(2) < #delay) { mes "you have to wait a minute."; close; makeitem 1022, 10, "lunar01", rand(214, 217),rand(177,184); set #delay,gettimetick(2) + 60; end; OnTouch: makeitem 1022, 10, "lunar01", rand(214, 217),rand(177,184); set #delay,gettimetick(2) + 60; end; } EDIT: oh you wanted just a second... so sir emistry is right^^ Edited March 22, 2013 by leertaste 1 Quote Link to comment Share on other sites More sharing options...
Currently Posted March 22, 2013 Group: Members Topic Count: 162 Topics Per Day: 0.03 Content Count: 313 Reputation: 1 Joined: 01/22/12 Last Seen: November 17, 2023 Author Share Posted March 22, 2013 I tried sleep, but when I still keep clicking it. After the second sleep it kept spawning after. Quote Link to comment Share on other sites More sharing options...
Bipolar Bear Posted March 22, 2013 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 12 Reputation: 1 Joined: 03/22/13 Last Seen: July 18, 2013 Share Posted March 22, 2013 (edited) lunar01,219,180,4 script Dreamworks Coins 807,5,5,{ set .@Delay,1; // In Seconds if (@HD > gettimetick(2)) end; makeitem 1022, 10, "lunar01", rand(214, 217),rand(177,184); end; OnTouch: makeitem 1022, 10, "lunar01", rand(214, 217),rand(177,184); if (.@Delay) set @HD, gettimetick(2)+.@Delay; end; } Edited March 22, 2013 by Bipolar Bear 1 Quote Link to comment Share on other sites More sharing options...
Currently Posted March 22, 2013 Group: Members Topic Count: 162 Topics Per Day: 0.03 Content Count: 313 Reputation: 1 Joined: 01/22/12 Last Seen: November 17, 2023 Author Share Posted March 22, 2013 Just to ask, what's the @HD on this script for? Quote Link to comment Share on other sites More sharing options...
nanakiwurtz Posted March 22, 2013 Group: Members Topic Count: 81 Topics Per Day: 0.02 Content Count: 1654 Reputation: 583 Joined: 08/09/12 Last Seen: January 14, 2020 Share Posted March 22, 2013 It's just a temporary variable that is attached to your character. Quote Link to comment Share on other sites More sharing options...
Currently Posted March 23, 2013 Group: Members Topic Count: 162 Topics Per Day: 0.03 Content Count: 313 Reputation: 1 Joined: 01/22/12 Last Seen: November 17, 2023 Author Share Posted March 23, 2013 Little optimized lunar01,219,180,4 script Dreamworks Coins 807,5,5,{ OnTouch: if ( @HD > gettimetick(2) ) end; makeitem 1022, 10, "lunar01", rand(214, 217),rand(177,184); set .@Delay,1; // In Seconds if ( .@Delay ) set @HD, gettimetick(2)+.@Delay; end; } or lunar01,219,180,4 script Dreamworks Coins 807,5,5,{ OnTouch: if ( @delay_item ) end; @delay_item = 1; makeitem 1022, 10, "lunar01", rand(214, 217),rand(177,184); sleep2 1000; // 1000 = 1 sec of delay @delay_item = 0; // automatically reset the variable end; } Thank you! Works like a charm! Quote Link to comment Share on other sites More sharing options...
Question
Currently
How to enable a 1 second delay before the player can click again to prevent spamming or flood?
Link to comment
Share on other sites
8 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.