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!

Why DG entries in my cabal main look like this?

Newbie Spellweaver
Joined
Apr 8, 2014
Messages
45
Reaction score
0
qtem_desc33556178-2175
qtem_desc33554552-2176
qtem_desc33556291-2177
qtem_desc33556335-2178
qtem_desc33556470-2185
qtem_desc33556524-2186
qtem_desc33556601-2187
qtem_desc33556678-2188
qtem_desc33556817-2190

some entries look like this can anyone explain this to me please..
 
RaGEZONE VIP
[VIP] Member
Joined
Oct 10, 2019
Messages
198
Reaction score
457
Because the one who collected your client did not understand well what he was doing or did not plan his further support... Look for these identifiers in the Quest.dec - there you will see the real IDs and options.
 
Upvote 0
Newbie Spellweaver
Joined
Apr 8, 2014
Messages
45
Reaction score
0
they have the same number, i cant finish fixing my labyrinth because of this stuck on dragon orb, cant get quest item to open new portal to go down dragons chest..
 
Upvote 0
RaGEZONE VIP
[VIP] Member
Joined
Oct 10, 2019
Messages
198
Reaction score
457
IDs 3355**** appeared in later episodes and are not supported by episode 8. The only option is that the author did not change the text links, but changed the real ID and option of the item. Then you can find them in the Quest.dec. Otherwise, you won't be able to find something in your client that isn't there.
It should look something like this:
Code:
<iteminfo	qtem_id="[COLOR=#ff0000]3449[/COLOR]"	>
    <desc_info	option="[COLOR=#ff0000]2000[/COLOR]"	type="3"	event="0"	name="qtem[COLOR=#008000]33556178[/COLOR]-[COLOR=#008000]2175[/COLOR]"	desc="qtem_desc[COLOR=#008000]33556178[/COLOR]-[COLOR=#008000]2175[/COLOR]"	/>
</iteminfo>
Here we see real ItemId = 3449 and real option = 2000. Use ctrl + f to search
 
Upvote 0
Newbie Spellweaver
Joined
Apr 8, 2014
Messages
45
Reaction score
0
IDs 3355**** appeared in later episodes and are not supported by episode 8. The only option is that the author did not change the text links, but changed the real ID and option of the item. Then you can find them in the Quest.dec. Otherwise, you won't be able to find something in your client that isn't there.
It should look something like this:
Code:
<iteminfo    qtem_id="[COLOR=#ff0000]3449[/COLOR]"    >
    <desc_info    option="[COLOR=#ff0000]2000[/COLOR]"    type="3"    event="0"    name="qtem[COLOR=#008000]33556178[/COLOR]-[COLOR=#008000]2175[/COLOR]"    desc="qtem_desc[COLOR=#008000]33556178[/COLOR]-[COLOR=#008000]2175[/COLOR]"    />
</iteminfo>
Here we see real ItemId = 3449 and real option = 2000. Use ctrl + f to search

yes i finally found it, thankyou :)
 
Upvote 0
Back
Top