1% as_agent.pl 2% Dec 13, 2035 3% Douglas Miles 4% 5% This allows control of any cha5racter from any otgher character 6 7:- swi_module(as_agent, []). 8 9:- include(prologmud(mud_header)). 10 11% :- register_module_type (mtCommand). 12 13baseKBaction_info('actAs'(tAgent,ftVerbAction), "actAs <agent> <command>"). 14baseKBagent_call_command(_Agent,'actAs'(OtherAgent,Command)):- do_agent_action(OtherAgent,Command). 15 16:- include(prologmud(mud_footer)).