Rocky Road Posted November 14, 2015 Group: Members Topic Count: 34 Topics Per Day: 0.01 Content Count: 72 Reputation: 0 Joined: 11/08/14 Last Seen: November 24, 2015 Share Posted November 14, 2015 Hi guys, Does anyone have an Monster Hunting NPC that will ask for an item before he ask you a favor to kill atleast 3 type of monster and after killing that monster he will grant you a 1 item? please i need some of this script thanks Quote Link to comment Share on other sites More sharing options...
0 Emistry Posted November 14, 2015 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10017 Reputation: 2369 Joined: 10/28/11 Last Seen: 14 hours ago Share Posted November 14, 2015 https://github.com/rathena/rathena/blob/master/npc/custom/quests/hunting_missions.txt Quote Link to comment Share on other sites More sharing options...
0 Rocky Road Posted November 15, 2015 Group: Members Topic Count: 34 Topics Per Day: 0.01 Content Count: 72 Reputation: 0 Joined: 11/08/14 Last Seen: November 24, 2015 Author Share Posted November 15, 2015 https://github.com/rathena/rathena/blob/master/npc/custom/quests/hunting_missions.txt Uhmm i know this script but does this script will ask you first for an item before he ask you a favor to kill a monster? Quote Link to comment Share on other sites More sharing options...
0 Rain408 Posted November 19, 2015 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 77 Reputation: 0 Joined: 05/23/15 Last Seen: June 4, 2017 Share Posted November 19, 2015 (edited) Check if ( item ( "item ID > "x amount") ) I'm not sure if I type it out correctly, but just add that check at the front of your script. Then the npc will only proceed to giving out mission if they have requirement. Note I'm at work so I can't provide more accurate information Edited November 19, 2015 by Rain408 Quote Link to comment Share on other sites More sharing options...
0 Rocky Road Posted November 19, 2015 Group: Members Topic Count: 34 Topics Per Day: 0.01 Content Count: 72 Reputation: 0 Joined: 11/08/14 Last Seen: November 24, 2015 Author Share Posted November 19, 2015 Check if ( item ( "item ID > "x amount") ) I'm not sure if I type it out correctly, but just add that check at the front of your script. Then the npc will only proceed to giving out mission if they have requirement. Note I'm at work so I can't provide more accurate information Thanks i will try it boss thanks for the help Quote Link to comment Share on other sites More sharing options...
0 Rain408 Posted November 19, 2015 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 77 Reputation: 0 Joined: 05/23/15 Last Seen: June 4, 2017 Share Posted November 19, 2015 (edited) Check if ( item ( "item ID > "x amount") ) I'm not sure if I type it out correctly, but just add that check at the front of your script. Then the npc will only proceed to giving out mission if they have requirement. Note I'm at work so I can't provide more accurate information Thanks i will try it boss thanks for the help Here the correct text: if (countitem(7189) > 19) { } Here an exmaple if (countitem("Item ID") > " item number") { "your txt/quest" } else { mes "sorry."; // put whatever message you want close; } There you go, an outline of how to set the item check Edited November 19, 2015 by Rain408 Quote Link to comment Share on other sites More sharing options...
0 Rocky Road Posted November 19, 2015 Group: Members Topic Count: 34 Topics Per Day: 0.01 Content Count: 72 Reputation: 0 Joined: 11/08/14 Last Seen: November 24, 2015 Author Share Posted November 19, 2015 Check if ( item ( "item ID > "x amount") ) I'm not sure if I type it out correctly, but just add that check at the front of your script. Then the npc will only proceed to giving out mission if they have requirement. Note I'm at work so I can't provide more accurate information Thanks i will try it boss thanks for the help Here the correct text: if (countitem(7189) > 19) { } Here an exmaple if (countitem("Item ID") > " item number") { "your txt/quest" } else { mes "sorry."; // put whatever message you want close; } There you go, an outline of how to set the item check Do i just need to put that on the top of the script?? Quote Link to comment Share on other sites More sharing options...
0 Rain408 Posted November 19, 2015 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 77 Reputation: 0 Joined: 05/23/15 Last Seen: June 4, 2017 Share Posted November 19, 2015 Check if ( item ( "item ID > "x amount") ) I'm not sure if I type it out correctly, but just add that check at the front of your script. Then the npc will only proceed to giving out mission if they have requirement. Note I'm at work so I can't provide more accurate information Thanks i will try it boss thanks for the help Here the correct text: if (countitem(7189) > 19) { } Here an exmaple if (countitem("Item ID") > " item number") { "your txt/quest" } else { mes "sorry."; // put whatever message you want close; } There you go, an outline of how to set the item check Do i just need to put that on the top of the script?? if (countitem("Item ID") > " item number") { "your txt/quest"// Add your script right here } else { mes "sorry."; // put whatever message you want close; } Quote Link to comment Share on other sites More sharing options...
0 PandaLovesHamster Posted November 19, 2015 Group: Members Topic Count: 51 Topics Per Day: 0.01 Content Count: 452 Reputation: 34 Joined: 12/18/14 Last Seen: May 30, 2016 Share Posted November 19, 2015 Something like this: prt_in,89,72,6 script Hunter Association 951,{ if(countitem(item_here)) > item_quantity){ function Chk; ... } else{ mes "Not enough."; close; } Quote Link to comment Share on other sites More sharing options...
0 Rocky Road Posted November 19, 2015 Group: Members Topic Count: 34 Topics Per Day: 0.01 Content Count: 72 Reputation: 0 Joined: 11/08/14 Last Seen: November 24, 2015 Author Share Posted November 19, 2015 Something like this: prt_in,89,72,6 script Hunter Association 951,{ if(countitem(item_here)) > item_quantity){ function Chk; ... } else{ mes "Not enough."; close; } then i will just add the whole script of monster hunting buttom of that script? Quote Link to comment Share on other sites More sharing options...
0 PandaLovesHamster Posted November 20, 2015 Group: Members Topic Count: 51 Topics Per Day: 0.01 Content Count: 452 Reputation: 34 Joined: 12/18/14 Last Seen: May 30, 2016 Share Posted November 20, 2015 Yup. The else would be at most bottom part. Quote Link to comment Share on other sites More sharing options...
0 Rocky Road Posted November 22, 2015 Group: Members Topic Count: 34 Topics Per Day: 0.01 Content Count: 72 Reputation: 0 Joined: 11/08/14 Last Seen: November 24, 2015 Author Share Posted November 22, 2015 Yup. The else would be at most bottom part. cool thanks i will try it Quote Link to comment Share on other sites More sharing options...
Question
Rocky Road
Hi guys,
Does anyone have an Monster Hunting NPC that will ask for an item before he ask you a favor to kill atleast 3 type of monster and after killing that monster he will grant you a 1 item? please i need some of this script thanks
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.