Pages:<< prev 1 next >>
Fledgling

GroupMembers
Posts44
JoinedFeb 12, 2010
I'm having a little bit of trouble getting this code to work right, anyone got any ideas on it?
if(!str_prefix(arg, "copydesc") { value = atoi(argument); tmp = get_room_index(value); if(!tmp) { ch_printf(ch, "Room %d does not exist!\r\n", value); return; } if(!can_rmodify(ch, tmp)) return; if(tmp->description) STRFREE(tmp->description); location->description = QUICKLINK( tmp->description ); return; }
Fledgling

GroupMembers
Posts7
JoinedApr 19, 2010
That QUICKLINK line should be:
Oh, and as a side note, tell your head builder to stop using my forum avatar.
tmp->description = QUICKLINK(location->description);
Oh, and as a side note, tell your head builder to stop using my forum avatar.
Pages:<< prev 1 next >>
)
{
value = atoi(argument);
tmp = get_room_index(value);
if(!tmp)
{
ch_printf(ch, "Room %d does not exist!\r\n", value);
return;
}
if(!can_rmodify(ch, tmp))
return;
if(tmp->description)
STRFREE(tmp->description);
location->description = QUICKLINK( tmp->description );
return;
}