Nothing here 
AndreTOQU3
Posts
-
Where can i find irony.dll and compiler.exe??? -
[ZM-BO2-SCRIPT] Dynamic Hardcore Health SystemThis script replaces the default BO2 health with a dynamic perk-based health system.
Base Health: 60
Max Health Cap: 250
Health is recalculated every 0.5 seconds based on perks the player owns.
Health Bonuses:
Juggernog / Armor Vest: +70 HP
Quick Revive: +60 HP
Tombstone: +60 HP
The script automatically updates the player's max health, clamps it to 250, and adjusts current health if needed.
Script:
#include maps\mp\zombies\_zm_utility; #include common_scripts\utility; #include maps\mp\_utility; main() { level thread onPlayerConnect(); } onPlayerConnect() { for(;;) { level waittill("connected", player); player thread player_health_system(); } } player_health_system() { self endon("disconnect"); const BASE_HEALTH = 60; const MAX_HEALTH_CAP = 250; self.maxhealth = BASE_HEALTH; self.health = self.maxhealth; for (;;) { wait 0.5; health = BASE_HEALTH; if ( self HasPerk( "specialty_juggernaut_zombies" ) || self HasPerk( "specialty_armorvest" ) ) { health += 70; } if ( self HasPerk( "specialty_quickrevive_zombies" ) || self HasPerk( "specialty_quickrevive" ) ) { health += 60; } if ( self.tombstone_legit && self HasPerk( "specialty_scavenger" ) ) { health += 60; } if (health > MAX_HEALTH_CAP) health = MAX_HEALTH_CAP; if (health != self.maxhealth) { self.maxhealth = health; if (self.health > self.maxhealth) self.health = self.maxhealth; } } } -
[BO2 Release] Ultimate perks 1.0 [GSC Script]Perk Functions Explained
This script adds custom abilities to four base BO2 Zombies perks.
Here is what each perk function does:- Speed Cola – Power-Up Magnet + Hidden Perks
When the player has Speed Cola (
specialty_fastreload), the script grants two extra hidden perks:- Fast Weapon Switch(
specialty_fastweaponswitch) - Fast Grenade Toss (
specialty_fasttoss)
Additionally, the player can pull power-ups toward themselves by pressing the melee button.
How it works:
- Every time the player presses melee, the script checks for nearby power-ups.
- Any power-up within 1500 units moves toward the player over 0.3 seconds.
- There's a 1-second cooldown between pulls.
- PhD Flopper – Automatic Grenade Regeneration
When the player has PhD Flopper (
specialty_flakjacket), they receive:- A guaranteed frag grenade loadout
- Automatic regeneration of grenades over time
How it works:
- The script keeps track of the lethal grenade type the player has.
- Every 30 seconds, if the player has less than 4 grenades, they gain +1 grenade.
- Works with both frag and semtex (sticky).
- Quick Revive – Double Jump / Multi-Jump
When the player has Quick Revive (
specialty_quickrevive), they gain the ability to double jump.How it works:
-
The script listens for the jump button press.
-
The player has 2 extra jumps stored.
-
Each jump adds upward velocity:
self SetVelocity(self GetVelocity() + (0,0,300)); -
The jump charges reset automatically every 1.8 seconds.
This creates smooth, BO3-style multi-jump movement.
- Double Tap – Cashback (Bonus Points System)
After the player has had Double Tap active for a few seconds, they enable the Cash Back effect.
How it works:
- The script monitors the player’s score in real time.
- Whenever the player earns points, they get 50% extra points on top.
- Example: earning 100 points gives +50 bonus points.
- Only works while the player has Double Tap (
specialty_rof).
:
#include maps\mp\_utility; #include maps\mp\zombies\_zm_utility; #include common_scripts\utility; #include maps\mp\gametypes_zm\_hud_util; #include maps\mp\gametypes_zm\_hud_message; #include maps\mp\gametypes_zm\_zm_powerups; #include maps\mp\zombies\_zm_weapons; init() { level thread onPlayerConnect(); level thread monitorPoints(); } onPlayerConnect() { for (;;) { level waittill("connected", player); player thread onPlayerSpawned(); } } onPlayerSpawned() { self endon("disconnect"); level endon("game_ended"); for (;;) { self waittill("spawned_player"); wait 2; self thread speedcola(); self thread phdflopper(); self thread quickrevive(); self thread doubletap(); } } // ----------------------------- // 1. SPEED COLA - Magnetic Powerup // ----------------------------- speedcola() { self endon("disconnect"); self.lastPullTime = 0; for (;;) { if (self HasPerk("specialty_fastreload")) { if (!(self HasPerk("specialty_fastweaponswitch"))) { self SetPerk("specialty_fastweaponswitch"); self notify("perk_acquired", "specialty_fastweaponswitch"); } if (!(self HasPerk("specialty_fasttoss"))) { self SetPerk("specialty_fasttoss"); self notify("perk_acquired", "specialty_fasttoss"); } } else { if (self HasPerk("specialty_fastweaponswitch")) self UnsetPerk("specialty_fastweaponswitch"); if (self HasPerk("specialty_fasttoss")) self UnsetPerk("specialty_fasttoss"); } if (getTime() - self.lastPullTime > 1000) { if (self meleeButtonPressed()) { if (!self HasPerk("specialty_fastreload")) { wait 0.3; continue; } hasPulled = false; foreach (powerup in level.active_powerups) { if (!isdefined(powerup)) continue; if (distance(self.origin, powerup.origin) <= 1500) { powerup moveto(self.origin, 0.3); hasPulled = true; } } if (hasPulled) { self.lastPullTime = getTime(); } } } wait 0.05; } } // ----------------------------- // 2. PHD FLOPPER - Regen de Granadas // ----------------------------- phdflopper() { self endon("disconnect"); self takeweapon("frag_grenade_zm"); self takeweapon("sticky_grenade_zm"); self giveweapon("frag_grenade_zm"); self set_player_lethal_grenade("frag_grenade_zm"); self setweaponammoclip("frag_grenade_zm", 4); if (!isdefined(self.lethal_loop_started)) { self.lethal_loop_started = true; self thread lethal_grenade_loop(); } } lethal_grenade_loop() { self endon("disconnect"); for (;;) { wait(1); if (!self hasperk("specialty_flakjacket")) continue; if (self hasweapon("sticky_grenade_zm")) self.lethal_type = "sticky_grenade_zm"; else if (self hasweapon("frag_grenade_zm")) self.lethal_type = "frag_grenade_zm"; else continue; wait(30); if (self hasweapon(self.lethal_type)) { ammo = self getweaponammoclip(self.lethal_type); if (ammo < 4) { self setweaponammoclip(self.lethal_type, ammo + 1); } } } } // ----------------------------- // 3. QUICK REVIVE - Multiple jumps // ----------------------------- quickrevive() { self endon("disconnect"); self notifyOnPlayerCommand("jump_button_pressed", "+gostand"); self.jumps_left = 2; self thread reset_pulo_timer(); for(;;) { self waittill("jump_button_pressed"); 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; } } // ----------------------------- // 4. DOUBLE TAP - Cash Back // ----------------------------- doubletap() { { self endon("disconnect"); wait 7.5; self.hasHalfDouble = true; } } monitorPoints() { for(;;) { foreach(player in level.players) { if (!isDefined(player.old_score)) player.old_score = player.score; if (isDefined(player.hasHalfDouble) && player.hasHalfDouble && player HasPerk("specialty_rof")) { diff = player.score - player.old_score; if (diff > 0) { bonus = int(diff * 0.5); player.score += bonus; } } player.old_score = player.score; } wait 0.2; } } -
[Release] [ZM] TechnoOps Collectiontechboy04gaming Hello guy, I really like your mod and I wanted to ask you to make a change for the next update. So, I'd like to ask you to make the health bar optional, allowing you to choose whether it's on or off before entering a match.
-
Puedo ser baneado por esto?ian_xzx no, just hack
-
[MP & ZM] Return to AlphaJust waiting for this to be cooked >;)
-
🟠 Call Of Duty: Black Ops II 💿 | T6 ⌨🖱 | Re-Texturized 🎨 🟠BotWrk download dont work
-
[Release] [ZM] TechnoOps Collectiontechboy04gaming please create TechnoOps Collection + CW mod

-
PRECISO DE AJUDA URGENTE NO PLUTONIUMG10V4NN111 quando o meu ficava assim eu baixava uns driver que consertava
-
[ZM-BO2 Script help!!!] Change perk machines Price!!GhostRider0125 Thanks bro!!!
-
[ZM-BO2 Script help!!!] Change perk machines Price!!Hi guys, I need help. I need a GSC script that changes the price of perks. I tried to create it but couldn't. If anyone knows anything, please help me.
-
PRECISO DE AJUDA URGENTE NO PLUTONIUMnevoeiro_vicioso Atualiza os drivers
-
Motivo de baneo permanente.Viciuus algum moderador ficou puto quando tu matou ele e te baniu, se não usou hack só pode ter sido isso.
-
[Release] [ZM] TechnoOps Collectionthanks, it working now.