!752 p{ makeBot("Code generator."); } answer{ if (matchStart("make code *",s ,m)) { S command = m.unq(0); S encodedcmmnd = ""; command = command.replace("make code", ""); if(command == null){ ret null; } if(command.indexOf("newbot") != -1){ encodedcmmnd += "p{\n\tmakeBot('BOT NAME HERE');\n}\nanswer{\n\n}"; }else if(command.indexOf("if") != -1){ encodedcmmnd += "if{}"; } //ntUpload(programID(), programID() + " generated code", encodedcmmnd); ret encodedcmmnd; } }