For example, on my person I have the following coins:
122 plat
6 gold
3 silver
That's 122.63pp total
However, if i run the following code...
Code: Select all
Sub Main
/echo You have $char(plat)pp, $char(gold)gp, $char(silver)sp
/echo Method 1: $calc($char(plat)*10+$char(gold)*10+$char(silver)/100)pp
/echo Method 2: $calc($char(silver)/10+$char(gold)/10+$char(plat))pp
/return
[MacroQuest] You have 122pp, 6gp, 3sp
[MacroQuest] Method 1: 1280.03pp
[MacroQuest] Method 2: 122.90pp
This is with Version 2002-07-06, which I just downloaded about 10 minutes ago.
Am I missing something here?

