Отключение итемов

MANUAL

Baron
Customer
Парни как сделать что бы итемы по типо плодов баффов нельзя было юзать на твт ивентах?
 
Парни как сделать что бы итемы по типо плодов баффов нельзя было юзать на твт ивентах?
заходишь в свои инсты в которых у тебя твт проходит и указываешь там заперт на ид ( и радуйся )
 
Парни как сделать что бы итемы по типо плодов баффов нельзя было юзать на твт ивентах?
Code:
<etcitem id="6503" name="Big Yellow Treasure Chest">
  <!-- [big_yellow_treasure_box] -->
  <set name="class" value="OTHER"/>
  <set name="crystal_type" value="NONE"/>
  <set name="icon" value="icon.etc_treasure_box_i02"/>
  <set name="price" value="608"/>
  <set name="stackable" value="true"/>
  <set name="type" value="OTHER"/>
  <set name="weight" value="100"/>
  <cond msgId="1508">
    <not>
      <player on_pvp_event="true"/>
    </not>
  </cond>
</etcitem>

<cond msgId="1508">
<not>
<player on_pvp_event="true"/>
</not>
</cond>
 
Code:
<etcitem id="6503" name="Big Yellow Treasure Chest">
  <!-- [big_yellow_treasure_box] -->
  <set name="class" value="OTHER"/>
  <set name="crystal_type" value="NONE"/>
  <set name="icon" value="icon.etc_treasure_box_i02"/>
  <set name="price" value="608"/>
  <set name="stackable" value="true"/>
  <set name="type" value="OTHER"/>
  <set name="weight" value="100"/>
  <cond msgId="1508">
    <not>
      <player on_pvp_event="true"/>
    </not>
  </cond>
</etcitem>

<cond msgId="1508">
<not>
<player on_pvp_event="true"/>
</not>
</cond>
Спасибо братец!
 
Code:
<etcitem id="6503" name="Big Yellow Treasure Chest">
  <!-- [big_yellow_treasure_box] -->
  <set name="class" value="OTHER"/>
  <set name="crystal_type" value="NONE"/>
  <set name="icon" value="icon.etc_treasure_box_i02"/>
  <set name="price" value="608"/>
  <set name="stackable" value="true"/>
  <set name="type" value="OTHER"/>
  <set name="weight" value="100"/>
  <cond msgId="1508">
    <not>
      <player on_pvp_event="true"/>
    </not>
  </cond>
</etcitem>

<cond msgId="1508">
<not>
<player on_pvp_event="true"/>
</not>
</cond>
в таком формате можно же прописать ?

<not>
<player on_pvp_event="false"/>
<player olympiad="false"/>
</not>
</cond>
 
or, примеры есть
<not>
<player on_pvp_event="false"/>
<player olympiad="false"/>
</not>
</cond>


ну то есть как я понял если я выставлю так как я написал то работать на пвп и олимпе не будет верно?
 
О боги... Показываю.
1.
Code:
    <cond msgId="1507">
      <not>
        <player olympiad="true"/>
      </not>
    </cond>
    <cond msgId="1507">
      <not>
        <player on_pvp_event="true"/>
      </not>
    </cond>
2.
Code:
<not>
 <or>
  <player on_pvp_event="false"/>
  <player olympiad="false"/>
 </or>
</not>
 
О боги... Показываю.
1.
Code:
    <cond msgId="1507">
      <not>
        <player olympiad="true"/>
      </not>
    </cond>
    <cond msgId="1507">
      <not>
        <player on_pvp_event="true"/>
      </not>
    </cond>
2.
Code:
<not>
 <or>
  <player on_pvp_event="false"/>
  <player olympiad="false"/>
 </or>
</not>
Сам усложняешь я нормально спросил ахахах ;);):D
 
Back
Top