Hi, all!
I'm trying to add earthlings to the galaxy and have managed to
-edit the sphere of influence
-edit their encounter probability
I got the cruisers to appear in interplanetary and hyperspace although I just linked their conversation to supox conversation in races.h file.
#define RACE_COMMUNICATION \
SUPOX_CONVERSATION, /* (HUMAN_SHIP) */ \
So they are earthling cruisers when in IP and hyperspace and in battle too, but the comms are for supox.
But, of course I want more than this

So, to make new human comms possible I copied the comm/supox dir and made it comm/human, editing the variable names accordingly.
Then I changed the races.h to define RACE_COMMUNICATION/HUMAN_CONVERSATION
and put a new switch case to commglue.c for HUMAN_CONVERSATION.
Here's the problem: all the *_CONVERSATIONS are defined in ires_ind.h, which gives some mystical (memory addresses??) for each one, like
#define SLYLANDRO_CONVERSATION 0x16a02907L
#define UMGAH_CONVERSATION 0x16c02a07L
#define URQUAN_CONVERSATION 0x16e02b07L
Now what the dang should I put as the HUMAN_CONVERSATION address?
Is this btw only for the OSX build or is the same ires_ind.h there for all the other systems too? This is baffling.
I read
http://forum.uqm.stack.nl/index.php?topic=4439.0but it wasn't specific enough to help me...