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

Plutonium

  1. Home
  2. BO2 Modding Support & Discussion
  3. Perma Perks GSC Help

Perma Perks GSC Help

Scheduled Pinned Locked Moved BO2 Modding Support & Discussion
10 Posts 7 Posters 2.1k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Tgamer500undefined Offline
    Tgamer500undefined Offline
    Tgamer500
    wrote on last edited by
    #1

    Does anyone have a script or know if it's possible to enable the perma perks on all maps or at the bare minimum, the keep perks while down perk on Origins. I have tried going into _zm_pers_upgrades.gsc and changing the is_pers_system_active() to always return 1 and is_pers_system_disabled() to always return 0 and then including _zm_pers_upgrades_functions inside of zm_tomb.gsc and using init_persistent_abilities() without the is_classic() check with no luck. I am relatively new to gsc and any help would be greatly appreciated.

    Sorexundefined broken168undefined 2 Replies Last reply
    0
    • Sorexundefined Offline
      Sorexundefined Offline
      Sorex Contributor
      replied to Tgamer500 on last edited by
      #2

      Tgamer500 I do not have a script to do this but it is not difficult to create it. Anyway I don't think it's a good idea, in my opinion such a thing ruins the game.
      Making the perks permanent and how to turn the zombies mode into a mode for children without skills.

      1 Reply Last reply
      0
      • broken168undefined Offline
        broken168undefined Offline
        broken168
        replied to Tgamer500 on last edited by broken168
        #3

        Tgamer500 I didn't quite understand what you want. But I made a script that "saves" all its perks. Every time you respawn or revive, you define the perks.

        /*
        *	 Black Ops 2 - GSC Studio by iMCSx
        *
        *	 Name : modForForum
        *	 Description : 
        *	 Date : 2020/09/17 - 11:01:01	
        *
        */	
        
        // Put your functions here
        #include maps\mp\_utility;
        #include common_scripts\utility;
        #include maps\mp\gametypes_zm\_hud_util;
        #include maps\mp\gametypes_zm\_hud_message;
        #include maps\mp\zombies\_zm_utility;
        #include maps\mp\zm_transit;
        #include maps\mp\zombies\_zm;
        #include maps\mp\zombies\_zm_stats;
        #include maps\mp\zm_transit_standard_town;
        
        init()
        { 
            level thread onPlayerConnect();
        
        }
        
        onPlayerConnect()
        {
            for(;;)
            {
                level waittill("connected", player);
                player thread onPlayerSpawned();
                player thread onPlayerRevive();
            }
        }
        
        onPlayerSpawned()
        {
            self endon("disconnect");
            level endon("game_ended");
        
            for(;;)
            {
                self waittill("spawned_player", player);
                wait 1;
                self setperk("specialty_additionalprimaryweapon");
                self iprintln("Perk added");
            }
        }
        onPlayerRevive()
        {
        	self endon("disconnect");
        	self endon("game_ended");
        	
        	for(;;)
        	{
        		self waittill("player_revived");
        		self setperk("specialty_additionalprimaryweapon");
        		self iprintln("Perk added");
        	}
        }
        

        You can find a perk list here: https://www.nextgenupdate.com/forums/black-ops-2-gsc-mods-scripts/763318-gsc-managed-code-list.html

        thebx2undefined jugernogg2829undefined 2 Replies Last reply
        2
        • thebx2undefined Offline
          thebx2undefined Offline
          thebx2
          replied to broken168 on last edited by
          #4

          broken168 thanks for sharing this script, could definitely come in handy when playing with younger siblings or people who don't game much. Especially Jugg. I know easy mode already exists but I'd also prefer when playing with such people to not have to restart on round 3 all the time or something.

          thanks again!

          broken168undefined 1 Reply Last reply
          1
          • broken168undefined Offline
            broken168undefined Offline
            broken168
            replied to thebx2 on last edited by
            #5

            thebx2 I'm happy to have helped you 🙂

            1 Reply Last reply
            0
            • jugernogg2829undefined Offline
              jugernogg2829undefined Offline
              jugernogg2829
              replied to broken168 on last edited by
              #6

              broken168 eh hello i have a problem and i don't know how to play with my friends we send each other the friend request and when we try to play in the cod 2 we cant invite each other, and we prefer to play in a normal server what we can do?.

              broken168undefined 1 Reply Last reply
              0
              • broken168undefined Offline
                broken168undefined Offline
                broken168
                replied to jugernogg2829 on last edited by
                #7

                jugernogg2829 To play with your friends, you need a VPN (example: RadminVPN). You and your friends will join the same network. Someone will create the game (if the game does not start, use the command "xpartygo" on the console), and the others will connect using the command "connect radminIp: 4976" (example: connect 23.145.0.12:4976). The "radminIp" you can find within the program.

                jugernogg2829undefined 1 Reply Last reply
                1
                • jugernogg2829undefined Offline
                  jugernogg2829undefined Offline
                  jugernogg2829
                  replied to broken168 on last edited by
                  #8

                  broken168 thank's bro

                  1 Reply Last reply
                  0
                  • luigistyleundefined Offline
                    luigistyleundefined Offline
                    luigistyle Plutonium Staff
                    wrote on last edited by
                    #9

                    VPNs are not recommended, port forwarding is the preferred (and often more reliable) method.

                    1 Reply Last reply
                    0
                    • A Former User? Offline
                      A Former User? Offline
                      A Former User
                      wrote on last edited by
                      #10

                      Jugg is not in the list of commands for setperk

                      1 Reply Last reply
                      0

                      • Login

                      • Don't have an account? Register

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