First thing i want its to add "1" to "3" after divide them and ceil it. After that add the "num" and "te2"
Thanks
Develop games in your browser. Powerful, performant & highly capable.
Dictionary.Get("te2")+Dictionary.Get("num")+ceil((Dictionary.Get("1")+Dictionary.Get("3"))/10)
In your example you were dividing "3"/10 before add with "1"
Dictionary.Get("te2")+Dictionary.Get("num")+ceil((Dictionary.Get("1")+Dictionary.Get("3"))/10) In your example you were dividing "3"/10 before add with "1"
Correct.
Thank you very much!!!