Hi heyo! i would like to ask for a little support about the source of Karmic about the Sarah's Instance Memorial.
The one that Ziu Posted. i try to add this into my server. yeah after recompiling i got this minor Warning shows in VS2010
http://oi61.tinypic.com/260qtn6.jpg
here's the source:
BUILDIN_FUNC(playertalk)
{
int display_name;
const char* message;
char message_output[255];
struct map_session_data *sd = script_rid2sd(st);
display_name = script_getnum(st, 2);
message = script_getstr(st, 3);
if(display_name)
sprintf(message_output, "%s: %s", sd->status.name, message);
else
sprintf(message_output, "%s", message);
clif_disp_overhead(sd, message_output);
return 0;
}