stock strreplace(string[], find, replace) { for(new i=0; i < sizeof(string); i++) { if(string[i] == find) { string[i] = replace; } }