| Mine GO BOOM wrote: |
| Log in under the bot's name, and type ?changepassword newpassword. Or, if your bot has a !say command, do it that way. Just remember to update your ini after you change the password. |
Code: Show/Hide // MERVBot v46 command.cpp[1767:1797]:
default: // Public if ( (c.final[0] != '*') && (c.final[0] != '?') ) // <- !!! { String s = c.final; char bong[32]; int i = s.firstInstanceOf('%'); if (i >= 0) { int j, k = i; for (j = 0; j < 32; ++j) { char c = s.msg[++k]; if (c >= '0' && c <= '9') bong[j] = c; else { bong[j] = '\0'; break; } } s = s.left(i) + s.right(s.len - (i + j + 1)); } h->sendPublic(getInteger(bong, 10), s.msg); } |
| Mine GO BOOM wrote: |
| Log in under the bot's name, and type ?changepassword newpassword. |