Jump to content
  • 0

Kill Number of Monster


Question

Posted

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;
}

 

5 answers to this question

Recommended Posts

Posted

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

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...