View Single Post
pheadxdll
AlliedModders Donor
Join Date: Jun 2008
Old 02-20-2011 , 11:53   Re: Removing the first X characters in a string
Reply With Quote #2

Removes the first 3 characters:
Code:
new String:strExp[] = "abcdef";
strcopy(strExp, sizeof(strExp), strExp[3]);
__________________
pheadxdll is offline