Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Save the numeric and string section of the file. */
- int n = snprintf(buf2, MAX_STRING_LENGTH, "#%d\n"
- "%s%c\n"
- "%s%c\n"
- "%d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d\n",
- room->number,
- room->name ? room->name : "Untitled", STRING_TERMINATOR,
- buf, STRING_TERMINATOR,
- zone_table[room->zone].number, room->room_flags[0], room->room_flags[1], room->room_flags[2],
- room->room_flags[3], room->sector_type,
- room->curr_water, room->max_water,
- room->curr_rmmana, room->max_rmmana,
- room->curr_minerals, room->max_minerals,
- room->curr_vegetation, room->max_vegetation,
- room->curr_elevation, room->max_elevation
- );
Advertisement
Add Comment
Please, Sign In to add comment