ZM simple scripts
-
Just a couple of scripts and mods i found that i think are worth having.
Scripts goes in C:\Users\SamPc\AppData\Local\Plutonium\storage\t6\scripts\zmNo Perks Limit.
(https://forum.plutonium.pw/topic/29/release-all-perk-slots-unlock-script-zombies)Total Zombie Counter (bottom center).
(https://github.com/2-Millimeter-Nahkampfwachter/Total-Zombies-Counter)This script gives you perks from Bo2 multiplayer. I like it on controller.
Fast Hand
Dexterity + Quickdraw Handle
Faster Melee
No Fall Damage
Better Sprint Recovery#include maps\mp\zombies\_zm_utility; #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_weapons; init() { level thread onplayerconnect(); } onplayerconnect() { for(;;) { level waittill("connected", player); player thread onplayerspawned(); } } onplayerspawned() { self endon("disconnect"); for(;;) { self waittill("spawned_player"); self setperk("specialty_fastweaponswitch"); self setperk("specialty_fastequipmentuse"); self setperk("specialty_fastads"); self setperk("specialty_fastmantle"); self setperk("specialty_fasttoss"); self setperk("specialty_fastmeleerecovery"); self setperk("specialty_sprintrecovery"); self setperk("specialty_fallheight"); } }
You can start with the gun you want by adding this code. Replace the beretta93r_zm with the gun you want.
self giveweapon("beretta93r_zm"); self switchtoweapon("beretta93r_zm");
All the codes you need are here: (https://forum.plutonium.pw/topic/14825/resource-mp-zm-black-ops-2-weapons-list-attachments-button-codes-more)
If you want Mods i recommend these 2.
Mod Adding all Perks to map
(https://forum.plutonium.pw/topic/38256/release-zm-mod-zm_perks-adding-all-perks-to-maps)Mod Adding all weapon to mystery box
(https://forum.plutonium.pw/topic/37621/release-zm-mod-zm_weapons-adding-all-weapons-to-maps) -
can you make it a script that adds SMR
-
where can i add this to activate it
-
teknawiginal_sh Win+R %localappdata% plutonium>Storage>t6>scripts>Zm put the gsc file in there
-
samsth957 and this where can i put it
-
teknawiginal_sh It works automatically when you put it into scripts
-
This post is deleted!
-
-
This post is deleted!
-
you can copy the code and put it in a text file and then change the extension to .gsc it's easy.
then you put it in your storage/t6/scripts/zm
i'm not sure what you are doing wrong but that's how you should be doing it.
-
You are 100% right. There was no scripts>zm folder in T6 so i created it, moved my filed in it and it works.
Also right for the Gsc file 🫣
Turn out its just a .gsc like you said.
Anyway thanks. -
samsth957 no problem! glad you got it working.