It appears you have not registered with our community. To register please click here ...

May 22, 2012, 11:54:01 AM

Author Topic: Beta Launcher 0.28-- what do the difficulty settings do?  (Read 846 times)

Ohrmazd

  • New Member
  • *
  • Posts: 5
    • View Profile
Beta Launcher 0.28-- what do the difficulty settings do?
« on: April 06, 2010, 04:01:07 PM »
Asked several times in the main topic with no answer.

I understand that it changes the 3 settings in the difficulty config file. I would like to know the exact values at corresponding difficulty levels. I would like to know exactly what I am playing against.

Thanks.

DarkBlizz - Making Battle.net Magic -

Beta Launcher 0.28-- what do the difficulty settings do?
« on: April 06, 2010, 04:01:07 PM »

Ohrmazd

  • New Member
  • *
  • Posts: 5
    • View Profile
Re: Beta Launcher 0.28-- what do the difficulty settings do?
« Reply #1 on: April 06, 2010, 09:54:26 PM »
Well, I seem to have figured it out.
insane?
const int c_difficulty = 0;
const int c_mineralBonus = 2;
const string c_maphack = "false";

very hard
const int c_difficulty = 0;
const int c_mineralBonus = 1;
const string c_maphack = "false";

hard:
const int c_difficulty = 1;
const int c_mineralBonus = 2;
const string c_maphack = "false";

medium:
const int c_difficulty = 1;
const int c_mineralBonus = 1;
const string c_maphack = "false";

easy:
const int c_difficulty = 2;
const int c_mineralBonus = 2;
const string c_maphack = "false";

very easy:
const int c_difficulty = 2;
const int c_mineralBonus = 1;
const string c_maphack = "false";

Anyone know how to make a custom difficulty that wont be affected by the launcher setting, and how it will affect ladder? I'd like maphack enabled (to simulate a skilled player scouting) and 0 difficulty and 1 mineralbonus.
« Last Edit: April 06, 2010, 11:29:31 PM by Ohrmazd »

DarkBlizz - Making Battle.net Magic -

Re: Beta Launcher 0.28-- what do the difficulty settings do?
« Reply #1 on: April 06, 2010, 09:54:26 PM »