Yasunari Ishibashi Posted June 19, 2012 Group: Members Topic Count: 49 Topics Per Day: 0.01 Content Count: 157 Reputation: 2 Joined: 01/06/12 Last Seen: August 25, 2014 Share Posted June 19, 2012 if you could give examples of security npc script? function so the script provides code that must be answered before entering a particular room. Quote Link to comment Share on other sites More sharing options...
DarkIrata Posted June 19, 2012 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 218 Reputation: 32 Joined: 05/29/12 Last Seen: February 13, 2024 Share Posted June 19, 2012 a npc with a input or a npc with a question like a captcha? Quote Link to comment Share on other sites More sharing options...
Euphy Posted June 19, 2012 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 2997 Reputation: 1132 Joined: 05/27/12 Last Seen: June 1, 2017 Share Posted June 19, 2012 In the simplest form, you could write something like this: set .@code$,""; for(set .@i,0; .@i<5; set .@i,.@i+1) // Increase "5" for more digits set .@code$, .@code$+rand(10); mes "Code: "+.@code$; input .@input; if (.@input != atoi(.@code$)) close; // script resumes Of course, people have gone way above and beyond with ASCII images and such, but that requires a lot more work~ Quote Link to comment Share on other sites More sharing options...
Yasunari Ishibashi Posted June 20, 2012 Group: Members Topic Count: 49 Topics Per Day: 0.01 Content Count: 157 Reputation: 2 Joined: 01/06/12 Last Seen: August 25, 2014 Author Share Posted June 20, 2012 whether the security code can be made random letters & numbers? and given a color to be answered is red instead of blue. whether it could help me make this script? Quote Link to comment Share on other sites More sharing options...
Emistry Posted June 20, 2012 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10017 Reputation: 2369 Joined: 10/28/11 Last Seen: Wednesday at 12:29 PM Share Posted June 20, 2012 (edited) try this http://upaste.me/052d5070412a9c6 refer post#9 Edited November 8, 2012 by Emistry Quote Link to comment Share on other sites More sharing options...
Famous Posted August 2, 2012 Group: Members Topic Count: 145 Topics Per Day: 0.03 Content Count: 455 Reputation: 3 Joined: 06/19/12 Last Seen: February 26, 2018 Share Posted August 2, 2012 how to make this script in a certain map? example prontera map can u make one? set .@code$,""; for(set .@i,0; .@i<5; set .@i,.@i+1) // Increase "5" for more digits set .@code$, .@code$+rand(10); mes "Code: "+.@code$; input .@input; if (.@input != atoi(.@code$)) close; // script resumes Quote Link to comment Share on other sites More sharing options...
Emistry Posted August 2, 2012 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10017 Reputation: 2369 Joined: 10/28/11 Last Seen: Wednesday at 12:29 PM Share Posted August 2, 2012 OnPCLoadMapEvent: if( strcharinfo(3) == "prontera" ){ .........blablablablabl................. } end; prontera mapflag loadevent Quote Link to comment Share on other sites More sharing options...
Shogun Posted November 8, 2012 Group: Members Topic Count: 20 Topics Per Day: 0.00 Content Count: 99 Reputation: 4 Joined: 10/25/12 Last Seen: January 20, 2013 Share Posted November 8, 2012 try this http://upaste.me/052d5070412a9c6 Whats the code to access? >.< Quote Link to comment Share on other sites More sharing options...
Emistry Posted November 8, 2012 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10017 Reputation: 2369 Joined: 10/28/11 Last Seen: Wednesday at 12:29 PM Share Posted November 8, 2012 try this http://upaste.me/052d5070412a9c6 Whats the code to access? >.< there is a mistake in the return statement.. >.< try this.. http://pastebin.com/raw.php?i=5itqsMvp Quote Link to comment Share on other sites More sharing options...
Shogun Posted November 8, 2012 Group: Members Topic Count: 20 Topics Per Day: 0.00 Content Count: 99 Reputation: 4 Joined: 10/25/12 Last Seen: January 20, 2013 Share Posted November 8, 2012 Working! Script completed. Tq,Emistry. Quote Link to comment Share on other sites More sharing options...
amol00700 Posted February 16, 2013 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 15 Reputation: 0 Joined: 12/12/12 Last Seen: November 11, 2024 Share Posted February 16, 2013 how to insert this script ??? Quote Link to comment Share on other sites More sharing options...
Capuche Posted February 17, 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 February 17, 2013 Basic_Scripting Quote Link to comment Share on other sites More sharing options...
Question
Yasunari Ishibashi
if you could give examples of security npc script? function so the script provides code that must be answered before entering a particular room.
Link to comment
Share on other sites
11 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.