Amazing tutorial , keep doing more davinci content like this
@enviaticsАй бұрын
Thanks! Glad you found it helpful 👍
@GynthuEditingАй бұрын
Great tutorial man, but how do you change the coma position and amount of numbers behind the coma? For example: 5,30 or 9,32 etcetc
@enviaticsАй бұрын
Thanks for the feedback.... Right now you can't, the delimiter is used for delimiting thousands, not hundreds... I think this covers most use cases... I guess there is a case to be made for changing this to represent currency ($1,25)....etc. You can hard code it in the example code I gave by removing one of the '%d' elements from the gsub statement in this line, as I've done here ..... finalnum = (string.format('%d', number)):reverse():gsub("(%d%d)","%1" .. Delimiter.Value):gsub(",(%-?)$","%1"):reverse() It's something I can try and roll into an update of the number counter preset in a future release.
@GynthuEditingАй бұрын
@@enviatics Perfect! It worked! Thank you so much. Such a life saver