Skip to content

Commit

Permalink
fixed error + updated default settings
Browse files Browse the repository at this point in the history
  • Loading branch information
f3cuk committed Nov 11, 2014
1 parent 50d3b4d commit 4fbfe6e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion WAI/compile/mission_winorfail.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ if(isServer) then {

if (wai_radio_announce) then {
RemoteMessage = ["radio","[RADIO] " + _msgwin];
owner _xpublicVariableClient "RemoteMessage";
publicVariable "RemoteMessage";
} else {
[nil,nil,rTitleText,_msgwin,"PLAIN",10] call RE;
};
Expand Down
10 changes: 5 additions & 5 deletions WAI/config.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ if(isServer) then {

/* GENERAL CONFIG */

debug_mode = true; // enable debug
use_blacklist = true; // use blacklist
debug_mode = false; // enable debug
use_blacklist = true; // use blacklist
blacklist = [
[[0,16000,0],[1000,-0,0]], // Left
[[0,16000,0],[16000.0,14580.3,0]] // Top
Expand Down Expand Up @@ -112,9 +112,9 @@ if(isServer) then {

// Missions
wai_radio_announce = true; // Setting this to true will announce the missions to those that hold a radio only
wai_hero_limit = 2;
wai_bandit_limit = 2;
wai_special_limit = 1;
wai_hero_limit = 1; // define how many hero missions can run at once
wai_bandit_limit = 1; // define how many bandit missions can run at once
/* wai_special_limit = 1; // define how many special missions can run at once */
wai_hero_missions = [ // ["mission filename",% chance of picking this mission],Make sure the chances add up to 100,or it will not be accurate percentages
["black_hawk_crash",11],
["armed_vehicle",12],
Expand Down

0 comments on commit 4fbfe6e

Please sign in to comment.