A simple question.
When a roll has been done it shows as:
"Need Roll - 150 for [SomeItem] by [SomePerson] + role bonus"
I wish for some way to isolate the number 150. However there is no such thing as a split in lua (as far as I know) so what's the best way to accomplish this?
tonumber
in the result:number = tonumber(string.match(theString, "%d+"))
– Platte