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

OTHire - Problem with splash / blood

Niubi

Member
Joined
Jan 3, 2019
Messages
20
Reaction score
5
I'm using OTHire and I have problem with splash. When I attack monster there is a water splash instead of blood pool.

Where are the things responsible for that bug, where should I look and fix? Thank you !!!
 
Last edited:
Solution
Ok, is it be possible to check this is the same? I wonder if the fluid client is possibly the wrong numbers, and then giving the wrong color/splash.

PHP:
<item id="20001" name="water" fluidClient="1"/>
    <item id="20002" name="blood" fluidClient="2"/>
    <item id="20003" name="beer" fluidClient="3"/>
    <item id="20004" name="slime" fluidClient="4"/>
    <item id="20005" name="lemonade" fluidClient="5"/>
    <item id="20006" name="milk" fluidClient="6"/>
    <item id="20007" name="manafluid" fluidClient="7"/>
    <item id="20010" name="lifefluid" fluidClient="10"/>
    <item id="20011" name="oil" fluidClient="11"/>
    <item id="20013" name="urine" fluidClient="13"/>
    <item id="20014" name="coconut milk" fluidClient="14"/>...
Perhaps it may be in the monster information; look in the monster xml, and ensure that the race is set to blood, or venom, etc. This seems to control the color of the splash I get when attacking monsters. Here is a sample of a monster:
PHP:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="cobra" nameDescription="a cobra" race="blood" experience="30" speed="120" manacost="275">
    <health now="65" max="65"/>
    <look type="81" corpse="3007"/>
    <targetchange interval="1000" chance="0"/>
    <targetstrategies nearest="100" health="0" damage="0" random="0"/>
    <flags>
        <flag attackable="1"/>
        <flag hostile="1"/>
        <flag summonable="1"/>
        <flag convinceable="1"/>
        <flag illusionable="1"/>
        <flag pushable="1"/>
        <flag canpushitems="0"/>
        <flag canpushcreatures="0"/>
        <flag targetdistance="1"/>
        <flag staticattack="80"/>
        <flag runonhealth="0"/>
    </flags>
    <attacks>
        <attack name="melee" skill="23" attack="15" poison="100"/>
        <attack name="poisoncondition" chance="25" range="5" min="-14" max="-26">
            <attribute key="shooteffect" value="poison"/>
        </attack>
    </attacks>
    <defenses armor="1" defense="6">
    </defenses>
    <elements>
        <element earthPercent="100"/>
    </elements>
    <immunities>
    </immunities>
    <voices interval="1000" chance="5">
        <voice sentence="Zzzzzz"/>
    </voices>
    <loot>
    </loot>
</monster>




Good luck!
 
Perhaps it may be in the monster information; look in the monster xml, and ensure that the race is set to blood, or venom, etc. This seems to control the color of the splash I get when attacking monsters. Here is a sample of a monster:

Good luck!

Thank you for trying to help but it is not that

8fDbNIj.png
 
Ok, is it be possible to check this is the same? I wonder if the fluid client is possibly the wrong numbers, and then giving the wrong color/splash.

PHP:
<item id="20001" name="water" fluidClient="1"/>
    <item id="20002" name="blood" fluidClient="2"/>
    <item id="20003" name="beer" fluidClient="3"/>
    <item id="20004" name="slime" fluidClient="4"/>
    <item id="20005" name="lemonade" fluidClient="5"/>
    <item id="20006" name="milk" fluidClient="6"/>
    <item id="20007" name="manafluid" fluidClient="7"/>
    <item id="20010" name="lifefluid" fluidClient="10"/>
    <item id="20011" name="oil" fluidClient="11"/>
    <item id="20013" name="urine" fluidClient="13"/>
    <item id="20014" name="coconut milk" fluidClient="14"/>
    <item id="20015" name="wine" fluidClient="15"/>
    <item id="20019" name="mud" fluidClient="19"/>
    <item id="20021" name="fruit juice" fluidClient="21"/>
    <item id="20027" name="rum" fluidClient="27"/>
    <item id="20035" name="manapotion" fluidClient="35"/>
    <item id="20036" name="mead" fluidClient="36"/>

This above should be in your items.xml, likely the very bottom.

Good luck!
 
Solution
Ok, is it be possible to check this is the same? I wonder if the fluid client is possibly the wrong numbers, and then giving the wrong color/splash.

PHP:
<item id="20001" name="water" fluidClient="1"/>
    <item id="20002" name="blood" fluidClient="2"/>
    <item id="20003" name="beer" fluidClient="3"/>
    <item id="20004" name="slime" fluidClient="4"/>
    <item id="20005" name="lemonade" fluidClient="5"/>
    <item id="20006" name="milk" fluidClient="6"/>
    <item id="20007" name="manafluid" fluidClient="7"/>
    <item id="20010" name="lifefluid" fluidClient="10"/>
    <item id="20011" name="oil" fluidClient="11"/>
    <item id="20013" name="urine" fluidClient="13"/>
    <item id="20014" name="coconut milk" fluidClient="14"/>
    <item id="20015" name="wine" fluidClient="15"/>
    <item id="20019" name="mud" fluidClient="19"/>
    <item id="20021" name="fruit juice" fluidClient="21"/>
    <item id="20027" name="rum" fluidClient="27"/>
    <item id="20035" name="manapotion" fluidClient="35"/>
    <item id="20036" name="mead" fluidClient="36"/>

This above should be in your items.xml, likely the very bottom.

Good luck!

Well, I have probably accidentally removed this part. Works fine now, thank you - have a good day!
 
Glad to help, many people did help me in here so I try to return even I don't know exactly everytime. Good luck with your server!
 
Back
Top