I'm trying to make my own N2O mod just to practice but I cant figure out how to give adjustable power output.
You need to configure the "shot" part as adjustable, using variables. Like this: Code: "n2o_shot_variable":{ "information":{ "name":"Adjustable Shot Size", }, "slotType":"CRD_n2o_shot", "variables":[ ["name","type","unit","category","default","min","max","title","description"], ["$n2o_power","range","kW","Nitrous Oxide",400,300,500,"Added Power","Power increase the N2O injection grants"{"stepDis":50}], ], "n2o":{ "addedPower":"$n2o_power", }, }, The variables section determines the range of adjustability: The parameter "addedPower":"$n2o_power" varies according to the value set for the n2o_power variable.