Quote:
Originally Posted by jihadmeneer
PHP код:
new string[128]; // Creates the string
format(string, sizeof(string), "~p~%s", Text); // Add text to the string
for(new count, len = strlen(Text); count < len; count+=24) // Makes a loop for each 24 times it adds a ~n~
strins(string, "~n~", count); // Function to add the ~с~
PlayerTextDrawSetString(playerid, DescriptionTD[3], string); // Set the string of the textdraw
|
lol, I know this already, of course thank you! But I need to get this in details, for instance;
PHP код:
count < len; count+=24
how this part is working exactly