Skip to content

Commit

Permalink
Removed "Mission default" in revive
Browse files Browse the repository at this point in the history
relies to #383
  • Loading branch information
Wyqer committed Apr 23, 2018
1 parent c49264d commit 139fc7c
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions Missionframework/KPLIB_params.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
KP LIBERATION MISSION PARAMETER FILE
File: KPLIB_params.hpp
Author: KP Liberation Dev Team - https://github.com/KillahPotatoes
Date: 2017-10-16
Expand Down Expand Up @@ -118,64 +118,64 @@ class Params
class ReviveMode {
title = $STR_A3_ReviveMode;
isGlobal = 1;
values[] = {-100,0,1};
texts[] = {$STR_A3_MissionDefault,$STR_A3_Disabled,$STR_A3_EnabledForAllPlayers};
values[] = {0,1};
texts[] = {$STR_A3_Disabled,$STR_A3_EnabledForAllPlayers};
default = 1; // Default value. Must be one from the values array above.
function = "bis_fnc_paramReviveMode";
};
class ReviveDuration {
title = $STR_A3_ReviveDuration;
isGlobal = 1;
values[] = {-100,6,8,10,12,15,20,25,30};
texts[] = {$STR_A3_MissionDefault,6,8,10,12,15,20,25,30};
values[] = {6,8,10,12,15,20,25,30};
texts[] = {6,8,10,12,15,20,25,30};
default = 6; // Default value. Must be one from the values array above.
function = "bis_fnc_paramReviveDuration";
};
class ReviveRequiredTrait {
title = $STR_A3_RequiredTrait;
isGlobal = 1;
values[] = {-100,0,1};
texts[] = {$STR_A3_MissionDefault,$STR_A3_None,$STR_A3_Medic};
values[] = {0,1};
texts[] = {$STR_A3_None,$STR_A3_Medic};
default = 1; // Default value. Must be one from the values array above.
function = "bis_fnc_paramReviveRequiredTrait";
};
class ReviveMedicSpeedMultiplier {
title = $STR_A3_RequiredTrait_MedicSpeedMultiplier;
isGlobal = 1;
values[] = {-100,1,1.5,2,2.5,3};
texts[] = {$STR_A3_MissionDefault,"1x","1.5x","2x","2.5x","3x"};
values[] = {1,1.5,2,2.5,3};
texts[] = {"1x","1.5x","2x","2.5x","3x"};
default = 1; // Default value. Must be one from the values array above.
function = "bis_fnc_paramReviveMedicSpeedMultiplier";
};
class ReviveRequiredItems {
title = $STR_A3_RequiredItems;
isGlobal = 1;
values[] = {-100,0,1,2};
texts[] = {$STR_A3_MissionDefault,$STR_A3_None,$STR_A3_Medikit,$STR_A3_FirstAidKitOrMedikit};
values[] = {0,1,2};
texts[] = {$STR_A3_None,$STR_A3_Medikit,$STR_A3_FirstAidKitOrMedikit};
default = 1; // Default value. Must be one from the values array above.
function = "bis_fnc_paramReviveRequiredItems";
};
class UnconsciousStateMode {
title = $STR_A3_IncapacitationMode;
isGlobal = 1;
values[] = {-100,0,1,2};
texts[] = {$STR_A3_MissionDefault,$STR_A3_Basic,$STR_A3_Advanced,$STR_A3_Realistic};
values[] = {0,1,2};
texts[] = {$STR_A3_Basic,$STR_A3_Advanced,$STR_A3_Realistic};
default = 0; // Default value. Must be one from the values array above.
function = "bis_fnc_paramReviveUnconsciousStateMode";
};
class ReviveBleedOutDuration {
title = $STR_A3_BleedOutDuration;
isGlobal = 1;
values[] = {-100,10,15,20,30,45,60,90,180};
texts[] = {$STR_A3_MissionDefault,10,15,20,30,45,60,90,180};
values[] = {10,15,20,30,45,60,90,180};
texts[] = {10,15,20,30,45,60,90,180};
default = 180; // Default value. Must be one from the values array above.
function = "bis_fnc_paramReviveBleedOutDuration";
};
class ReviveForceRespawnDuration {
title = $STR_A3_ForceRespawnDuration;
isGlobal = 1;
values[] = {-100,3,4,5,6,7,8,9,10};
texts[] = {$STR_A3_MissionDefault,3,4,5,6,7,8,9,10};
values[] = {3,4,5,6,7,8,9,10};
texts[] = {3,4,5,6,7,8,9,10};
default = 10; // Default value. Must be one from the values array above.
function = "bis_fnc_paramReviveForceRespawnDuration";
};
Expand Down

0 comments on commit 139fc7c

Please sign in to comment.