Hello there. I'm trying to do something that is probably really easy, but strangely enough, I can't manage to have it working.
I created a widget to which I send the strength I want to be added to my $strength variable.
<<nobr>> <<widget "actualizeStats">>
<<set (_forcePlus) to $args[0]>>
<<set (_forceMinus) to $args[1]>>
<<set $strength += _forcePlus>>
<</widget>> <</nobr>>
But when I call it, it doesn't work. It combines both $strength and _forcePlus. It additions their number, but places them side by side...
For instance
<<actualizeStats "1" "0">>
Will give me :
strength : 01
(0 + 1), $strength is set at 0 in my StoryInit passage.
Help...
Thanks a lot !!