bot_cmd.bot_cmd_parm_string = strzone(parm);
break;
case BOT_CMD_PARAMETER_VECTOR:
+ if(substring(parm, 0, 1) != "\'")
+ {
+ LOG_INFOF("ERROR: expected vector type \'x y z\', got %s\n", parm);
+ return 0;
+ }
bot_cmd.bot_cmd_parm_vector = stov(parm);
break;
default:
LOG_INFO("Look to the right or left N degrees. For turning to the left use positive numbers.");
break;
case BOT_CMD_MOVETO:
- LOG_INFO("Walk to an specific coordinate on the map. Usage: moveto \"x y z\"");
+ LOG_INFO("Walk to an specific coordinate on the map. Usage: moveto \'x y z\'");
break;
case BOT_CMD_MOVETOTARGET:
LOG_INFO("Walk to the specific target on the map");