• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Help with mission state (quest)

JuliusMS

New Member
Joined
Nov 25, 2013
Messages
30
Reaction score
4
Hi, i have a simple question...

The case is i wasted 8 hours to create a npc script with the objetive of kill 40 rats...

Yeah... 8 hours because i need to learn how to make own npc, some time in the final the result is a console error xD...

Back to the caso... The mision give you the objetive to kill 40 rats...

I make its, but the problem is...

Is i need to make this to make the script or npc run...

Code:
<mission name="Plaga de ratas" storageid="5003" startvalue="0" endvalue="40">
       <missionstate id="0" description="You already hunted 0/500 cyclops."/>
       <missionstate id="1" description="You already hunted 1/500 cyclops."/>
       <missionstate id="2" description="You already hunted 2/500 cyclops."/>
       <missionstate id="3" description="You already hunted 3/500 cyclops."/>
       <missionstate id="4" description="You already hunted 4/500 cyclops."/>
       <missionstate id="5" description="You already hunted 5/500 cyclops."/>
       <missionstate id="6" description="You already hunted 6/500 cyclops."/>
       <missionstate id="7" description="You already hunted 7/500 cyclops."/>
       <missionstate id="8" description="You already hunted 8/500 cyclops."/>
       <missionstate id="9" description="You already hunted 9/500 cyclops."/>
       <missionstate id="10" description="You already hunted 10/500 cyclops."/>
       <missionstate id="11" description="You already hunted 11/500 cyclops."/>
       <missionstate id="12" description="You already hunted 12/500 cyclops."/>
       <missionstate id="13" description="You already hunted 13/500 cyclops."/>
       <missionstate id="14" description="You already hunted 14/500 cyclops."/>
       <missionstate id="15" description="You already hunted 15/500 cyclops."/>
       <missionstate id="16" description="You already hunted 16/500 cyclops."/>
       <missionstate id="17" description="You already hunted 17/500 cyclops."/>
       <missionstate id="18" description="You already hunted 18/500 cyclops."/>
       <missionstate id="19" description="You already hunted 19/500 cyclops."/>
       <missionstate id="20" description="You already hunted 20/500 cyclops."/>
       <missionstate id="21" description="You already hunted 21/500 cyclops."/>
       <missionstate id="22" description="You already hunted 22/500 cyclops."/>
       <missionstate id="23" description="You already hunted 23/500 cyclops."/>
       <missionstate id="24" description="You already hunted 24/500 cyclops."/>
       <missionstate id="25" description="You already hunted 25/500 cyclops."/>
       <missionstate id="26" description="You already hunted 26/500 cyclops."/>
       <missionstate id="27" description="You already hunted 27/500 cyclops."/>
       <missionstate id="28" description="You already hunted 28/500 cyclops."/>
       <missionstate id="29" description="You already hunted 29/500 cyclops."/>
       <missionstate id="30" description="You already hunted 30/500 cyclops."/>
       <missionstate id="31" description="You already hunted 31/500 cyclops."/>
       <missionstate id="32" description="You already hunted 32/500 cyclops."/>
       <missionstate id="33" description="You already hunted 33/500 cyclops."/>
       <missionstate id="34" description="You already hunted 34/500 cyclops."/>
       <missionstate id="35" description="You already hunted 35/500 cyclops."/>
       <missionstate id="36" description="You already hunted 36/500 cyclops."/>
       <missionstate id="37" description="You already hunted 37/500 cyclops."/>
       <missionstate id="38" description="You already hunted 38/500 cyclops."/>
       <missionstate id="39" description="You already hunted 39/500 cyclops."/>
       <missionstate id="40" description="You already hunted 40/500 cyclops."/></mission>


And that wast a lot of time...

Exist a form to make that smart ?...

I try <missionstate id="0-40" But nothing... help please

server styller premium yourots...

Version 8.60
 
Last edited:
On tsf 1.0 use only this:

PHP:
<mission name="Plaga de ratas" storageid="5003" startvalue="0" endvalue="40"
description="You already hunted |STATE|/40 Rats." />
 
Back
Top