Skip to content
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Donate
Collapse

Plutonium

  1. Home
  2. BO2 Modding Support & Discussion
  3. Where can i access the t6r folder/directory?

Where can i access the t6r folder/directory?

Scheduled Pinned Locked Moved BO2 Modding Support & Discussion
2 Posts 2 Posters 186 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • MF SAINTundefined Offline
    MF SAINTundefined Offline
    MF SAINT
    wrote on last edited by
    #1

    Im attempting to use a script on Zombies where it removes mystery box limitations(i.e. KSG on Buried), but it says i need to place it in \t6r\data\maps\mp\zombies, and i can't find that folder. Can someone help me out?

    https://forum.plutonium.pw/topic/2648/release-zombies-no-weapon-limits-for-mystery-box (the Script in question)

    1 Reply Last reply
    0
    • Derpyhsiundefined Offline
      Derpyhsiundefined Offline
      Derpyhsi
      wrote last edited by
      #2

      I made a script, just create a file in AppData\Local\Plutonium\storage\t6\scripts\zm

      #include common_scripts\utility;
      #include maps\mp\_utility;
      #include maps\mp\zombies\_zm_utility;
      #include maps\mp\zombies\_zm_magicbox;
      #include maps\mp\gametypes_zm\_weaponobjects;
      #include maps\mp\zombies\_zm_weapons;
      #include maps\mp\zombies\_zm_weap_claymore;
      #include maps\mp\zombies\_zm_weap_ballistic_knife;
      #include maps\mp\zombies\_zm_magicbox_lock;
      #include maps\mp\zombies\_zm_unitrigger;
      #include maps\mp\zombies\_zm_audio_announcer;
      #include maps\mp\zombies\_zm_pers_upgrades_functions;
      #include maps\mp\zombies\_zm_score;
      #include maps\mp\zombies\_zm_equipment;
      #include maps\mp\zombies\_zm_stats;
      #include maps\mp\zombies\_zm_audio;
      #include maps\mp\_demo;
      #include maps\mp\zombies\_zm_weap_cymbal_monkey;
      
      main() {
          replaceFunc(maps\mp\zombies\_zm_magicbox::treasure_chest_canplayerreceiveweapon, ::treasure_chest_alwaysrecvweapon);
      }
      
      treasure_chest_alwaysrecvweapon( player, weapon, pap_triggers )
      {
          if ( !get_is_in_box( weapon ) )
              return 0;
          
          if ( isdefined( player ) && player has_weapon_or_upgrade( weapon ) )
              return 0;
      
          if ( !player player_can_use_content( weapon ) )
              return 0;
      
          return 1;
      }
      
      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Recent
      • Tags
      • Popular
      • Users
      • Groups
      • Donate