Currency Exchange Calculator (script): Difference between revisions

From Elanthipedia
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 4: Line 4:
|auth=[[User:Isharon|Isharon]]
|auth=[[User:Isharon|Isharon]]
}}
}}
This script tells you how much money is needed to convert from one currency to another, including the exchange fee.
This script tells you how much money is needed to convert from one currency to another, including the exchange fee. (You might end up with an extra copper, because the script always rounds up.)

==Changelog==

'''06/12/2011'''
*Fixed bug that caused script to underestimate the amount needed.


==Syntax==
==Syntax==
Line 17: Line 22:
==Script==
==Script==


<pre>evalmath FEE 1 - %2/100
<pre>
evalmath RATE %2/100


echo
echo
Line 38: Line 42:
Kronars:
Kronars:


Start = Final / Exchange / (1-Fee)
evalmath KROLIR ceiling(%1 * 1.25)

evalmath KROLIRFEE ceiling(%KROLIR*%RATE)
evalmath KROLIRTOT %KROLIR + %KROLIRFEE
evalmath KROLIR ceiling(%1/.8/%FEE)
evalmath KRODOK ceiling(%1 * 1.385)
evalmath KRODOK ceiling(%1/.721/%FEE)
evalmath KRODOKFEE ceiling(%KRODOK*%RATE)
evalmath KRODOKTOT %KRODOK + %KRODOKFEE


echo
echo
echo Exchange fee used: %2%
echo Exchange fee used: %2%
echo
echo
echo Need %1 Lirums? Withdraw %KROLIRTOT Kronars
echo Need %1 Lirums? Withdraw %KROLIR Kronars
echo
echo
echo Need %1 Dokoras? Withdraw %KRODOKTOT Kronars
echo Need %1 Dokoras? Withdraw %KRODOK Kronars
echo
echo
goto end
goto end
Line 56: Line 58:
Lirums:
Lirums:


evalmath LIRKRO ceiling(%1 * .8)
evalmath LIRKRO ceiling(%1/1.25/%FEE)
evalmath LIRKROFEE ceiling(%LIRKRO*%RATE)
evalmath LIRDOK ceiling(%1/.902/%FEE)
evalmath LIRKROTOT %LIRKRO + %LIRKROFEE
evalmath LIRDOK ceiling(%1 * 1.108)
evalmath LIRDOKFEE ceiling(%LIRDOK*%RATE)
evalmath LIRDOKTOT %LIRDOK + %LIRDOKFEE


echo
echo
echo Exchange fee used: %2%
echo Exchange fee used: %2%
echo
echo
echo Need %1 Kronars? Withdraw %LIRKROTOT Lirums
echo Need %1 Kronars? Withdraw %LIRKRO Lirums
echo
echo
echo Need %1 Dokoras? Withdraw %LIRDOKTOT Lirums
echo Need %1 Dokoras? Withdraw %LIRDOK Lirums
echo
echo
goto end
goto end
Line 74: Line 72:
Dokoras:
Dokoras:


evalmath DOKKRO ceiling(%1 * .721)
evalmath DOKKRO ceiling(%1/1.385/%FEE)
evalmath DOKKROFEE ceiling(%DOKKRO*%RATE)
evalmath DOKLIR ceiling(%1/1.108/%FEE)
evalmath DOKKROTOT %DOKKRO + %DOKKROFEE
evalmath DOKLIR ceiling(%1 * .902)
evalmath DOKLIRFEE ceiling(%DOKLIR*%RATE)
evalmath DOKLIRTOT %DOKLIR + %DOKLIRFEE


echo
echo
echo Exchange fee used: %2%
echo Exchange fee used: %2%
echo
echo
echo Need %1 Kronars? Withdraw %DOKKROTOT Dokoras
echo Need %1 Kronars? Withdraw %DOKKRO Dokoras
echo
echo
echo Need %1 Lirums? Withdraw %DOKLIRTOT Dokoras
echo Need %1 Lirums? Withdraw %DOKLIR Dokoras
echo
echo
goto end
goto end




end:
end:</pre>
</pre>

Revision as of 14:21, 12 June 2011

Currency Exchange Calculator (script)
Category information
Front-end Genie
Author Isharon

This script tells you how much money is needed to convert from one currency to another, including the exchange fee. (You might end up with an extra copper, because the script always rounds up.)

Changelog

06/12/2011

  • Fixed bug that caused script to underestimate the amount needed.

Syntax

.EXCH %AMOUNT %FEE

%amount: the desired amount of the currency you need
%fee: the bank's exchange fee, expressed as a whole number

For example, let's say that you're in the Crossing, and you need 2500 Lirums. Your money is in Kronars, and the bank's exchange fee is 5%. You enter .EXCH 2500 5. After starting the script, you see a menu that prompts you to select your starting currency, which is Kronars.

Script

evalmath FEE 1 - %2/100

echo
echo Starting Currency:
echo
echo 1: Kronars
echo
echo 2: Lirums
echo
echo 3: Dokoras
echo
echo Enter Number:

matchre Kronars ^1
matchre Lirums ^2
matchre Dokoras ^3
matchwait

Kronars:

Start = Final / Exchange / (1-Fee)

evalmath KROLIR ceiling(%1/.8/%FEE)
evalmath KRODOK ceiling(%1/.721/%FEE)

echo
echo Exchange fee used: %2%
echo
echo Need %1 Lirums? Withdraw %KROLIR Kronars
echo
echo Need %1 Dokoras? Withdraw %KRODOK Kronars
echo
goto end

Lirums:

evalmath LIRKRO ceiling(%1/1.25/%FEE)
evalmath LIRDOK ceiling(%1/.902/%FEE)

echo
echo Exchange fee used: %2%
echo
echo Need %1 Kronars? Withdraw %LIRKRO Lirums
echo
echo Need %1 Dokoras? Withdraw %LIRDOK Lirums
echo
goto end

Dokoras:

evalmath DOKKRO ceiling(%1/1.385/%FEE)
evalmath DOKLIR ceiling(%1/1.108/%FEE)

echo
echo Exchange fee used: %2%
echo
echo Need %1 Kronars? Withdraw %DOKKRO Dokoras
echo
echo Need %1 Lirums? Withdraw %DOKLIR Dokoras
echo
goto end


end: