Jump to content
  • 0

IRO Official Daily Quests


schan

Question


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  14
  • Reputation:   0
  • Joined:  12/10/11
  • Last Seen:  

Hi,

Well, someone already posted this in eathena before but I can't seem to find a working download link anywhere.

Can somebody provide me a link or make a script for this? I would much appreciate it.

Post in eathena: http://www.eathena.w...howtopic=269194

Info about daily quest: http://www.ragnarok-...t/#.T29VVWHxpng

Thank you!

BUMP

BUMP

Edited by Arcenciel
Link to comment
Share on other sites

6 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  69
  • Topics Per Day:  0.02
  • Content Count:  1315
  • Reputation:   372
  • Joined:  12/10/11
  • Last Seen:  


  • Group:  Members
  • Topic Count:  42
  • Topics Per Day:  0.01
  • Content Count:  227
  • Reputation:   11
  • Joined:  11/16/11
  • Last Seen:  

need this too.. Anyone who still have it? please share..

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.00
  • Content Count:  658
  • Reputation:   57
  • Joined:  11/20/11
  • Last Seen:  

I'd suggest you,to try scripting them by yourself,since you can check out the information about it. Here's one iRO Daily Quest I scripted :

iRO Daily Quest - Swab the Deck

Information about the Quest :

http://www.ragnarok-...t/#.T4FxTvtzpz4

Quest Script :

Codebox :


//        //=====//     /==/     /==/          /==/      
//       //     //     /==/     /==/  /=/     /==/         
//      //=====//              /==/  /=/             /==============/     /========/   /==//===/    /==/     /==/
//     //=//////    /==/      /==//=/       /==/    /==/==/==/==/==/     /     /  /   /==/         /==/     /==/
//    // ==        /==/      /==//=/       /==/    /==/  /==/  /==/     ======/  /   /==/         /==/     /==/
//   //   ==      /==/      /==/  /=/     /==/    /==/  /==/  /==/     / /===/  /   /==/         /==/     /==/
//  //     ==    /==/      /==/   /=/    /==/    /==/  /==/  /==/     / /===/  /   /==/         /==/=====/==/
// //       ==  /==/      /==/    /=/   /==/    /==/  /==/  /==/     /========/   /==/         /==///////==/
// ================ rAthena / eAthena Scripts =======================================
// ============== Description =======================================================
// = iRO Daily Quest with a last time exchanged counter of 20 Hours
// ============ Credits =============================================================
// = Made by Rikimaru for Mysterious Ragnarok Online
// =========== Version ==============================================================
// = v 1.1 : Using arrays for the Exchanger now [ Rikimaru ]
// = v 1.0 : Scripted the Quest [ Rikimaru ]
// ==================================================================================
alberta,104,60,5 script [Quest] First Mate 748,{
//============================= Settings ==========================
set .@npcname$,"[ [Quest] First Mate ]";
set .BeadID,6222;
//======================= End =====================================
if(countitem(6221) > 0 && gettimetick(2) - exchangedalready > (60 * 60 * 20)) {
mes .@npcname$;
mes "Hey,how many Mystic Leaf Cat Balls";
mes "do you want to exchange to Shiny Beads?";
next;
mes .@npcname$;
mes "Input the Amount of the Mystic Leaf Cat Balls,which you want to exchange.";
mes "If you input 0 , you're going to cancel the deal.";
next;
input @beadamount;
if (@beadamount == 0) {
close;
}
mes .@npcname$;
mes "Do you really want to exchange";
mes ":"+ @beadamount +" Mystic Leaf Cat Balls";
mes "for "+ @beadamount +" Shiny Beads?";
next;
switch(select("Yes!:No!")) {
case 1:
mes .@npcname$;
mes "Okay converting... ... ...";
if(countitem(6221) < @beadamount) goto l_noitem;
delitem 6221,@beadamount;
getitem .BeadID,@beadamount;
set BaseExp,+50000000;// CHANGE THE EXP AMOUNT!!
set JobExp,+40000000;// CHANGE THE EXP AMOUNT!!
set exchangedalready,gettimetick(2);
next;
mes .@npcname$;
mes "Okay you can exchange the Shiny Beads at the Second Mate.";
close;
case 2:
mes .@npcname$;
mes "Okay goodbye!";
close;
}
l_noitem:
mes .@npcname$;
mes "I'm sorry,but you're missing some items!";
close;
}
mes .@npcname$;
mes "Hey , do you want to do the Daily Quest?";
next;
switch(select("Yes,sure!:No,bye!:Cancel")) {
case 1:
mes .@npcname$;
mes "Okay you have to go to the alberta Ship";
mes "and enter one of the Portals and Catch A rat!";
next;
mes .@npcname$;
mes "If you catch it,you'll get a Mystic Cat Ball,";
mes "if you got it,come back to me,if you failed,";
mes "come back to me and get a new Cat Ball,to";
mes "catch the rats!";
next;
mes .@npcname$;
mes "So,here take this,";
mes "and come back when you finished.";
getitem 12408,1;
close;
case 2:
mes .@npcname$;
mes "Okay,goodbye!";
close;
case 3:
close;
}
}
// ============================ End of the First Mate Script ===================================
alberta,107,59,5 script [Quest] Second Mate 100,{
set .@npcname$,"^0000FF[ [Quest] Second Mate ]^000000";
set .BeadID,6222;
setarray @ItemID[0],5170,5773,5691,505,5578,5692;
setarray @Cost[0],50,50,50,1,30,50;
setarray @itemcount[0],1,1,1,2,1,1;
mes .@npcname$;
mes "Hello ["+strcharinfo(0)+"],do";
mes "you want to buy some items?";
mes "You'll have to give me Shiny";
mes "Beads for the Items!";
next;
if (select("Yes,sure","No,nevermind!") == 2)
close;
next;
mes .@npcname$;
mes "Item = Cost";
for( set .@i, 0; .@i < getarraysize(@ItemID); set .@i, .@i + 1 ) {
mes "^0000ff"+@itemcount[.@i]+"x "+getitemname(@ItemID[.@i])+"^000000 = ^00aa00"+@Cost[.@i]+"^000000";
if( .@i < 1 )
set .@menu$, getitemname(@ItemID[.@i]);
else
set .@menu$, .@menu$+":"+getitemname(@ItemID[.@i]);
}

next;
select(.@menu$);
set @choice, @menu - 1;

mes @npcname$;
if(countitem(.BeadID) <@Cost[@choice]) {
mes "You need more Shiny Beads for "+@itemcount[@choice]+"x '"+getitemname(@ItemID[@choice])+"'";
close;
}
mes "Are u realy sure to trade "+@itemcount[@choice]+"x '^ff0000"+getitemname(@ItemID[@choice])+"^000000' for ^00aa00"+@Cost[@choice]+"^000000 Shiny Beads?";
if(select("No! Cancel!:Yes, Trade me!") == 1 ) {
mes "Canceled the Trade";
close;
}

set .@new, .BeadID - @Cost[@choice];
if( .@new < 0 )
set .@new, 0;
delitem .BeadID,@Cost[@choice];
getitem @ItemID[@choice], @itemcount[@choice];
mes "The Trade was succesfull. Have fun with the Item!";
close;
}

For the others,you could try scripting them by yourself.

Yours,

~ Rikimaru

Edited by Rikimaru
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  14
  • Reputation:   0
  • Joined:  12/10/11
  • Last Seen:  

@rikimaru

I don't know how to code it on my own that's why I made this thread. Anyways, thank you so much!

Does anyone has the other official daily quests to share?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.00
  • Content Count:  658
  • Reputation:   57
  • Joined:  11/20/11
  • Last Seen:  

@rikimaru

I don't know how to code it on my own that's why I made this thread. Anyways, thank you so much!

Does anyone has the other official daily quests to share?

Then if you are interested in Scripts I'd suggest you to check out the rathena wiki and try to learn scripting. If you need the scripts,you cannot always request them , just like I learned scripting :) .

Anyways,no problem.

I'm scripting this one,too,just wait a bit and I'm going to upload it :

http://www.ragnarok-guide.com/ragnarok-army-supply-daily-quest/#.T4GKwftzpz4

Edited by Rikimaru
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...