Jump to content
McKay Development

72juju

Recommended Posts

This function should do the trick quite nicely.

 

As with any currency that has decimal places, floating-point imprecision can be an issue so it's best to convert everything to the lowest denomination.

function decimalToMetal(dec) {
	var output = {};
	
	var scrap = Math.round(dec * 9); // Convert it to the lowest denomination (scrap) because floats suck
	
	output.refined = Math.floor(scrap / 9);
	scrap -= output.refined * 9;
	
	output.reclaimed = Math.floor(scrap / 3);
	scrap -= output.reclaimed * 3;
	
	output.scrap = scrap;
	return output;
}

Returns an object with properties refined, reclaimed, and scrap.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...