• Hi Guest! To get rid of ads on the page, please consider donating through user upgrades or other methods.

Solved Hello, I have some questions about dat-Editor! Help me, plz! :(

Status
Not open for further replies.

BorisDemonic

Cricket
Member
Hi guys :)
Actually, I made some addons using exclamation mark(!) in /skill3_contextscriptdata.xml
ex) <!-- <condition skill="~~"> -->
But, it doesn't seem to be working properly.
I've understand that the exclamation mark means you won't use the phrase, is it correct?
If the method was wrong, could you teach me properly?? :(

I was wondering if it is possible to insert two or more <decision> in one <layer> in skill3_xml.
Actually, it seems like all <layer> have just one <decision>

example)
<layer>
<decision>
about skill A
</decision>
<decision>
about skill B
</decision>
</layer>


so,
1. I want to know the meaning of exclamation mark.
2. Is it possible to insert two or more <decision> in one <layer> in skill3_contextscriptdata.xml??
 
Last edited:

Endless

Founder
Staff member
Administrator
Don't type
Code:
<!-- <condition skill="~~"> -->
you need to remove the spaces at 2 areas.
after the <!-- and before the --> like this:
Code:
<!--<condition skill="~~">-->

You can add more decisions, but you need to also include the closing decision (</decision>)
 

BorisDemonic

Cricket
Member
Don't type
Code:
<!-- <condition skill="~~"> -->
you need to remove the spaces at 2 areas.
after the <!-- and before the --> like this:
Code:
<!--<condition skill="~~">-->

You can add more decisions, but you need to also include the closing decision (</decision>)

Wow! so much thank you! Now I can solve my problems thanks to you!! I wish you the best
 
Status
Not open for further replies.
Top Bottom