Marty59 it doesnt let you instant rejoin because it doesn't actually disconnect you from server and about after 30 seconds, it eventually will

mikzy
Posts
-
Error : client command overflow -
[Release] [Zombies] BO2 Quality of Life Mod (open source)CLARIFICATION: This project was not finished and is now open sourced. Compiling the project is something we will not assist with, and any issues can be reported at the GitHub.
Explanation:
This mod was originally planned to be a big release for server owners to easily use and configure with basic features/mods that would be cool to have, but this project has sat here for months with no one having the free time to work on it.So instead, we have open sourced this project completely and we are taking contributions/forks of the project from the community.
This can also be useful for finding mods we did, and getting code snippets we included.We hope the community enjoys this and can make something out of this.
Contributors: mikey, JezuzLizard, INSANEMODE, Cahz
Open Source (GitHub): https://github.com/mjkzy/zm-QoL-mod
stars appreciated -
Battle Royale -
Battle RoyaleMr. Android Oh, that looks so cool. I think doing this project with the other modders would be super fun.
-
(LOOKING FOR) among us camo!techboy04gaming funny enough, its a real camo.
also, i think there was a really good animated one done by a group of people but i think it was privately passed around.
-
Battle Royale -
Anti-cheat policyluigistyle well I just don't think they tell people how to launch LAN without using launcher commonly
-
Anti-cheat policyLiIUziVert you can play in LAN if you figure out how to launch it.
-
Is there a way to freeroam around a zombies map?Scrqffy yes, the gsc only works whenever you are the host, aka private match. you should be good to go on not moving it.
-
BO2 "Graphics" improvement -
Is there a way to freeroam around a zombies map?Scrqffy Don't touch the games_mp file.
The folder you need to put the compiled gsc (named: _clientids.gsc) will be put in t6r/data/maps/mp/gametypes_zm/
if maps, mp, or gametypes_zm doesn't exist, make them.
-
Is there a way to freeroam around a zombies map?Scrqffy yes, here is a simple script at achieving what you want.
this script will:
- gives 50k points
- gives Galil
- gives god mode
all you need to do is compile the gsc and learn how to use gsc in a private match. once you learn that, here's the code you need (copy and paste into your file before compiling)
#include maps\mp\_utility; #include common_scripts\utility; #include maps\mp\gametypes_zm\_hud_util; #include maps\mp\gametypes_zm\_hud_message; init() { level thread onplayerconnect(); } onplayerconnect() { for(;;) { level waittill("connected", player); player thread onplayerspawned(); } } onplayerspawned() { self endon("disconnect"); level endon("end_game"); self iprintln("simple free roam by mikey"); self EnableInvulnerability(); self.points = 50000; self GiveWeapon("galil_upgraded_zm"); }
-
Points with chat command? -
How to change/create PaP camos in zm?You can only replace the current ones. To do so, you need to find and export the original PaP textures.
-
Looking forward to alter weapons stats & perks in zombiescoco748 Like he said, you can decompile fastfiles and get most of this (I don't know the tool) and then that's how you obtain them. It contains a bunch of different stuff. There may be a tool out there but as far as I know, I don't think there's anything public.
(Correct me if i'm wrong) -
My character is slow after a jump in custom gamesWalscop here's how you would disable the jump slowdown:
you just need to learn how to use gsc clientside, then replace: maps/mp/gametypes_zm/_clientids.gsc. and then, just pop in this the init.
init() { setdvar("jump_slowdownEnable", 0); }
-
Mouse wheel button codesthink Matrix would know better than any of us. never worked with scroll up and down
-
Cheatervideo private
-
Care Package Disappear Timemikey Solved. The only reason why this topic was open because I couldn't exactly recompile, so I was looking for a alternative. If you go to JezuzLizard's GitHub, the fixed and recompiled version of _supplydrop.gsc is there.
Staff can lock this.
-
helpXerxes I do know what i'm talking about... but, I was adding onto the discussion on when the error also occurs. Maybe if you looked around just a bit harder, you would see that the thread I replied to was about the error and I talked about how it's not the origin of the issue but rather another way to reproduce the issue.