Parse command prepos list
来自MudWiki
名称
parse_command_prepos_list - find out what words are valid prepositions
语法
string array parse_command_prepos_list();
描述
This routine is called in the master object to find out what words should be considered prepositions. It is used by the parsing package and the parse_command() efun. 提示:这个方法应该放在MASTER_OB中。 This should return a list of preposition words that are permitted in parsing rules. A preposition is a word which clarifies or defines the meaning of a sentence - it aids working out which objects should be used in which way. for example: ({ "in", "on", "at", "along", "upon", "by", "under", "behind", "with", "beside", "into", "onto", "inside", "within", "from" }) In order to be used in a parsing rule, a preposition must be present in this list. This apply is only called once and never again.
参考
parse_command(3)