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

Monster kills with 1 hit.

bybbzan

mapper
Joined
Aug 4, 2012
Messages
809
Solutions
2
Reaction score
136
Location
Sweden
Hello Otlanders.

I need some help from you guys :)

If i want a monster to kill a player with 1 hit, how to make that?
And also i need to know how to make monsters run from you when they see you, like chickens or rabbits.

Thanks in advance.
 
You can make the attack damage of the monster really high.
And for the run.
XML:
<flag runonhealth="20"/>
The number is with how much hp it should run. If you do the same number as the health of the monster it will always run.
 
You can make the attack damage of the monster really high.
And for the run.
XML:
<flag runonhealth="20"/>
The number is with how much hp it should run. If you do the same number as the health of the monster it will always run.

Oh thank you Limos :)
Do you have a solution to my other problem aswell?
 
Code:
<flags>
	<flag runonhealth="0"/> [B](Percent you want them to run on)[/B]
</flags>

Code:
<attacks>
	<attack name="melee" interval="2000" skill="100000" attack="100000"/> [B](100000 should 1 hit anyone)[/B]
	</attack>
</attacks>

That should do it, I'm terrible at scripting, so I'd test it out first.
 
Code:
<flags>
	<flag runonhealth="0"/> [B](Percent you want them to run on)[/B]
</flags>

Code:
<attacks>
	<attack name="melee" interval="2000" skill="100000" attack="100000"/> [B](100000 should 1 hit anyone)[/B]
	</attack>
</attacks>

That should do it, I'm terrible at scripting, so I'd test it out first.

Well seems like its working, thanks alot :)
Rep added to both you and Limos.

Close thread
 
Back
Top