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

Plutonium

AndreTOQU3undefined

AndreTOQU3

@AndreTOQU3
About
Posts
13
Topics
5
Shares
0
Groups
0
Followers
7
Following
10

Posts

Recent Best Controversial

  • [ZM-Script] Double Jump When You Have Quick Revive.
    AndreTOQU3undefined AndreTOQU3

    imagem_2025-06-24_005800708.png

    imagem_2025-06-24_010006799.png

    This script adds a double jump mechanic, but it only works if the player has the Quick Revive perk.

    A simple way to make gameplay more dynamic by giving Quick Revive an extra ability.

    This isn't perfect, but it works. I'm working on a project with improvements to bring together several scripts that improve the gameplay and make it more fun. Thanks for reading this.

    install: 1 - create a file in .gsc and paste the script below. (sorry, i can't use link)
    2 - Place the .gsc file in your scripts folder.

    SCRIPT:

    init()
    {
        for(;;)
        {
            level waittill("connected", player);
            player thread double_jump();
        }
    }
    
    double_jump()
    {
        self endon("disconnect");
    
        self notifyOnPlayerCommand("jump_button_pressed", "+gostand");
    
        self.jumps_left = 2;
    
        self thread reset_pulo_timer();
    
        for(;;)
        {
            self waittill("jump_button_pressed");
    
            //  Verifica se tem o perk revive
            if(self HasPerk("specialty_quickrevive"))
            {
                if(self.jumps_left > 0)
                {
                    self SetVelocity(self GetVelocity() + (0, 0, 300));
                    self.jumps_left--;
                }
            }
        }
    }
    
    reset_pulo_timer()
    {
        self endon("disconnect");
    
        for(;;)
        {
            wait 1.8; // time to reset
            self.jumps_left = 2;
        }
    }
    

    Thanks again!!

    BO2 Modding Releases & Resources

  • [ZM-Script] Double Jump When You Have Quick Revive.
    AndreTOQU3undefined AndreTOQU3

    I'm not that good at creating a complex mod to combine whos whos with another perk. I use a mod to add other perks to the map -> sehteria created this mod: https://forum.plutonium.pw/topic/38256/release-zm-mod-zm_perks-adding-all-perks-to-maps

    BO2 Modding Releases & Resources

  • [ZM-Script] Double Jump When You Have Quick Revive.
    AndreTOQU3undefined AndreTOQU3

    Plutonium need load multimods

    BO2 Modding Releases & Resources

  • [ZM-Script] Double Jump When You Have Quick Revive.
    AndreTOQU3undefined AndreTOQU3

    GhostRider0125 It would be a good idea, if you want you can modify the script and publish it your way.

    BO2 Modding Releases & Resources
  • 1 / 1
  • Login

  • Don't have an account? Register

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