Spelling error correction caused system messages to fail.
This commit is contained in:
Teh Dango 2016-03-16 22:51:29 -04:00
parent feeb58f767
commit f713fe7ebd
2 changed files with 7 additions and 7 deletions

View File

@ -49,11 +49,11 @@ if ((!isNull _aikiller) && {(_playerUID != "") && {_aikiller isKindOf "Exile_Uni
if ((random 100) > 5) then {
_message = format["Sarge AI: Dammit %1! You are firing on a friendly group check your fire!",_aikiller_name];
_message remoteExec ["systemeChat",0];
_message remoteExec ["systemChat",0];
} else {
if ((random 100) < 5) then {
_message = format["Sarge AI: %1, this was the last time you shot one of our team! We are coming for you!",_aikiller_name];
_message remoteExec ["systemeChat",0];
_message remoteExec ["systemChat",0];
};
};

View File

@ -44,7 +44,7 @@ if (SAR_KILL_MSG) then {
if(isPlayer _aikiller) then {
_message = format["A %2 was killed by Player: %1",_aikiller_name,_ai_type];
//[nil, nil, rspawn, [[West,"airbase"], _message], { (_this select 0) sideChat (_this select 1) }] call RE;
_message remoteExec ["systemeChat",0];
_message remoteExec ["systemChat",0];
};
};
@ -85,12 +85,12 @@ if ((!isNull _aikiller) && {(_playerUID != "") && {_aikiller isKindOf "Exile_Uni
if ((random 100) > 3) then {
_message = format["%1 killed a friendly AI - sending reinforcements!",_aikiller_name];
//[nil, nil, rspawn, [[West,"airbase"], _message], { (_this select 0) sideChat (_this select 1) }] call RE;
_message remoteExec ["systemeChat",0];
_message remoteExec ["systemChat",0];
} else {
if ((random 100) < 3) then {
_message = format["Tango down ... we offer a decent reward for the head of %1!",_aikiller_name];
//[nil, nil, rspawn, [[West,"airbase"], _message], { (_this select 0) sideChat (_this select 1) }] call RE;
_message remoteExec ["systemeChat",0];
_message remoteExec ["systemChat",0];
};
};
};
@ -123,12 +123,12 @@ if ((!isNull _aikiller) && {(_playerUID != "") && {_aikiller isKindOf "Exile_Uni
if ((random 100) < 3) then {
_message = format["nice bandit kill %1!",_aikiller_name];
//[nil, nil, rspawn, [[West,"airbase"], _message], { (_this select 0) sideChat (_this select 1) }] call RE;
_message remoteExec ["systemeChat",0];
_message remoteExec ["systemChat",0];
} else {
if ((random 100) < 3) then {
_message = format["another bandit down ... %1 is going to be the root cause of bandit extinction :-)",_aikiller_name];
//[nil, nil, rspawn, [[West,"airbase"], _message], { (_this select 0) sideChat (_this select 1) }] call RE;
_message remoteExec ["systemeChat",0];
_message remoteExec ["systemChat",0];
};
};
};