Frouk Master Cheater
Reputation: 5
Joined: 22 Jun 2021 Posts: 493
|
Posted: Sat Jul 10, 2021 3:31 am Post subject: [Tut]Accuracy |
|
|
Here's some code to make accuracy of something
Code: | address1 = 0x123456;
address2 = 0x123456;
--[[This two addresses are need to make accuracy just replace the 0x123456 with your addresses,you can rename this]]
readAddress1 = readInteger(address1);
readAddress2 = readInteger(address2);
--You can rename this
difference = (readAddress1/readAddress2);
accuracy = math.abs(100 * difference);
--[[Select between this
print(accuracy)
or
showMessage(accuracy)
]]
|
If something wrong with your code you can post it here
|
|