07.06.2015, 19:10
Using strlib and it's fuction str_ireplace you can do this.
Under OnPlayerText callback add this code:
You can add more codes by yourself.
Credits to JaydenJason.
Under OnPlayerText callback add this code:
Код:
if(YOUR_VIP_CHECK_HERE) { if(strfind(text, "<red>", true) != -1) str_replace("<red>", "{FF0000}", text); if(strfind(text, "<green>", true) != -1) str_replace("<green>", "{00FF00}", text); if(strfind(text, "<blue>", true) != -1) str_replace("<blue>", "{0000FF}", text); if(strfind(text, "<purple>", true) != -1) str_replace("<purple>", "{800080}", text); }
Credits to JaydenJason.