summaryrefslogtreecommitdiffstats
path: root/Client/PVFunctions/ChangeScore.sqf
blob: 583b4c127fa7e11559051d2ec36931966a37019b (plain)
1
2
3
4
5
6
7
8
Private ["_newScore","_playerChanged","_oldScore"];

_playerChanged = _this select 0;
_newScore = _this select 1;

_oldScore = score _playerChanged;
_playerChanged addScore -(_oldScore);
_playerChanged addScore _newScore;