mirror of
https://github.com/tbamud/tbamud.git
synced 2026-04-05 20:07:19 +02:00
Coins as items update 2
This commit is contained in:
parent
972d290126
commit
d4bda3ad4a
37 changed files with 736 additions and 779 deletions
File diff suppressed because it is too large
Load diff
|
|
@ -34,7 +34,7 @@ NEW COMMANDS AND NEW MUD BEHAVIOR:
|
|||
** You will now be immediately notified when you have new mail, when coming
|
||||
back from AFK and reconnecting.
|
||||
|
||||
** New toggles: autoloot, autogold, autosplit, autosac, and autoassist.
|
||||
** New toggles: autoloot, autosplit, autosac, and autoassist.
|
||||
|
||||
** Improved toggle command allowing more options.
|
||||
|
||||
|
|
@ -103,7 +103,7 @@ NEW COMMANDS AND NEW MUD BEHAVIOR:
|
|||
** Use the ASSIST command to engage in mortal combat with someone in the room
|
||||
who is getting pummeled.
|
||||
|
||||
** Use the SPLIT command to split gold among the members of your group
|
||||
** Use the SPLIT command to split coins among the members of your group
|
||||
(including yourself) who are in the room. i.e. If you are in a group
|
||||
with 4 other people who are in the room with you, type "SPLIT 100"
|
||||
to give each of them 20 coins.
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ end
|
|||
if %actor.level% < 3
|
||||
nop %actor.exp(%value%)%
|
||||
else
|
||||
nop %actor.gold(%value%)%
|
||||
nop %actor.coins(%value%)%
|
||||
end
|
||||
%purge% %object%
|
||||
~
|
||||
|
|
@ -79,12 +79,12 @@ Stock Thief~
|
|||
~
|
||||
set actor %random.char%
|
||||
if %actor%
|
||||
if %actor.is_pc% && %actor.gold%
|
||||
if %actor.is_pc% && %actor.coins%
|
||||
%send% %actor% You discover that %self.name% has %self.hisher% hands in your wallet.
|
||||
%echoaround% %actor% %self.name% tries to steal gold from %actor.name%.
|
||||
eval coins %actor.gold% * %random.10% / 100
|
||||
nop %actor.gold(-%coins%)%
|
||||
nop %self.gold(%coins%)%
|
||||
%echoaround% %actor% %self.name% tries to steal coins from %actor.name%.
|
||||
eval coins %actor.coins% * %random.10% / 100
|
||||
nop %actor.coins(-%coins%)%
|
||||
nop %self.coins(%coins%)%
|
||||
end
|
||||
end
|
||||
~
|
||||
|
|
@ -280,7 +280,7 @@ set zodiac 5701
|
|||
set grave 7401
|
||||
set zamba 7500
|
||||
set gidean 7801
|
||||
set glumgold 8301
|
||||
set glumcoins 8301
|
||||
set duke 8660
|
||||
set oasis 9000
|
||||
set domiae 9603
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue