to extend the string 'name' you have to use str_cat() if you need the name seperatly in your script again you could use an other temporary string like this:
Code:
//[...]
STRING *strTemp = str_create("#999");
str_cpy(strTemp, name);
str_cat(strTemp, "has the ball");
str_cpy((message.pstring)[0], strTemp);
str_remove(strTemp);



Last edited by GorNaKosh; 01/19/10 05:48.