![]() |
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 |
RE: Damage based on objetive AR - Artyk - 02-19-2017 03:16 AM xwerswoodx you're right, thought it was separated as I saw that was used this way on sphere_combat.scp (I have to rework some of my scripts ![]() For multiply + divide operations there's MulDiv function Quote:12-01-2007, Shadow Dragon RE: Damage based on objetive AR - Catalan_mistral - 02-19-2017 04:22 AM well Muldiv fixes the equation, i'm quessing the wiki hasn't been updated for a while with some of the little extra functions Code: SRC.DAMAGE <MulDiv (<R50,58> <src.Armor> 100)> dam_fixed So hopefully this sorts out your code now Snaigel RE: Damage based on objetive AR - Snaigel - 02-19-2017 09:29 AM The console says can't resolve Muldiv blah blah RE: Damage based on objetive AR - Coruja - 02-19-2017 01:23 PM muldiv is just a shortcut for multiply/divide, so Code: <MulDiv <R50,58>,<SRC.ARMOR>,100> Code: <eval <R50,58>*<SRC.ARMOR>/100> it can make things easier if you just want fill some basic things, like percent messages "Your life is <MulDiv <HITS>, 100, <MAXHITS>>%" (eg: your life is 20%, 50%, 100%, etc) but it doesn't make sense use MULDIV if you already using eval where you can insert the values (x*y/z) directly on the formula eg: doesnt make sense use <eval 10+<MulDiv 10,20,30>> if you can use <eval 10+(10*20/30)> so getting back to basics: the first thing to do is create the formula without use sphere scripts. Formulas are pure math, so you just need to grab some text editor, paper, calculator, or whatever, and write some formulas until you find an formula that works best for your usage. Then after you find an formula, you just need to write this same formula now on sphere scripts RE: Damage based on objetive AR - Snaigel - 02-20-2017 07:31 AM Too much for my knowledge about this xd, but thanks. I will do it with the first way, with the elseifs, since I can't make the other formula to first divide and then multiply, it only works if I first multiply and then divide, I guess it's because I get decimals like someone said. RE: Damage based on objetive AR - Coruja - 02-20-2017 12:51 PM that's what I said, formulas are pure math. So before create an formula on sphere scripts, you must make sure that the math is correct. After you make sure the math is working fine, you write the same formula now on sphere scripts. This will make things easier, because if you first create the sphere script without even know if the math behind the formula is correct, the formula will not work properly eg: to create an formula where you have the damage and you want get an % of this value, you just need a basic percent formula: Code: damage * armor / 100 Code: damage * (100 - armor) / 100 Code: <eval damage * (100 - armor) / 100> ===> <eval <R50,58> * (100 - <SRC.ARMOR>) / 100> |