29.05.2013, 18:17
1) Length of "Message" cannot be known from within the function. You need to add another parameter to pass the length of the variable
2) Array sizes need to be constant values. You cannot pass a variable for the array size unless it's declared as a constant; which if done inside the function is pointless anyway.
pawn Код:
stock SendServerMessage(PlayerID, Message[], size = sizeof(Message))