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

[question]

YugiNao

Banned User
Joined
Nov 22, 2008
Messages
211
Reaction score
3
how to make a sudden death deal more dmg i dont get the formula. in the script.

Code:
local min = -(((level/5)+(maglevel*4))+60)
	local max = -(((level/5)+(maglevel*7))+60)

what do i change?
 
this might help you understand abit i have edited the script for you also and explained it so you can edit it yourslef and work out the damages

Code:
local min = -(((level*2)+(maglevel*4))*1.1)
	local max = -(((level*2)+(maglevel*7))*1.3)

so it will be level x 2 say your player is level (100) 100 x 2 = 200 damage
mag lvl x 4 say your player has m lvl (50) 50 x 4 = 200 damage
200 damage + 200 damage = 400 damage
you multiply 400 damage by 1.1 so 400 x 1.1 = 440
(thats your minimum damage on a creature)
(to work out your player damage half your damage what it would hit on monster (440) half it = (220) minimum hit on player = 220)

hope that helped :)
 
Last edited:
Back
Top