> case CON_QRACE: > if ((GET_RACE(d->character) = parse_race(*arg)) == CLASS_UNDEFINED) { > SEND_TO_Q("\r\nThat's not a race.\r\nRace: ", d); > return; > } > I initally referred to the races.doc wehn doing the race adds as well, but it has a few shortfalls. Don't get me wrong...it was a great help, but just a bit incomplete in places. :) Copy the CON_QCLASS directly above it, and change it to the below. This turned out to be the solution to my prob, and my error msgs looked similar. case CON_QRACE: load_result = parse_race(*arg); if (load_result == RACE_UNDEFINED) { SEND_TO_Q("\r\nThat's not a race.\r\nRace: ", d); return; } else GET_RACE(d->character) = load_result; -- -axl @)-->--- "Beneath the stain of time, the feeling disappears. axl@mindwarp You are someone else. I am still right here." - NIN +-----------------------------------------------------------+ | Ensure that you have read the CircleMUD Mailing List FAQ: | | http://cspo.queensu.ca/~fletcher/Circle/list_faq.html | +-----------------------------------------------------------+
This archive was generated by hypermail 2b30 : 12/18/00 PST