Jump to content
  • 0

Kill Number of Monster


Aeia

Question


  • Group:  Members
  • Topic Count:  14
  • Topics Per Day:  0.00
  • Content Count:  63
  • Reputation:   1
  • Joined:  09/18/12
  • Last Seen:  

I haven't tried the script yet but are there any errors regarding this script or any suggestions to improve this?

prontera,156,127    script    Quest    456,{
    mes "[ Quest ]";
    mes "What do you want to do?";
    menu "Start Killing",-,"Check Kill Status",CheckKill,"Close",End;
    next;
    mes "[ Quest ]";
    mes "Start Killing 100 porings now!";
    close;

CheckKill:
    next;
    if (killedmonsters >= 100) {
    mes "Wow you killed 100 porings, wanna finish this quest now?";
    mes "Awesome here's a prize!";
    set zeny,zeny+9001;
    set killing_quest,1;
    close;
    }

    next;
    mes "[ Quest ]";
    mes "Your current porings kills are "+killedmonsters+"";
    close;

End:
    close;

OnNPCKillEvent:
    if (KilledRid == 1002) {
    set killedmonsters,killedmonsters+1;
    dispbottom "Porings Killed +"killedmonsters"+ ";
    }
end;
}

 

Link to comment
Share on other sites

5 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  30
  • Topics Per Day:  0.01
  • Content Count:  154
  • Reputation:   6
  • Joined:  04/26/12
  • Last Seen:  

All i see is a simple quest about killing 100 porings. 

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  81
  • Topics Per Day:  0.02
  • Content Count:  1654
  • Reputation:   583
  • Joined:  08/09/12
  • Last Seen:  

You could use the mob hunting script, it's more fun  /ok

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  14
  • Topics Per Day:  0.00
  • Content Count:  63
  • Reputation:   1
  • Joined:  09/18/12
  • Last Seen:  

I mean, hunting and collecting at the same time.

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  1268
  • Reputation:   382
  • Joined:  02/03/12
  • Last Seen:  

Use the quest db for monster hunting of one monster type.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  81
  • Topics Per Day:  0.02
  • Content Count:  1654
  • Reputation:   583
  • Joined:  08/09/12
  • Last Seen:  

Yes, I mean to use something like the default Tron's Quest Board, you could make quest chains like so:

Quest 1. Kill 100 Porings (Reward: 2x Rare Diamond)

Quest 2. Collect 10 Rare Diamonds (Reward: 1x High Quality Diamond)

Quest 3. Collect 3 High Quality Diamond (Reward: x Zeny)

 

So your player are forced to repeat quest #1 first before doing #2, and #3  /ok

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