Gcc version: 3.0.2 20010905 (Red Hat Linux 7.1 3.0.1-3)
Rom version: 2.4b6 (technically, newest release of QuickMUD as a basis).
OLC version: " Version actual : 1.8 - Sep 8, 1998\n\r"
Also, related to the affected_by hoopla, here's what the walkthrough says:
// In the race_type struct, change the current 'long aff;' declaration to:
FLAG aff[AFF_FLAGS];
// This should be pretty straight forward in what it does. ALL OTHER STRUCTS
THAT
// HAVE AFF FIELDS IN THEM WILL NEED TO BE CHANGED TO MIMIC THIS. (Note: you do
// not need to rename the current variable. IE change affected_by; to
// affected_by[AFF_FLAGS];. Believe it or not, that needs to be pointed out to
// some people... ) Other structs that use aff flags: mob_index_data, char_data
// >> MAKE SURE YOU PUT THIS IN THE OTHER STRUCTS <<
My affected_bys:
struct race_type
{
....
FLAG aff[AFF_FLAGS]; /* aff bits for the race(bitsystem)*/
....
};
struct mob_index_data
{
....
FLAG affected_by;
....
};
struct char_data
{
...
FLAG affected_by;
....
};