Changes between Version 20 and Version 21 of ProtocolOne


Ignore:
Timestamp:
Jun 10, 2011 10:43:07 AM (13 years ago)
Author:
jherwitz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ProtocolOne

    v20 v21  
    1212 {{{quagent.ready();}}}
    1313
    14 During the live section, you are free to call any live commands, queries, queue management commands, or compound functions you wish. See the following for a list of currently supported functions.
     14During the live section, you are free to call any [[ProtocolZero]] or [[ProtocolOne]] functions you wish (with the exception of initial commands).
    1515''Example''
    1616{{{
    1717//this will make the Quagent face and shoot at the user.
    1818while(true){
    19     client.faceEntityDirectoin(0,1);
    20     client.fireWeapon(1);
     19    quagent.faceEntityDirection(0,1);
     20    quagent.fireWeapon(1);
    2121}
    2222}}}
    2323
     24Note that using multiple quagents is as simple as creating a new Client object, and following the same steps as above for each.
    2425
    2526= Initial Commands =