diff options
-rw-r--r-- | npc/003-0/notes | 12 | ||||
-rw-r--r-- | npc/functions/bank.txt | 3 |
2 files changed, 14 insertions, 1 deletions
diff --git a/npc/003-0/notes b/npc/003-0/notes index 517f68d6d..e6a9a3193 100644 --- a/npc/003-0/notes +++ b/npc/003-0/notes @@ -120,5 +120,17 @@ USEFUL COMMANDS *autobonus2(<bonus script>, <rate>, <duration>{, <flag>, {<other script>}}) May cast a bonus when attacked :> + SC_TENSIONRELAX + Tension relax allows the user to recover HP while overweight at 1x speed. + Also, looks like sitting _should_ allow you to regen even overweight, need + plugin check for possible overrides on this behavior. status_natural_heal + + SC_VITATA_500 + Apparently regens SP? Requires further studies. + + SC_NOEQUIPWEAPON [Evol] + Forces your opponent to fight without a weapon. + + diff --git a/npc/functions/bank.txt b/npc/functions/bank.txt index 03696dad2..46550c3dd 100644 --- a/npc/functions/bank.txt +++ b/npc/functions/bank.txt @@ -219,7 +219,8 @@ function script Banker { Banking; break; case 3: - mesc l("Note: Transfering items on mail cost 2500 GP/item"); + // NOTE: This value is HARDCODED, do not try changing it! + mesc l("Note: Transfering items on mail cost @@ GP/item", 500); mesc l("Money transference by mail is, however, free."); next; closeclientdialog; |