Extended Bit Vectors, room_flags

Posted by Atami on Sat 23 Jul 2005 10:57 PM — 3 posts, 14,924 views.

#0
Ok, im converting the room_flags to extended bit vectors but i have come across some issues.

In do_rset() in the if check which deals with adding flags to the room, the line:

location->room_flags = value;

I do not know how to make 'value' compatible with the new EXT_BV room_flags. I've tried:

meb(&location->room_flags) = value;

But this gives an integer from pointer without a cast...

Any ideas..?
USA #1
Umm, why are you using rset? You should be using redit. You could probably just delete rset.
Amended on Sun 24 Jul 2005 01:28 AM by Nick Cash
#2
Good question why am i using this!!?? Thanks i totally didnt notice. It now compiles and works completely. Now for the rest of them...

Thanks, lol