mirror of
https://github.com/Teh-Dango/Sarge-AI.git
synced 2024-08-30 16:32:11 +00:00
Hotfix
Spelling error correction caused system messages to fail.
This commit is contained in:
parent
feeb58f767
commit
f713fe7ebd
@ -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];
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -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];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user