ID:141922
 
Code:
    verb
Attack(mob/Victim in oview(1))
set category = "Abilities"
var/damage = pick(Strength)
oview() << "[usr] attacks [Victim] for [damage]"
HP -= damage


Problem description:

This is probably simple for most people yet I need to calculate the damage done by using the strength variable multipled by 5, the problem is i've looked around for awhile now and I can't find out how to multiply, thanks in advance.
The * operator is used for multiplication. In the 'see also' field there are other math operators, too.
In response to Kaioken (#1)
Thanks :D