Alright so I want to make an alias that takes two variables, @strength and @constitution, and adds them together then divides that by 10 then divides that by 2. Once the math is done it would SendImmediate (train %1 ##). Where ## is the outcome of the math.
I tried doing this on my own, starting with:
bc.digits (20)
n = bc.number (((@strength + @constitution) / 10) / 2)
print(n)
Witch worked so I changed print(n) to SendImeediate(n) which also worked. But the moment I tried adding anything before the n within the ( ) it failed.
Could I please get some help?
I tried doing this on my own, starting with:
bc.digits (20)
n = bc.number (((@strength + @constitution) / 10) / 2)
print(n)
Witch worked so I changed print(n) to SendImeediate(n) which also worked. But the moment I tried adding anything before the n within the ( ) it failed.
Could I please get some help?