View Single Post
Violet CLM Violet CLM's Avatar

JCF Éminence Grise

Joined: Mar 2001

Posts: 10,984

Violet CLM has disabled reputation

Sep 19, 2015, 02:19 PM
Violet CLM is offline
Reply With Quote
There's not an easy way atm to change that kind of setting for the single player campaign, but you can hack it together by creating these two files:
Code:
//castle1.j2as

void onLevelLoad() {
  jjChat("/mutators noammolimit on");
  for (int i = 1; i < 10; ++i)
    jjWeapons[i].maximum = 9999;
}
Code:
//noammolimit.mut

void onLevelLoad() {
  for (int i = 1; i < 10; ++i)
    jjWeapons[i].maximum = 9999;
}
__________________