KAMPFBIBER81
Registered
ok, thx!
[Gerald Jacobson]
mass=52
One modification I'd like to see on this: if a driver doesn't need extra weight (in our league, it's only the top 5), can the execution of the /setmass command be skipped?- Allows you to set mass for given driver as soon as they join the server
How do you see the ini file ? as i think this weight penaly is apply to the top 5 of the previous race and not the current rank in the session. So it is like you edit the ini by setting the 5 names and there penalities.One modification I'd like to see on this: if a driver doesn't need extra weight (in our league, it's only the top 5), can the execution of the /setmass command be skipped?
Other than this, it works like a charm!
[Driver 1]
mass=50
[Driver 2]
mass=40
...
[Driver 5]
mass=10
/stop
int mass = GetPrivateProfileInt(strDriver.c_str(), "mass", 0, iniConfigFilename.c_str());
[COLOR="#FF0000"]if(mass != 0)
{[/COLOR]
std::ostringstream oss;
oss << "/setmass " << mass << " " << strDriver.c_str();
m_MessageQueue.push_back(oss.str());
[COLOR="#FF0000"]}[/COLOR]
Yes and yesIf I do not want to set extra mass for someone, do I simply do nothing?
If I want to add mass to a particular driver, is it still like this?
[Driver 1]
mass=50