diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-06-25 07:21:03 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-06-25 07:21:03 -0300 |
commit | e6a37426c4ddf2ed8ab36a6adef55d6a31f44864 (patch) | |
tree | a12bfabafcdffb2c7f9de46e3602902b3d5d233f /npc/024-15/lilanna.txt | |
parent | c355707e7d84a2ba8a332be5bfe95f8554f17bab (diff) | |
download | serverdata-e6a37426c4ddf2ed8ab36a6adef55d6a31f44864.tar.gz serverdata-e6a37426c4ddf2ed8ab36a6adef55d6a31f44864.tar.bz2 serverdata-e6a37426c4ddf2ed8ab36a6adef55d6a31f44864.tar.xz serverdata-e6a37426c4ddf2ed8ab36a6adef55d6a31f44864.zip |
fnum() is great to save space
Diffstat (limited to 'npc/024-15/lilanna.txt')
-rw-r--r-- | npc/024-15/lilanna.txt | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/npc/024-15/lilanna.txt b/npc/024-15/lilanna.txt index 3ca331347..180098369 100644 --- a/npc/024-15/lilanna.txt +++ b/npc/024-15/lilanna.txt @@ -78,7 +78,7 @@ function FixCrystal { .@gp=getarg(1); if (Zeny < .@gp) { mesc l("NOT ENOUGH MONEY"), 1; - mesc l("@@/@@ GP", format_number(Zeny), format_number(.@gp)); + mesc l("@@/@@ GP", fnum(Zeny), fnum(.@gp)); next; return; } @@ -108,14 +108,14 @@ function FixSelect { .@kbase=10000; // King Base (incl. Fortress Is.) select l("Don't fix."), - rif(true, l("Candor - @@ GP", format_number(.@cbase))), - rif(TELEPORTERS & TP_TULIM, l("Tulimshar - @@ GP", format_number(.@nbase))), - rif(TELEPORTERS & TP_HURNS, l("Hurnscald - @@ GP", format_number(.@nbase))), - rif(TELEPORTERS & TP_NIVAL, l("Nivalis - @@ GP", format_number(.@nbase))), - rif(TELEPORTERS & TP_FROST|TP_HALIN, l("Land Of Fire - @@ GP", format_number(.@lbase))), - rif(TELEPORTERS & TP_HALIN, l("Halinarzo - @@ GP", format_number(.@fbase))), - rif(TELEPORTERS & TP_FROST, l("Frostia - @@ GP", format_number(.@fbase))), - rif(TELEPORTERS & TP_LILIT, l("Lilit - @@ GP (not exchangeable)", format_number(.@kbase))); + rif(true, l("Candor - @@ GP", fnum(.@cbase))), + rif(TELEPORTERS & TP_TULIM, l("Tulimshar - @@ GP", fnum(.@nbase))), + rif(TELEPORTERS & TP_HURNS, l("Hurnscald - @@ GP", fnum(.@nbase))), + rif(TELEPORTERS & TP_NIVAL, l("Nivalis - @@ GP", fnum(.@nbase))), + rif(TELEPORTERS & TP_FROST|TP_HALIN, l("Land Of Fire - @@ GP", fnum(.@lbase))), + rif(TELEPORTERS & TP_HALIN, l("Halinarzo - @@ GP", fnum(.@fbase))), + rif(TELEPORTERS & TP_FROST, l("Frostia - @@ GP", fnum(.@fbase))), + rif(TELEPORTERS & TP_LILIT, l("Lilit - @@ GP (not exchangeable)", fnum(.@kbase))); mes ""; switch (@menu) { case 1: return; |