ID:1279104
 
Redundant
Applies to:Dream Maker
Status: Redundant

This feature has already been implemented, or is already achievable with existing methods.
They should make a X= operation to multiply a var with the operation for example

mob
Player
Races
WereWolf
verb
Tranform()
usr.icon = 'Werewolf.dmi'
str x= 2


Or like this


mob
Player
Races
WereWolf
verb
Tranform()
usr.icon = 'Werewolf.dmi'
str x 2


It will make Dream Maker easier to use and make a Transformation verb easier to make
So you mean the *= and * operators?

mob/verb/Multiply()
var i = 5
i *= 2
src << i
LordAndrew resolved issue (Redundant)
never seen that thing in my life. But i just searched it up and yes.
Is there a way to subtract a multiplication.
In response to Dr.Penguin
How do you mean? Like, dividing?

mob/verb/Multiply_and_Divide()
var i = 5
i *= 2
src << i
i /= 2
src << i


(See also: / and /= operators)
In response to Dr.Penguin
Dr.Penguin wrote:
Is there a way to subtract a multiplication.

I've no idea what that means. You can divide using the / and /= operators.

EDIT: Yeah, what he said while I was typing ;)
Thanks guys.