Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

help needed (Quest)

Junior Spellweaver
Joined
Oct 9, 2011
Messages
176
Reaction score
6
im trying to fix a quest
with one file i got the quest opens on npc klick
CabalMainkopie_vBbFeKtRvG - help needed (Quest) - RaGEZONE Forums




but when i add the edited quest to my quest file if i klick on the npc and klick the quest im getting a menu that is wrong and dont get the quest
CabalMainkopie_u0eXDmbq5i - help needed (Quest) - RaGEZONE Forums

is there some where where i need to setup the quest to work after klicking quest and quest name to start the quest
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Aug 30, 2023
Messages
21
Reaction score
1
could be script.enc, it's a Quest already inside all clients? or you created a individual Quest?
 
Upvote 0
Newbie Spellweaver
Joined
Aug 29, 2009
Messages
77
Reaction score
0
script.enc

case id

case_set id

phrase id = script_msg =msg id

example

my add quest

<case id="5232" type="0" cont="3700,0" op="-1" />
<case id="5233" type="0" cont="3700,1" op="-1" />
<case id="5234" type="0" cont="3700,2" op="-1" />

<case_set id="5026">
<case_type id="5232" /> = UP case id
</case_set>
<case_set id="5027">
<case_type id="5233" /> = UP case id
</case_set>
<case_set id="5028">
<case_type id="5234" /> = UP case id

<phrase id="8909" cont="20783">
<child cont="20784" order="1" link_id="-1">
<event order="1" id="89" param="" />
</child>
<child cont="20785" order="2" link_id="-1">
<event order="1" id="1" param="" />
</child>
</phrase>
<phrase id="8910" cont="20786">
<child cont="20787" order="1" link_id="-1">
<event order="1" id="1" param="" />
</child>
</phrase>
<phrase id="8911" cont="20788">
<child cont="20789" order="1" link_id="-1">
<event order="1" id="90" param="" />
</child>
</phrase>

my add world_id="4" npc_id="1"

<npc_case id="5026" phrase_id="8909" order="xxxx" /> order = ? world_id="4" npc_id="1" = sort
phrase_id = <phrase id="8909" cont="20783">

<npc_case id="5027" phrase_id="8910" order="xxxx" />
<phrase id="8910" cont="20786">
<npc_case id="5028" phrase_id="8911" order="xxxx" />
<phrase id="8911" cont="20788">

npc_case id = case_set id
 
Last edited:
Upvote 0
Junior Spellweaver
Joined
Jul 30, 2020
Messages
163
Reaction score
33
<npc_case id="5232" phrase_id="8909" order="5026" />

and so on and so forth
 
Upvote 0
Back
Top