--- deliantra/server/include/cfperl.h 2007/08/16 06:36:56 1.87 +++ deliantra/server/include/cfperl.h 2007/08/30 07:28:25 1.88 @@ -214,7 +214,17 @@ } // set a custom key to the given value, or delete it if value = 0 - void set_key (const char *key, const char *value = 0); + void set_key (const char *key, const char *value = 0, bool is_utf8 = 0); + + void set_key_text (const char *key, const char *value = 0) + { + set_key (key, value, 1); + } + + void set_key_data (const char *key, const char *value = 0) + { + set_key (key, value, 0); + } attachable &operator =(const attachable &src);