31.01.2015, 20:58
quer saber como eu almento o limite da frase no xat,tipo eu escrevo uma frase um pouco grande e corta um pedaзo dela,quero saber como almenta esse limite
main(){
PrintfEx("Olб amigo, este й um teste para criar quebras de linha por causa do limite de 144 caracteres ..");
}
stock PrintfEx(str[])
{
if(strlen(str) > 64)
{
printf("%.64s", str);
printf("...%s", str[64]);
}
else
{
printf("%s", str);
}
return 1;
}
stock SendClientMessageToAllEx(color, str[])
{
new
string_[144]
;
if(strlen(str) > 64){
format(string_, sizeof(string_), "%.64s", str);
SendClientMessageToAll(color, string_);
format(string_, sizeof(string_), "...%s", str[64]);
SendClientMessageToAll(color, string_);
}
else
{
format(string_, sizeof(string_), "%s", str);
SendClientMessageToAll(color, string_);
}
return 1;
}