Changes between Version 20 and Version 21 of ProtocolOne
- Timestamp:
- Jun 10, 2011 10:43:07 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ProtocolOne
v20 v21 12 12 {{{quagent.ready();}}} 13 13 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.14 During the live section, you are free to call any [[ProtocolZero]] or [[ProtocolOne]] functions you wish (with the exception of initial commands). 15 15 ''Example'' 16 16 {{{ 17 17 //this will make the Quagent face and shoot at the user. 18 18 while(true){ 19 client.faceEntityDirectoin(0,1);20 client.fireWeapon(1);19 quagent.faceEntityDirection(0,1); 20 quagent.fireWeapon(1); 21 21 } 22 22 }}} 23 23 24 Note that using multiple quagents is as simple as creating a new Client object, and following the same steps as above for each. 24 25 25 26 = Initial Commands =