Jump to content
  • 0

Daily Quest request


Mootie

Question


  • Group:  Members
  • Topic Count:  43
  • Topics Per Day:  0.01
  • Content Count:  815
  • Reputation:   86
  • Joined:  10/26/12
  • Last Seen:  

I already search tons of info and non of them are working well so im going to request this daily quest.

Here's the info about this daily quest

This NPC will allow you to do Daily Quests. You can do up to 10 quests a day and gain 1 Gold Coin for each quest. After 10 quests, you can still do Daily Quests, but you will only gain 5 Silver Coins and 5 Bank Notes.

bump.

Link to comment
Share on other sites

12 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.00
  • Content Count:  2044
  • Reputation:   682
  • Joined:  10/09/12
  • Last Seen:  

emistry_daily_chain_quest.txt

I hope emistry don't mind I edited his script /heh

http://rathena.org/b...ake-this-daily/

also, those things about 1 gold coin ... stuffs is easily configurable inside the script ...

think emistry will explain for you in detail /oops

  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  43
  • Topics Per Day:  0.01
  • Content Count:  815
  • Reputation:   86
  • Joined:  10/26/12
  • Last Seen:  

oh didnt notice about this but hey thank you o.o

Uhm,so this will be same as my story line? You can do up to 10 quests a day and gain 1 Gold Coin for each quest. After 10 quests, you can still do Daily Quests, but you will only gain 5 Silver Coins and 5 Bank Notes.

i tested the script that you provide and it looks like it doesnt stops chain quest i mean after redoing he can still do the main chain quest that have my own item no. for gold coins

how can this be daily o.o

Edited by Mootie
Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10018
  • Reputation:   2369
  • Joined:  10/28/11
  • Last Seen:  

@Mootie

/hmm ? the script work fine ...

player can keep re-do the quest anytime they want...the quest will keep repeat and repeat....

but the only part that's repeat only once a day...is this part...

line 25 ~ 28

  else {
setd "Quest"+ strnpcinfo(2) +"done", 1;
getitem "Gold_Coin", 15;
  }

the rest of the part....is repeating quest.....

@Annie

of course i dont mind... = )

it's great to have my tutor to edit and refine my script /gg

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  43
  • Topics Per Day:  0.01
  • Content Count:  815
  • Reputation:   86
  • Joined:  10/26/12
  • Last Seen:  

@Mootie

/hmm ? the script work fine ...

player can keep re-do the quest anytime they want...the quest will keep repeat and repeat....

but the only part that's repeat only once a day...is this part...

line 25 ~ 28

else {

setd "Quest"+ strnpcinfo(2) +"done", 1;

getitem "Gold_Coin", 15;

}

i tested it keeps repeating the this


  	 case 0: ChainedQuest( 7959,5, 1, 501,2);
       case 1: ChainedQuest( 7959,5, 1, 502,3);

so i have 501 and 502 after finishing the quest 10 times it repeat into this states yes im getting

  else {
setd "Quest"+ strnpcinfo(2) +"done", 1;
getitem "Gold_Coin", 15;
  }

but after that redoing it become repeat in the case 0: ChainedQuest( 7959,5, 1, 501,2); not getitem "Gold_Coin", 15;

you got what i mean? ill elaborate exactly

okay i've done the 1st term of the quest i got 7959 to 501 and 7959 to 502 after that i redo the quest and i got Gold_Coin after that i redo the quest and i got 7959 to 501 which means it doesn't stop the main quest for the main rewards

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10018
  • Reputation:   2369
  • Joined:  10/28/11
  • Last Seen:  

there is no "Main" or "Sub" quest in my script...if you define it with "Main" or "Sub" quest...then you are wrong with the concept of mine...

my idea is just simply create a npc that have 10 task ( quest ) .....

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  43
  • Topics Per Day:  0.01
  • Content Count:  815
  • Reputation:   86
  • Joined:  10/26/12
  • Last Seen:  

oh so in others words i need to request for this concept? i hope annie dont mind to make for

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.00
  • Content Count:  2044
  • Reputation:   682
  • Joined:  10/09/12
  • Last Seen:  

Uhm,so this will be same as my story line? You can do up to 10 quests a day and gain 1 Gold Coin for each quest. After 10 quests, you can still do Daily Quests, but you will only gain 5 Silver Coins and 5 Bank Notes.

so you mean, after finished 10 quests

( case 1: -> default: ... done all 10 quests, set Quest1Done, 1; getitem "gold_coin" )

and do another 10 quests

( case 1: -> default: ... done all 10 quests, set Quest1Done, 2; getitem "silver_coin"; getitem "bank_notes"; )

and stop ... cannot do it again issit ?

( if Quest1Done == 2 ... halt )

because I also getting confused ... /hmm

btw I'm sure emistry can do this ... its his script

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  43
  • Topics Per Day:  0.01
  • Content Count:  815
  • Reputation:   86
  • Joined:  10/26/12
  • Last Seen:  

Uhm,so this will be same as my story line? You can do up to 10 quests a day and gain 1 Gold Coin for each quest. After 10 quests, you can still do Daily Quests, but you will only gain 5 Silver Coins and 5 Bank Notes.

so you mean, after finished 10 quests

( case 1: -> default: ... done all 10 quests, set Quest1Done, 1; getitem "gold_coin" )

and do another 10 quests

( case 1: -> default: ... done all 10 quests, set Quest1Done, 2; getitem "silver_coin"; getitem "bank_notes"; )

and stop ... cannot do it again issit ?

( if Quest1Done == 2 ... halt )

because I also getting confused ... /hmm

btw I'm sure emistry can do this ... its his script

yeah exactly what you mention o.o sorry if i get you confuse about this

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10018
  • Reputation:   2369
  • Joined:  10/28/11
  • Last Seen:  

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  43
  • Topics Per Day:  0.01
  • Content Count:  815
  • Reputation:   86
  • Joined:  10/26/12
  • Last Seen:  

Hi emist thx for this i have a question regarding this script uhm,since i asked for the daily so it will automatically reload the quest after the time he done? i mean he done by 2pm tomorrow he can redo the whole quest with same time.

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10018
  • Reputation:   2369
  • Joined:  10/28/11
  • Last Seen:  

yes..

in your case...it's just the reward is different...like what you mentioned in post#1

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  43
  • Topics Per Day:  0.01
  • Content Count:  815
  • Reputation:   86
  • Joined:  10/26/12
  • Last Seen:  

sweet....im going to test it right now and post if there's some errro occur oh and last thing adding a new case 3 doesn't matter right? since im going to put 1-10 quest for each day

and adding bank_note to here

if ( getd( "Quest"+ strnpcinfo(2) +"done" ) ) {
 getitem "Silver_Coin", 10;
 getitem "Bank_Note:, 10;

its fine?

Edited by Mootie
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
Answer this question...

×   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...