Jump to content

TantrixChaos

Member
  • Content Count

    1
  • Joined

  • Last visited

  • Medals

Community Reputation

10 Good

About TantrixChaos

  • Rank
    Newbie
  1. TantrixChaos

    =BTC= Revive

    I have a really annoying problem I hope someone can help me with. I have BTC_lifes set at 2, yet people can be first aided back to life over and over and over. I just want 1-2 first aid revives and I have no clue how to get that result. Also even though it says need first aid kid to revive, after first revive the first aid kit goes away and it still revives without first aid kit. Any help with this? Here is my init that I tried to monkey with. ////////////////// EDITABLE \\\\\\\\\\\\\\\\\\\\\\\\\\ BTC_revive_time_min = 5; BTC_revive_time_max = 600; BTC_who_can_revive = ["Man"]; BTC_loop_check = 0; BTC_disable_respawn = 1; BTC_respawn_gear = 1; BTC_active_lifes = 1; BTC_lifes = 2; BTC_black_screen = 0;//Black screen + button while unconscious or action wheel and clear view BTC_action_respawn = 0;//if black screen is set to 0 you can choose if you want to use the action wheel or the button. Keep in mind that if you don't use the button, the injured player can use all the action, frag too.... BTC_respawn_time = 0; BTC_active_mobile = 0;//Active mobile respawn (You have to put in map the vehicle and give it a name. Then you have to add one object per side to move to the mobile (BTC_base_flag_west,BTC_base_flag_east) - (1 = yes, 0 = no)) BTC_mobile_respawn = 0;//Active the mobile respawn fnc (1 = yes, 0 = no) BTC_mobile_respawn_time = 30;//Secs delay for mobile vehicle to respawn BTC_need_first_aid = 1;//You need a first aid kit to revive (1 = yes, 0 = no) BTC_pvp = 0; //(disable the revive option for the enemy) BTC_injured_marker = 1; BTC_3d_can_see = ["Man"]; BTC_3d_distance = 30; BTC_3d_icon_size = 0.5; BTC_3d_icon_color = [1,0,0,1]; BTC_objects_actions_west = []; BTC_objects_actions_east = []; BTC_objects_actions_guer = []; BTC_objects_actions_civ = []; if (isServer) then { BTC_vehs_mobile_west = [];//Editable - define mobile west BTC_vehs_mobile_east = [];//Editable - define mobile east BTC_vehs_mobile_guer = [];//Editable - define mobile independent BTC_vehs_mobile_civ = [];//Editable - define mobile civilian }; ////////////////// Don't edit below \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
×