Software for the official server

I will buy or accept as a gift a guide on how to make cameras move away. What file is responsible for this? I'm also wondering if it's possible to make a castbar in pvp like p pve?
 
I will buy or accept as a gift a guide on how to make cameras move away. What file is responsible for this? I'm also wondering if it's possible to make a castbar in pvp like p pve?
look, maybe this here:
.\Server\game\data\Interface\System\Camera.(PlayerCameraSettings).xdb
XML:
<?xml version="1.0" encoding="UTF-8" ?>
<PlayerCameraSettings>
    <minTransparencyDistance>0.3</minTransparencyDistance>
    <maxTransparencyDistance>0.65</maxTransparencyDistance>
    <maxZoomDistance>50</maxZoomDistance>
    <zoomStep>0.25</zoomStep>
    <minZoomStep>0.25</minZoomStep>
    <maxZoomStep>4</maxZoomStep>
    <autoreturn>
        <type>AUTORETURN_SMART</type>
        <tlitSpeed>90</tlitSpeed>
        <panSpeed>90</panSpeed>
        <zoomSpeed>15</zoomSpeed>
    </autoreturn>
    <smartAutoreturn>true</smartAutoreturn>
    <headBob>true</headBob>
    <zoomSteps>
        <Item>
            <step>0.5</step>
        </Item>
        <Item>
            <minDistance>0.5</minDistance>
            <step>0.1</step>
        </Item>
        <Item>
            <minDistance>1</minDistance>
            <step>0.5</step>
        </Item>
        <Item>
            <minDistance>2</minDistance>
            <step>1</step>
        </Item>
        <Item>
            <minDistance>4</minDistance>
            <step>2</step>
        </Item>
        <Item>
            <minDistance>8</minDistance>
            <step>4</step>
        </Item>
    </zoomSteps>
</PlayerCameraSettings>
 

al5yal511

Administrator
Staff member
Admin
Guide Author
look, maybe this here:
.\Server\game\data\Interface\System\Camera.(PlayerCameraSettings).xdb
XML:
<?xml version="1.0" encoding="UTF-8" ?>
<PlayerCameraSettings>
    <minTransparencyDistance>0.3</minTransparencyDistance>
    <maxTransparencyDistance>0.65</maxTransparencyDistance>
    <maxZoomDistance>50</maxZoomDistance>
    <zoomStep>0.25</zoomStep>
    <minZoomStep>0.25</minZoomStep>
    <maxZoomStep>4</maxZoomStep>
    <autoreturn>
        <type>AUTORETURN_SMART</type>
        <tlitSpeed>90</tlitSpeed>
        <panSpeed>90</panSpeed>
        <zoomSpeed>15</zoomSpeed>
    </autoreturn>
    <smartAutoreturn>true</smartAutoreturn>
    <headBob>true</headBob>
    <zoomSteps>
        <Item>
            <step>0.5</step>
        </Item>
        <Item>
            <minDistance>0.5</minDistance>
            <step>0.1</step>
        </Item>
        <Item>
            <minDistance>1</minDistance>
            <step>0.5</step>
        </Item>
        <Item>
            <minDistance>2</minDistance>
            <step>1</step>
        </Item>
        <Item>
            <minDistance>4</minDistance>
            <step>2</step>
        </Item>
        <Item>
            <minDistance>8</minDistance>
            <step>4</step>
        </Item>
    </zoomSteps>
</PlayerCameraSettings>
I think he was asking because the camera wasn't working
 

Top Bottom