29.10.2014, 15:03
User str_replace() funtion
https://sampwiki.blast.hk/wiki/Strlib/str_replace
Код:
new string[24];
format(string,24,"Ajax_Hello");
new strrep[64];
format(strrep, 64, str_replace("l","L",string));
SendClientMessage(playerid, -1, strrep);
//Output will be Ajax_HeLLo

