Hi everyone, sorry for the last message, I'm not so good writing in english... :( Here is what's going on, I couldn't do the List command works, it just send me the " ## Item Quest Points" and don't show the quest itens... what should I do? Here is the code: if (CMD_IS("list")) { one_argument(arg, name); strcpy(buf, " ## Iten Pts de Quest\r\n"); strcat(buf, "-------------------------------------------------------------\r\n"); for (x = 1; x <= quest_items[qp]; x++) { obj = read_object(quest_items[x], VIRTUAL); if (obj == NULL) continue; sprintf(buf2, "%s", (obj)->short_description); CAP(buf2); sprintf(buf, "%s%3d) %-45s%12d\r\n", buf, x, buf2, GET_OBJ_COST(obj)); } send_to_char(buf, ch); return 1; That's it, i made some changes so it could work without crashing the MUD. Thanks in advance. PS.: The other error is solved! -- +---------------------------------------------------------------+ | FAQ: http://qsilver.queensu.ca/~fletchra/Circle/list-faq.html | | Archives: http://post.queensu.ca/listserv/wwwarch/circle.html | | Newbie List: http://groups.yahoo.com/group/circle-newbies/ | +---------------------------------------------------------------+
This archive was generated by hypermail 2b30 : 06/26/03 PDT