mirror of
https://github.com/tbamud/tbamud.git
synced 2026-01-16 14:15:28 +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.
36 lines
750 B
Text
36 lines
750 B
Text
#23400
|
|
Open Door - 23441~
|
|
2 c 100
|
|
push~
|
|
if %arg% == button
|
|
%send% %actor% You push the button, and reveal a secret door!
|
|
%echoaround% %actor% As %actor.name% pushes a button, a secret door is revealed.
|
|
%door% 23441 west flags a
|
|
%door% 23441 west name door
|
|
%door% 23441 west room 23471
|
|
else
|
|
%send% %actor% Push what ?!
|
|
end
|
|
~
|
|
#23401
|
|
Open Door - 23471~
|
|
2 c 100
|
|
push~
|
|
if %arg% == button
|
|
%send% %actor% You push the button, and reveal a secret door!
|
|
%echoaround% %actor% As %actor.name% pushes a button, a secret door is revealed.
|
|
%door% 23471 east room 23441
|
|
else
|
|
%send% %actor% Push what ?!
|
|
end
|
|
~
|
|
#23402
|
|
Close Door - 23471~
|
|
2 g 100
|
|
~
|
|
wait 2 sec
|
|
%door% 23471 east purge 0
|
|
%door% 23441 west purge 0
|
|
%echo% A wall slams down shut!
|
|
~
|
|
$~
|