tbamud/lib/world/trg/44.trg
Steaphan Greene c59c321d5d TBA data file whitespace cleanups. (#66)
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.
2019-11-18 12:53:47 -05:00

40 lines
853 B
Text

#4400
Secret behind shubbery~
2 c 100
hack~
if thicket /= %arg%
wsend %actor% You hack through the thicket, clearing a path!
wechoaround %actor% %actor.name% hacks down the thicket, openening the path to the east.
wdoor 4410 east room 4415
wdoor 4410 east name thicket
wait 5 s
%echo% The Thicket grows out again, magically.
wdoor 4410 east purge
else
wsend %actor% Huh ?!?
end
~
#4401
orc_attack_trader~
0 g 100
~
if %actor.vnum% == 4105
wait 1
say YYEEHAA! I got you now, dwarf! Give me your gold and I might spare you.
wait 1
emote charge forward, attacking the dwarven trader.
mkill trader
elseif %actor.is_pc%
growl %actor.name%
end
~
#4402
orc_death_cry~
0 f 100
~
if %actor.vnum% == 4105 || %actor.vnum% == 4106
say AAARRRGGH!!
%echo% %self.name% screams loudly and collapses on the ground. Dead.
end
~
$~