Hi,
I want to implement a system point as bellow :
You have <span id="#value-point"><<print $Assign_Point>></span> points to assign to your stats :
Social : <span id="stats-Soc"><<print $Social>></span> <<link "[+]">><<set $Social++; $Assign_Point-->><<replace "#stats-Soc">><<print $Social>><</replace>><<replace "#value-point">><<print $Assign_Point>><</replace>><</link>>/<<link "[-]">><<set $Social--; $Assign_Point++>><<replace "#stats-Soc">><<print $Social>><</replace>><<replace "#value-point">><<print $Assign_Point>><</replace>><</link>>
The problem is that
<<replace>>: no elements matched the selector "#value-point".
Thanks.
P.S. : I would like to make a max point to allocate (max 5) ? (Maybe it's easy but as there is a problem first ^^).