Jump to content

Home

Forces in MP


chevap

Recommended Posts

I would like to somehow have all forces set to 3. level in multiplayer, but bots wouldn`t be altered. I know that cheat "setforceall 3" doesn`t work in MP, so the only way to do this is to alter the game- make MOD.

I am not good at this, since I have never made mods for Q3 engine - including JK2. (I have been only doing mods for BG1, BG2, Morrowind).

So, if someone could help me I would be very happy.

Link to comment
Share on other sites

maybe something like...

 

while (i < NUM_FORCE_POWERS)

 

{

 

client->ps.fd.forcePowerBaseLevel = client->ps.fd.forcePowerLevel;

client->ps.fd.forcePowerLevel = FORCE_LEVEL_3;

client->ps.fd.forcePowersKnown |= (1 << i);

 

i++;

}

 

or with a for...

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...