* @param highThreadSafety if true, enables high thread safety mode
* @param trackInv if true, the agent will manually track its inventory */
/*-------------------------------------------------------------------*/
public BasicBot(String botName, String botSkin, int recvRate, int msgLevel, int fov, int hand, String password, boolean highThreadSafety, boolean trackInv)
{
user = new User((botName == null ? "QASE_BasicBot" : botName), (botSkin == null ? "female/athena" : botSkin), (recvRate < 0 ? 65535 : recvRate), (msgLevel < 0 ? 1 : msgLevel), (fov < 0 ? 90 : fov), (hand < 0 ? User.HAND_RIGHT : hand), (password == null ? "" : password));
commonSetup(highThreadSafety, trackInv);
}