actually that commands always have a defined structure
- Code: Select all
admin set Package.Class property newValue
Package - the package, where the class is located in. (like Deusex.u)
Class - the actual classname (like DeusExMPGame)
property- the property variable, that was declared inside the class (like InitialAugs)
newValue - the new value, that the property shall get (like 0)
you will have realized that the property and the class is identical to the ones in the deusex.ini
- Code: Select all
[DeusEx.DeusExMPGame]
SkillsTotal=2000
SkillsAvail=10000
SkillsPerKill=500
InitialAugs=2
AugsPerKill=1
ScoreToWin=20
so, you can also change other properties by that..
so.. for adjusting the initial augs, you need to type
- Code: Select all
admin set DeusEx.DeusExMPGame InitialAugs 3
for setting the initial augs to 3
same you can do with augPerKill or scoreToWin, which is the full game time (in case your game mode is time) or which represents the scores that a player (in DM) or a team (in TDM) needs to win the game