17.07.2011, 12:28
well too late now
well you show count the string that the player send/wrights and if it goes over like lets say 80 character
send the rest of the text into another Message
EXAMPLE
Sorry cant realy show u but thats becouse im my phone
well you show count the string that the player send/wrights and if it goes over like lets say 80 character
send the rest of the text into another Message
EXAMPLE
pawn Код:
public OnPlayerText(playerid, text[])
{
if(text>=80)//this would not work btw only an example
{
//and then the function to send the rest.
}
return 1;
}