04.01.2016, 16:09
(
Last edited by Riddick94; 04/01/2016 at 04:41 PM.
)
You are just formatting OnPlayerDisconnect. Test your script before releasing such a simple things to make sure that at least they are working correctly.
edit://
strings of 250 characters length? What for? Let me break it down for you.
Example:
%s = name = 32 chars.
( = 1 char.
%d = ID = 3 chars.
) = 1 char
" just poked " - 12 chars.
%s = name = 32 chars.
( = 1 char.
%d = ID = 3 chars.
) = 1 char.
All in total is: 84 characters + null character = 85 characters. No need for 250 array if 85 is needed in total. Read about array values.
edit://
strings of 250 characters length? What for? Let me break it down for you.
Example:
pawn Code:
%s(%d) just poked %s(%d)
( = 1 char.
%d = ID = 3 chars.
) = 1 char
" just poked " - 12 chars.
%s = name = 32 chars.
( = 1 char.
%d = ID = 3 chars.
) = 1 char.
All in total is: 84 characters + null character = 85 characters. No need for 250 array if 85 is needed in total. Read about array values.
