Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

problem with NPCs damage

Initiate Mage
Joined
Aug 28, 2023
Messages
2
Reaction score
0
Hello!
Have you ever faced the problem that NPCs are killed with one blow?
Source:
Which files are responsible for the damage caused by NPCs ?
 
Junior Spellweaver
Joined
Mar 2, 2023
Messages
196
Reaction score
326
Is there any point in using Java 7.7 Emu if exists 7.7 PTS ?

Hello!
Have you ever faced the problem that NPCs are killed with one blow?
Source:
Which files are responsible for the damage caused by NPCs ?
it's really simple...
There are no errors in the code in terms of attacking mobs, everything is much simpler.

As an example, take the NPC "Qooqoo" (id: 651884)
npc_templates.xml:
Code:
    <npc_template npc_id="651884" level="1" name="Qooqoo" name_id="300431" name_desc="Qooqoo_1_n" height="0.65" rank="VETERAN" rating="NORMAL" race="BEAST" tribe="MONSTER" ai="aggressive" srange="8" arange="2" adelay="2142" arate="1000" hpgauge="1" floatcorpse="true">
        <stats maxHp="2" maxXp="10000" main_hand_attack="1000" main_hand_accuracy="1000" pdef="1000" mresist="4000" power="100" evasion="1000" accuracy="1000">
            <speeds walk="0.408" run="6.0" run_fight="6.0"/>
        </stats>
        <bound_radius front="0.42" side="0.79" upper="0.65"/>
    </npc_template>

I think you'll find a mistake here quickly)
 
Last edited:
Upvote 0
Back
Top