Jump to content
McKay Development

Recommended Posts

Posted (edited)

Hello i want a in-bot convertor by example if I type: 10.11 it will answer 10 REFS and 0 REC and 1 SCRAP.

 

How can I do this please reply me ;(..

post-336-0-49511100-1477762087_thumb.jpg

Edited by 72juju
Posted

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.

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...