Kreustoo Posted July 4, 2020 Group: Members Topic Count: 34 Topics Per Day: 0.01 Content Count: 216 Reputation: 45 Joined: 05/03/13 Last Seen: March 9 Share Posted July 4, 2020 View File Click The Ninja How it works Every seconds some ninja will spawn (depending of the number of player on the map), the first to click on them will get a reward and will have to wait before being able to get another reward. To launch it, you can go it by hand or Auto start it with OnClockXXXX. The players will join using @ninja. Configuration You can edit the number of ninja, the timing between spawn, the delay between rewards ect. Follow the !!Modify With a small number of ninja spawning, only the fastest will get rewarded, if you spawn a lot of ninja, everybody will get a chance to have one! There's more information to help the configuration inside the npc. Submitter Kreustoo Submitted 07/04/2020 Category Games, Events, Quests Video https://www.youtube.com/watch?v=uT0cH-QgXLw Content Author Kreustoo Quote Link to comment Share on other sites More sharing options...
iraciz Posted August 9, 2020 Group: Members Topic Count: 140 Topics Per Day: 0.03 Content Count: 562 Reputation: 111 Joined: 10/05/12 Last Seen: February 12, 2024 Share Posted August 9, 2020 (edited) Awesome script, Need an announcement when the event is finished. like a map broadcast or something. Other issue is that, any gm can select launch the event and repet it dozen of times in a row and the events runs together.. Edited August 9, 2020 by iraciz Quote Link to comment Share on other sites More sharing options...
Kreustoo Posted August 9, 2020 Group: Members Topic Count: 34 Topics Per Day: 0.01 Content Count: 216 Reputation: 45 Joined: 05/03/13 Last Seen: March 9 Author Share Posted August 9, 2020 (edited) Hello, The npc says when the training is over (Line 69). You can change that to an announce if you want :). And for the gm, there's a .MinGMLevel value that you can edit to what you want, and yeah, there's no protection into breaking the npc launching it multiples time, but I don't put thoses kind of protection for the gm, I assume they know what they are doing. Edited August 9, 2020 by Kreustoo Quote Link to comment Share on other sites More sharing options...
iraciz Posted August 18, 2020 Group: Members Topic Count: 140 Topics Per Day: 0.03 Content Count: 562 Reputation: 111 Joined: 10/05/12 Last Seen: February 12, 2024 Share Posted August 18, 2020 Nice I still use it, by the way, there is a client side negative effect, somehow repeated clicking on the spawned npcs sometimes crashes the exe but not the server. Quote Link to comment Share on other sites More sharing options...
Kreustoo Posted August 18, 2020 Group: Members Topic Count: 34 Topics Per Day: 0.01 Content Count: 216 Reputation: 45 Joined: 05/03/13 Last Seen: March 9 Author Share Posted August 18, 2020 (edited) Oh, I think to prevent that you need to move the npc then disable it, I'll do a patch for this then. Thanks for the report! Edited August 18, 2020 by Kreustoo Quote Link to comment Share on other sites More sharing options...
iraciz Posted August 29, 2020 Group: Members Topic Count: 140 Topics Per Day: 0.03 Content Count: 562 Reputation: 111 Joined: 10/05/12 Last Seen: February 12, 2024 Share Posted August 29, 2020 Up to news.. player uses the event a lot Quote Link to comment Share on other sites More sharing options...
Kreustoo Posted August 29, 2020 Group: Members Topic Count: 34 Topics Per Day: 0.01 Content Count: 216 Reputation: 45 Joined: 05/03/13 Last Seen: March 9 Author Share Posted August 29, 2020 @iraciz @@ -125,7 +126,7 @@ prontera,149,150,4 script Ninja Click 637,{ //!!Modify!! Position end; } npctalk "Training Ninja: Damn! "+strcharinfo(0)+" got me!"; - disablenpc strnpcinfo(3); + hideonnpc strnpcinfo(3); for(.@i = 0;.@i< getarraysize(.Rewards);.@i =.@i +2){ getitem .Rewards[.@i],.Rewards[.@i+1]; } I relaunched the game to test and this little fix should fix the crash, tell me if it does the job or not Quote Link to comment Share on other sites More sharing options...
iraciz Posted August 29, 2020 Group: Members Topic Count: 140 Topics Per Day: 0.03 Content Count: 562 Reputation: 111 Joined: 10/05/12 Last Seen: February 12, 2024 Share Posted August 29, 2020 1 hour ago, Kreustoo said: @iraciz @@ -125,7 +126,7 @@ prontera,149,150,4 script Ninja Click 637,{ //!!Modify!! Position end; } npctalk "Training Ninja: Damn! "+strcharinfo(0)+" got me!"; - disablenpc strnpcinfo(3); + hideonnpc strnpcinfo(3); for(.@i = 0;.@i< getarraysize(.Rewards);.@i =.@i +2){ getitem .Rewards[.@i],.Rewards[.@i+1]; } I relaunched the game to test and this little fix should fix the crash, tell me if it does the job or not Ninja spawn now in hinding status, and players can't see them. Quote Link to comment Share on other sites More sharing options...
Kreustoo Posted August 29, 2020 Group: Members Topic Count: 34 Topics Per Day: 0.01 Content Count: 216 Reputation: 45 Joined: 05/03/13 Last Seen: March 9 Author Share Posted August 29, 2020 Okay my bad, tested it with reloadnpc, @iraciz From d3f15f841b1a0f563925e8710c3b798360a5d8c7 Mon Sep 17 00:00:00 2001 From: Kreustoo <kreustoo@gmail.com> Date: Sat, 29 Aug 2020 21:03:23 +0200 Subject: [PATCH] ClickTheNinja, Fix the hideon hideoff --- scripts/Click The Ninja/ClickTheNinja.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/Click The Ninja/ClickTheNinja.txt b/scripts/Click The Ninja/ClickTheNinja.txt index 04dc3f6..4a1c1bc 100644 --- a/scripts/Click The Ninja/ClickTheNinja.txt +++ b/scripts/Click The Ninja/ClickTheNinja.txt @@ -61,7 +61,7 @@ prontera,149,150,4 script Ninja Click 637,{ //!!Modify!! Position for(.@i = 0;.@i < .NbNpcSession;.@i++){ .@npcName$ = "EvNinjaTrainDup"+.Current; movenpc .@npcName$,rand(.XMin,.XMax),rand(.YMin,.YMax); - enablenpc .@npcName$; + hideoffnpc .@npcName$; .Current++; if(.Current > .MaxNpc) .Current = 1; @@ -109,7 +109,7 @@ prontera,149,150,4 script Ninja Click 637,{ //!!Modify!! Position if(.NbNpcSession < 1) .NbNpcSession = 1; for(.@i = 1;.@i <= .MaxNpc;.@i++) - disablenpc "EvNinjaTrainDup"+.@i; + hideonnpc "EvNinjaTrainDup"+.@i; mapannounce .@mapnameNPC$,"The event started, be the first to click on the npc!",bc_all; initnpctimer; end; Quote Link to comment Share on other sites More sharing options...
fzxree1010 Posted October 10, 2020 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 27 Reputation: 2 Joined: 11/17/16 Last Seen: 5 hours ago Share Posted October 10, 2020 (edited) Hey man, nice script loving it. A question from me. Will it possible to make player walk close to it instead of clicking it and the rewards triggers once the player is next to the ninja? UPDATE: Nevermind, i got it working in my server! Thanks for the script!! Edited October 10, 2020 by fzxree1010 Got Solution Quote Link to comment Share on other sites More sharing options...
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.