Jump to content

Quests, Games: Poring Catcher Event


Recommended Posts


  • Group:  Members
  • Topic Count:  38
  • Topics Per Day:  0.01
  • Content Count:  949
  • Reputation:   174
  • Joined:  06/12/12
  • Last Seen:  

File Name: Poring Catcher Event

File Submitter: sandbox

File Submitted: 21 Feb 2014

File Category: Games, Events, Quests

Content Author: sandbox, Clydelion


This is Yet Another Poring Catcher Script which was used on my server..

Basically, the event spawns 1 Poring with the correct name and 36(multiplied by the number of players inside) fake Porings..

When the player kills the poring named correctly, s/he wins!
However if s/he kills the fake poring, player gets warped out..


Installation

  • Enable the script on your NPC folder
  • To trigger it, you have to create a new NPC, something like this

- script PCETrigger -1,{ OnMinute00:if(gettime(3) == 0 || gettime(3) == 3 || gettime(3) == 6 || gettime(3) == 9 || gettime(3) == 12 || gettime(3) == 15)  donpcevent "pcetrigger::OnCatcherTrigger";end; }

  • Carefully read the comments I made inside the script and make sure to configure it properly

  1. Edit the warper NPC coordinates
  2. Edit the prize to be given
  3. Edit the coordinates where you will warp losing players


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.



Click here to download this file

  • Upvote 1
Link to comment
Share on other sites

  • 1 month later...

  • Group:  Members
  • Topic Count:  19
  • Topics Per Day:  0.00
  • Content Count:  80
  • Reputation:   1
  • Joined:  09/13/13
  • Last Seen:  

-    script    pcetrigger    -1,{

OnMinute00:
if(gettime(3) == 9 || gettime(3) == 11 || gettime(3) == 13 || gettime(3) == 15 || gettime(3) == 17 || gettime(3) == 19 || gettime(3) == 21 || gettime(3) == 23 || gettime(3) == 1 || gettime(3) == 3 || gettime(3) == 5)  donpcevent "pcetrigger::OnCatcherTrigger";
end;

OnInit:
disablenpc "Poring Catcher Warper";
end;


OnCatcherTrigger:
if(agitcheck() == 1) end;
enablenpc "Poring Catcher Warper";
announce "Clone™: We are going to have a Poring Catcher Event",bc_all,0xFF7F50;
sleep2 1000;
announce "Clone™: For those who want to join, please go to CloneRO Main Town (lunette 56 94)!",bc_all,0xFF7F50; //Edit to where would you place the warper
sleep2 1000;
announce "Clone™: The Warper would be open for 1 minute",bc_all,0xFF7F50;
sleep2 30000;
announce "Clone™: Last 30 Seconds.",bc_all,0xFF7F50;
sleep2 30000;
announce "Clone™: Warper Closed.",bc_all,0xFF7F50;
disablenpc "Poring Catcher Warper";
donpcevent "Poring Catcher Event::OnPoringCatcherStart";
end;

}

@sandbox

 

the time is not triggering

 

ex.i want the poring catcher to execute on 9am , 11am 1pm etc.

 

any thing i need to change ?

Link to comment
Share on other sites


  • Group:  Developer
  • Topic Count:  48
  • Topics Per Day:  0.01
  • Content Count:  1443
  • Reputation:   337
  • Joined:  10/17/12
  • Last Seen:  

Replace gettine(3) with the onhour labor.

OnHourxx:

Replace xx with nphour using 0-23 ( military time)

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  19
  • Topics Per Day:  0.00
  • Content Count:  80
  • Reputation:   1
  • Joined:  09/13/13
  • Last Seen:  

Replace gettine(3) with the onhour labor.

OnHourxx:

Replace xx with nphour using 0-23 ( military time)

 

still not working sir any other idea?

Link to comment
Share on other sites


  • Group:  Developer
  • Topic Count:  48
  • Topics Per Day:  0.01
  • Content Count:  1443
  • Reputation:   337
  • Joined:  10/17/12
  • Last Seen:  

replace

OnMinute00:
if(gettime(3) == 9 || gettime(3) == 11 || gettime(3) == 13 || gettime(3) == 15 || gettime(3) == 17 || gettime(3) == 19 || gettime(3) == 21 || gettime(3) == 23 || gettime(3) == 1 || gettime(3) == 3 || gettime(3) == 5)  donpcevent "pcetrigger::OnCatcherTrigger";
end;

with


OnHour01:
OnHour03:
OnHour05:
OnHour07:
OnHour09:
OnHour11:
OnHour13:
OnHour15:
OnHour17:
OnHour19:
OnHour21:
OnHour23:
donpcevent "pcetrigger::OnCatcherTrigger";
end;

though the method you first showed SHOULD have worked, are there any errors in your server?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  19
  • Topics Per Day:  0.00
  • Content Count:  80
  • Reputation:   1
  • Joined:  09/13/13
  • Last Seen:  

no error appear ,

 

but still the scripts still not working

-	script	DiceTrigger	-1,{

OnMinute00:
if(OnHour10 || OnHour12 || OnHour14 || OnHour16 || OnHour18 || OnHour20 || OnHour22 || OnHour24 || OnHour2 || OnHour4 || OnHour6) donpcevent "DiceTrigger::OnDiceETrigger";
end;
 
OnInit:
disablenpc "Dice Event Warper#dice";
disablenpc "Claim Your Prize!#dice";
end;


OnDiceETrigger:
if(agitcheck() == 1) end;
enablenpc "Dice Event Warper#dice";
announce "Dice Event: We are going to have a Dice Event",bc_all,0x8A2BE2;
sleep2 1000;
announce "Dice Event: For those who want to join, please go to CloneRO Main Town ( lunette 118 97) !",bc_all,0x8A2BE2;
sleep2 1000;
announce "Dice Event: The Warper would be open for 1 minute",bc_all,0x8A2BE2;
sleep2 30000;
announce "Dice Event: Last 30 Seconds.",bc_all,0x8A2BE2;
sleep2 30000;
announce "Dice Event: Warper Closed.",bc_all,0x8A2BE2;
disablenpc "Dice Event Warper#dice";
areawarp "ra_temsky",86,149,113,134,"ra_temsky",99,114;
donpcevent "DiceEvent::OnDiceStart";
end;

}
Link to comment
Share on other sites

  • 5 months later...

  • Group:  Members
  • Topic Count:  68
  • Topics Per Day:  0.02
  • Content Count:  173
  • Reputation:   0
  • Joined:  06/07/14
  • Last Seen:  

What's wrong with mine? :( It does start but if the player in the map is only 1, it only summon 1 Poring which is the correct name. No other else? Please help

 

http://pastebin.com/raw.php?i=MnRP3pZB

http://pastebin.com/raw.php?i=nzx8t3He

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...