mirror of
https://github.com/tbamud/tbamud.git
synced 2026-01-14 21:38:50 +01:00
This just converts the few DOS text files still in here to standard text files (line-endings), removes all the trailing spaces on lines, removes all the trailing blank lines, and replaces all the tabs (except in .zon files, where they seem to be common) with expanded spaces. It's easy to confirm this is actually a non-change, except for whitespace: * `git show -w` shows this commit as only removing 8 trailing blank lines. This should make no difference to tbaMUD itself, but it will make working on these files, especially with scripts and automated tools, much easier. This is the base change for a set of other changes I will put up once/if this merges, without this, the others are just too complicated to wrangle.
29 lines
947 B
Text
29 lines
947 B
Text
#1700
|
|
Excalibur - two handed sword - 1702~
|
|
1 j 100
|
|
~
|
|
if %actor.eq(hold)% && %actor.eq(light)%
|
|
*
|
|
** too long?, I had to eval light so it would be shorter and work.
|
|
*%send% %actor% %self.shortdesc% is a two-handed weapon. You must remove %actor.eq(light).shortdesc% and %actor.eq(hold).shortdesc% to wield it.
|
|
*
|
|
eval light %actor.eq(light).shortdesc%
|
|
%send% %actor% %self.shortdesc% is a two-handed weapon. You must remove %light% and %actor.eq(hold).shortdesc% to wield it.
|
|
return 0
|
|
elseif %actor.eq(hold)%
|
|
%send% %actor% %self.shortdesc% is a two-handed weapon. You need to remove %actor.eq(hold).shortdesc%.
|
|
return 0
|
|
elseif %actor.eq(light)%
|
|
%send% %actor% %self.shortdesc% is a two-handed weapon. You need to remove %actor.eq(light).shortdesc%.
|
|
return 0
|
|
end
|
|
~
|
|
#1701
|
|
Excalibur - two handed sword - 1702~
|
|
1 c 1
|
|
ho~
|
|
if %cmd.mudcommand% == hold
|
|
%echo% You will have to remove %self.shortdesc% to hold anything else.
|
|
end
|
|
~
|
|
$~
|