someone know the name of this ambient shader?

AndreTOQU3
Posts
-
I want know Shader name bo2 -
[Release] [ZM] TechnoOps Collectionthanks, it working now.
-
[Release] [ZM] TechnoOps Collectiontechboy04gaming
i download 3.7 but in game is name 3.5
-
Help with give granade scriptI want a script that makes the player earn grenades. I tried a lot but I didn't get anything. on zombies mode
-
¿Como puedo resolver este problema? How i can solve this problem?Codder_ thanks!!!
-
¿Como puedo resolver este problema? How i can solve this problem?Codder_ já tentou atualizar o plutonium?
-
[DLC 5] merged2 file...I came here to find out if anyone has the download of the merged2.rar file. I searched a lot and at most I could find a torrent that doesn't work. If anyone has it, could you share it with me?
-
[ZM-Script] Double Jump When You Have Quick Revive.Plutonium need load multimods
-
[ZM-Script] Double Jump When You Have Quick Revive.GhostRider0125 It would be a good idea, if you want you can modify the script and publish it your way.
-
[ZM-Script] Double Jump When You Have Quick Revive.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
-
[WIP] [Zombies] Gobblegumswhere is download??
-
[ZM-Script] Double Jump When You Have Quick Revive.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!!