• 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!

C++ OTHire monster question

rudger

Active Member
Joined
Oct 1, 2010
Messages
251
Solutions
1
Reaction score
32
Location
The Netherlands
Code:
<?xml version="1.0"?>
<monster name="Queen Amazon" level="100" maglevel="150" experience="1200" pushable="0" armor="40" defense="40"

canpushitems="0" staticattack="50" changetarget="200" speed="332">

*******************************************************************************************
*                QUEEN AMAZON: This monster Was made by Amy Azzkaban                      *
*                                       Only 7.6                                          *
*******************************************************************************************

    <health now="1500" max="1500"/>
    <look type="137" head="114" body="82" legs="120" feet="114" corpse="3065"/>
    <combat targetdistance="3" runonhealth="0"/>

<attacks>
    <attack type="melee" mindamage="77" maxdamage="85"/>
    <attack type="distance" name="throwingknife" mindamage="40" maxdamage="124" cycleticks="2000" probability="60"/>
    <attack type="distance" name="arrow" mindamage="37" maxdamage="204" cycleticks="1000" probability="60"/>
    <attack type="instant" name="exura" exhaustion="500" cycleticks="6000" probability="60"/>
    <attack type="instant" name="banshee_sonar" exhaustion="500" cycleticks="4000" probability="70"/>
</attacks>

<defenses>

</defenses>

<voices>
    <voice sentence="Your head shall be mine!"/>
    <voice sentence="Yeeee ha!"/>
</voices>

 <loot>
    <item id="2148" countmax="21" chance1="100000" chancemax="0"/>
    <item id="2467" chance="5000"/>
    <item id="2385" chance="20000"/>
    <item id="2229" countmax="3" chance1="10000" chancemax="0"/>
    <item id="1987" chance="100000">
    <inside>
    <item id="2385" chance="5000"/>
    <item id="2050" chance="5000"/>
    <item id="2125" chance="3333"/>
    <item id="2690" countmax="2" chance1="20000" chancemax="0"/>
    <item id="2147" countmax="2" chance1="3333" chancemax="0"/>
    <item id="2050" chance="20000"/>
    </inside>
    </item>
 </loot>
</monster>

In this monster file there is cycleticks and probability could someone explain to me what that is?
 
Back
Top