Code:
client_print(id,print_chat,"String: %s",szstring[0]);
Would actually print "Love Apples".
To remove it, I'm not positive but maybe.
Code:
sztring[0] = "" // This might actually set the whole string to nothing
or
string[0] &= ""
or (probably not a good way)
Code:
format(sztring,31,"%s",szstring[0]);
__________________