The combo game

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

lenscas

Over-Achiever
Jul 31, 2013
2,015
1,801
248
Not being able to talk or write makes for an interesting challenge in an rp, however it is a lot easier in an rp then when you really can't do both.
 

lenscas

Over-Achiever
Jul 31, 2013
2,015
1,801
248
function niceNums(num){
if(typeof(num)=="string"){
num=Number(num.match(/[\d\.]+/))
}
//make the number a string and make sure it always has two decimals 1234 becomes 1234.00
var str=num.toFixed(2);
and num is for some reason undefined. Debug time!