15.12.2014, 13:55
It's not defined by default, you've to include it as a custom function.
Where dest is the destination where you've to copy the src (source, to be copied).
NOTE : Next time request scripting support at 'Scripting Help' board.
pawn Код:
stock strcpy(dest[], src[], size = sizeof(dest))
{
dest[0] = EOS;
return strcat(dest, src, size);
}
NOTE : Next time request scripting support at 'Scripting Help' board.