![]() |
Damage based on objetive AR - Printable Version +- SphereCommunity (https://forum.spherecommunity.net) +-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d) +--- Forum: Script Help (/Forum-Script-Help) +--- Thread: Damage based on objetive AR (/Thread-Damage-based-on-objetive-AR) Pages: 1 2 |
Damage based on objetive AR - Snaigel - 02-16-2017 07:55 AM So I need help with this thing I want to do: Quote:ON=@Hit So the damage changes depending on the objetive's armor. But I don't know how should I code it RE: Damage based on objetive AR - Artyk - 02-16-2017 08:52 PM I cannot test this at the moment, but it should work Code: ON=@Hit RE: Damage based on objetive AR - xwerswoodx - 02-16-2017 11:21 PM SRC.ARMOR includes MODAR already, so local.armor = <src.ar> should be enough RE: Damage based on objetive AR - Coruja - 02-17-2017 04:11 AM honestly I think it will be better use a single formula to all damage x armor values instead split the values into IF "ranges" eg: the weapon damage is always 50 but this value will be lowered by target armor (which could be any value) Code: SRC.DAMAGE <eval 50*<SRC.ARMOR>/100> dam_fixed result: if weapon damage is 50 and target armor is 65, the final damage will be 50*65/100 = 32 RE: Damage based on objetive AR - Snaigel - 02-17-2017 07:58 AM But what if I want it with a random damage value?, should it be like this?: Quote:SRC.DAMAGE <eval R50,58*<SRC.ARMOR>/100> dam_fixed RE: Damage based on objetive AR - Coruja - 02-18-2017 01:47 AM rand <Rx,y> must be always used with <> brackets Code: SRC.DAMAGE <eval <R50,58>*<SRC.ARMOR>/100> dam_fixed RE: Damage based on objetive AR - Snaigel - 02-18-2017 04:44 AM I tested the formula now and it does more damage as more armor you have, because it multiplies Damage*AR . Maybe if I try like this?: SRC.DAMAGE <eval <R50,58>/<SRC.ARMOR>*50> dam_fixed So if the damage is 50 and their armor is 65, it does 38 damage, for example RE: Damage based on objetive AR - Coruja - 02-18-2017 05:47 AM I just created this simple (and untested) formula as example, probably it need to be improved if you want reproduce exactly the same armor calculation used internally on sphere source, it's better just use "SRC.DAMAGE <R50,58>" and let sphere use its default armor calculation. Otherwise if you want a custom formula, there's no right/wrong way to create it. It's pure math, you just need to keep changing the numbers until you find something that fit your needs RE: Damage based on objetive AR - Snaigel - 02-18-2017 06:28 AM Anyway my formula doesn't work either, here <R50,58>/<SRC.ARMOR> , the "/" seems to don't work. PS: The reason why I'm doing my own formulas is because the armor system on sphere is a F... sh..t , sorry for that bad words. But it calculates like... sometimes you do 0 damage, sometimes you do 6, sometimes you do 30... and I want my special weapons to be more fiable, I don't want them to do always the same damage but at least more regular than that crap of random numbers. RE: Damage based on objetive AR - Catalan_mistral - 02-18-2017 08:58 AM Think the trouble is you are going into decimals, believe you need to use floatval Code: SRC.DAMAGE <Floatval (<R50,58>) * ((100-<SRC.ARMOR>)/100)> dam_fixed with the little test I did though only problem there is if the src.armor is over 100 you get negative numbers, give it a try and see if that works, don't know how it will react to a decimal point number. ![]() |