Problem with Libraries

hiya, I'm having a problem with some of the libraries, it seems the commands i add refuse to work, i even made a test library which just contained:


!library
!asl-version <400>
!name <Kitaans testing library>
!version <0.1>
!author <Tom "Kitaan" James>

!addto game
Command </crty>
msg <hihitest>
!end

and when you load up the game and use the command (tried several libraries with many different games) if i type /crty there is just a blank afterwards, no error messages, but it doesn't do what the command is supposed to either. Any help with why this doesn't work would be greatly appreciated.

Put an space and underscore after the "Command" line, or put on opening brace after the "Command line" and line with a close brace after the "msg" line", or put both "Command" and "msg" on a single line.

    !library
!asl-version <400>
!name <Kitaans testing library>
!version <0.1>
!author <Tom "Kitaan" James>

!addto game
Command </crty> {
msg <hihitest>
}
!end

ah thanks, i figured i must just have missed something simple out like that