sandbox Posted March 14, 2014 Group: Members Topic Count: 38 Topics Per Day: 0.01 Content Count: 949 Reputation: 174 Joined: 06/12/12 Last Seen: Monday at 04:01 PM Share Posted March 14, 2014 File Name: Click The Pub File Submitter: sandbox File Submitted: 14 Mar 2014 File Category: Game, Event, Quest Content Author: sandbox Script Details & Usage This simple event will create an NPC chatroom upon starting, the first player to enter the chat room will be declared winner. Feel free to suggest on how can I improve this very simple script even more. Thank you! Installation Enable the script on your NPC folder Carefully read the comments I made inside the script and make sure to configure it properly Terms & Conditions You are not allowed to reproduce or make profit of this script You are not allowed to take credit for this script. Though you can modify/edit it to your liking. I can give you support, but please, do not message me. It is your own responsibility to create a backup before implementing anything new. Pastebin: http://rathena.org/board/pastebin/nc21plexy9b/ Special thanks to: @ToastOfDoom, @nanakiwurtz for helping me with this script! Version History: 1.0 - Initial Release 1.1 - Fixed minor errors thanks to @666BANDIT007 clickthepub.txt 1 Quote Link to comment Share on other sites More sharing options...
idLaZ Posted April 10, 2014 Group: Members Topic Count: 18 Topics Per Day: 0.00 Content Count: 93 Reputation: 6 Joined: 12/10/11 Last Seen: September 28, 2024 Share Posted April 10, 2014 What if... Make a random sentence/words in the Pub then the first player who entered the Pub will be the winner? Quote Link to comment Share on other sites More sharing options...
sandbox Posted April 10, 2014 Group: Members Topic Count: 38 Topics Per Day: 0.01 Content Count: 949 Reputation: 174 Joined: 06/12/12 Last Seen: Monday at 04:01 PM Author Share Posted April 10, 2014 What do you mean by that? What's the point of sentence/word for the pub title? Quote Link to comment Share on other sites More sharing options...
666BANDIT007 Posted April 29, 2014 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 6 Reputation: 0 Joined: 03/04/14 Last Seen: June 16, 2015 Share Posted April 29, 2014 Doesnt work (prize dont give, chat no del) Quote Link to comment Share on other sites More sharing options...
sandbox Posted April 29, 2014 Group: Members Topic Count: 38 Topics Per Day: 0.01 Content Count: 949 Reputation: 174 Joined: 06/12/12 Last Seen: Monday at 04:01 PM Author Share Posted April 29, 2014 Can you post your error Quote Link to comment Share on other sites More sharing options...
666BANDIT007 Posted April 29, 2014 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 6 Reputation: 0 Joined: 03/04/14 Last Seen: June 16, 2015 Share Posted April 29, 2014 Sry for my badly english. 1. Dont click (if default script)I think its because: prontera,100,200,3 script Click The Pub 78,{ end; <== This if(!.AM) { if(getgroupid() > 40) { mes "Hello! Do you want to start the event?"; next; close; mes "Thank you!"; goto OnCTPStart; close; } } 2. If comment end, then npc dont start. I think: prontera,100,200,3 script Click The Pub 78,{ //end; if(!.AM) { if(getgroupid() > 40) { mes "Hello! Do you want to start the event?"; next; close; <== This mes "Thank you!"; goto OnCTPStart; close; } } 3. Result: Prize dont give, event dont stop.What im doing wrong? Quote Link to comment Share on other sites More sharing options...
sandbox Posted April 29, 2014 Group: Members Topic Count: 38 Topics Per Day: 0.01 Content Count: 949 Reputation: 174 Joined: 06/12/12 Last Seen: Monday at 04:01 PM Author Share Posted April 29, 2014 Revised the script, kindly test. Also, don't forget to config it properly.. //======Name======================================== // Click The Pub! //======Version===================================== // 1.0 //======Author(s)=================================== // Sandbox //======Comments==================================== // This simple event will create an NPC chatroom upon // starting, the first player to enter the chat room // will be declared winner. //================================================== prontera,100,200,3 script Click The Pub 78,{ if(!.AM) { if(getgroupid() > 40) { mes "Hello! Do you want to start the event?"; next; close; mes "Thank you!"; goto OnCTPStart; close; } else end; } OnInit: //Set the Prize's Item ID, followed by amount"; setarray .Prize[0],607,1; //Set 1 for Automated, 0 for Manual .AM = 0; //If automated, set number of hours to repeat it. Default: 1 hour .Repeat = 1; if(!.AM) end; OnCTPStart: if(.AM && !agitcheck() && !agitcheck2()) { sleep .Repeat*600000; enablenpc strnpcinfo(1); } announce "Click The Pub event will start in a few seconds!",0; sleep 2000; announce "Gather around prontera 100 200!",0; sleep 2000; announce "This event will give a prize to the player who enters my Pub first!",0; sleep 2000; announce "Ready...!",0; for(.@i = 10; .@i > 0; .@i--) { announce .@i,0; waitingroom .@i,0; sleep 1000; delwaitingroom; } announce "Go! Go! Go!",0; waitingroom "Click Me!",2,strnpcinfo(1)+"::OnFirstClick",1; end; OnFirstClick: warpwaitingpc "prontera",100,200,1; announce rid2name($@warpwaitingpc[0])+" won the Click The Pub event!",0; getitem .Prize[0],.Prize[1]; delwaitingroom; disablenpc strnpcinfo(1); if(.AM) goto OnCTPStart; end; } Quote Link to comment Share on other sites More sharing options...
666BANDIT007 Posted April 29, 2014 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 6 Reputation: 0 Joined: 03/04/14 Last Seen: June 16, 2015 Share Posted April 29, 2014 getitem .Prize[0],.Prize[1],($@warpwaitingpc[0]); Prize works Quote Link to comment Share on other sites More sharing options...
sandbox Posted April 30, 2014 Group: Members Topic Count: 38 Topics Per Day: 0.01 Content Count: 949 Reputation: 174 Joined: 06/12/12 Last Seen: Monday at 04:01 PM Author Share Posted April 30, 2014 Seems weird, we tested this before and it worked. I'll have it checked again. Thanks Quote Link to comment Share on other sites More sharing options...
lchtea120 Posted May 2, 2014 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 41 Reputation: 0 Joined: 03/19/14 Last Seen: May 17, 2021 Share Posted May 2, 2014 sir sandbox why ur script have debug hahahaha i see other fix but i dont know add what this is code need to fix announce "Ready...!",0; for(.@i = 10; .@i > 0; .@i--) { announce .@i,0; waitingroom .@i,0; its show debug everytime the npc counting Quote Link to comment Share on other sites More sharing options...
sandbox Posted May 5, 2014 Group: Members Topic Count: 38 Topics Per Day: 0.01 Content Count: 949 Reputation: 174 Joined: 06/12/12 Last Seen: Monday at 04:01 PM Author Share Posted May 5, 2014 I've updated the script, can you try the new file? Quote Link to comment Share on other sites More sharing options...
Lelouch vi Britannia Posted June 26, 2014 Group: Members Topic Count: 45 Topics Per Day: 0.01 Content Count: 715 Reputation: 84 Joined: 01/05/12 Last Seen: April 10, 2023 Share Posted June 26, 2014 (edited) I've updated the script, can you try the new file? I tryed http://rathena.org/board/pastebin/f4nxnnt3ba3/ and it didn't start, ive seen one of the reports of 666BANDIT007 and this didn't change in your latest. if(!.AM) { if(getgroupid() > 40) { mes "Hello! Do you want to start the event?"; next; close; <---------- What is the purpose of this close function?? mes "Thank you!"; goto OnCTPStart; close; } else end; } Edited June 26, 2014 by Lelouch vi Britannia Quote Link to comment Share on other sites More sharing options...
sandbox Posted June 27, 2014 Group: Members Topic Count: 38 Topics Per Day: 0.01 Content Count: 949 Reputation: 174 Joined: 06/12/12 Last Seen: Monday at 04:01 PM Author Share Posted June 27, 2014 Oh, that was supposed to be a close2; Sorry Quote Link to comment Share on other sites More sharing options...
ni09ne Posted September 27, 2014 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 2 Reputation: 0 Joined: 08/28/14 Last Seen: June 23, 2015 Share Posted September 27, 2014 //======Name======================================== // Click The Pub! //======Version===================================== // 1.1 //======Author(s)=================================== // Sandbox //======Comments==================================== // This simple event will create an NPC chatroom upon // starting, the first player to enter the chat room // will be declared winner. //================================================== sec_in01,92,171,4 script Click The Pub 78,{ if(!.AM) { if(getgroupid() > 40) { mes "Hello! Do you want to start the event?"; next; close; mes "Thank you!"; goto OnCTPStart; close; } else end; } OnInit: //Set the Prize's Item ID, followed by amount"; setarray .Prize[0],7227,1; //Set 1 for Automated, 0 for Manual .AM = 1; //If automated, set number of hours to repeat it. Default: 1 hour .Repeat = 1; if(!.AM) end; OnCTPStart: if(.AM && !agitcheck() && !agitcheck2()) { sleep .Repeat*600000; enablenpc strnpcinfo(1); } announce "Click The Pub event will start in a few seconds!",0; sleep 2000; announce "Just go to the Event Area!",0; sleep 2000; announce "This event will give a prize to the player who enters my Pub first!",0; sleep 2000; announce "Ready...!",0; for(.@i = 10; .@i > 0; .@i--) { announce .@i,0; waitingroom .@i,0; sleep 1000; delwaitingroom; } announce "Go! Go! Go!",0; waitingroom "Click Me!",2,strnpcinfo(1)+"::OnFirstClick",1; end; OnFirstClick: warpwaitingpc "prontera",155,178,1; announce rid2name($@warpwaitingpc[0])+" won the Click The Pub event!",0; getitem .Prize[0],.Prize[1],$@warpwaitingpc[0]; delwaitingroom; disablenpc strnpcinfo(1); // if(.AM) goto OnCTPStart; end; } sir im using your script but the thing is sometimes it keeps on doing the event..not only once..sometimes 2x/3x Quote Link to comment Share on other sites More sharing options...
simplexjay2 Posted September 30, 2014 Group: Members Topic Count: 56 Topics Per Day: 0.01 Content Count: 224 Reputation: 4 Joined: 02/09/12 Last Seen: April 20, 2024 Share Posted September 30, 2014 as a request it will have random pub and who 1st enter the pub and type the same pubname win Quote Link to comment Share on other sites More sharing options...
zXoOm Posted October 6, 2014 Group: Members Topic Count: 18 Topics Per Day: 0.00 Content Count: 73 Reputation: 2 Joined: 12/19/11 Last Seen: October 8, 2015 Share Posted October 6, 2014 how to make this script automated? 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.