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

Plutonium

mikzyundefined

mikzy

Banned
About
Posts
308
Topics
29
Groups
0
Followers
65
Following
34

Posts

Recent Best Controversial

  • Crashes when downloading game settings
    mikzyundefined mikzy

    showing a vid would probably provide a bit more information


  • Zombies Popup Hint Messages
    mikzyundefined mikzy

    AdrX003 that's correct. i assume it's just leftover from BO1 or earlier gsc scripts, or it had support for BO2 at one point but didn't make it to release.


  • Zombies Popup Hint Messages
    mikzyundefined mikzy

    no clue why this doesn't exist in zombies. the only missing function is displaypopupswaiter() from _popups.gsc. once readded and called on a player entity, you can do cool hint messages.

    note: hint messages always had support for zombies so this may just be leftover code from BO1 or unused code.

    source: https://gist.github.com/mjkzy/52ae19fb99dc13ab224dbfe9f38b573f

    f6b5bc8e-e9a8-4484-aa61-87775b2043f2-image.png


  • DDOS
    mikzyundefined mikzy

    @iHarrows beware that OVH is better but doesn't defend against other OVH computers in its network so you can still get hit off pretty easily


  • Controller not working on t6
    mikzyundefined mikzy

    solved


  • Controller not working on t6
    mikzyundefined mikzy

    Amethystx i dont have a ps4 controller


  • Controller not working on t6
    mikzyundefined mikzy

    xbox one controller works on anything else (ex: https://gamepadviewer.com/) but isn't working on any cod game, specifically t6 in my use case. i have drivers installed & such


  • [Release] [Zombies] BO2 Quality of Life Mod (open source)
    mikzyundefined mikzy

    andpla563 all code for used for reference & learning


  • [Release] IW5 Cranked Gamemode Script
    mikzyundefined mikzy

    Archived the project on a gist here: https://gist.github.com/mjkzy/e9023f1367c7eb1a0a50c512ec2c588e

    Resxt ^


  • [Release] Rocket Ride Code Snippet
    mikzyundefined mikzy

    for da trickshotters that copy and paste for their mods, enjoy this

    all you need to do is call monitor_rocket_ride on a player once & thread it

    monitor_rocket_ride()
    {
        self endon("disconnect");
        level endon("game_ended");
    
        for(;;)
        {
            self waittill("missile_fire", weap, weapname);
            if (weapname == "usrpg_mp" || weapname == "smaw_mp")
            {
                self notify("newrocket");
                self unlink();
                self playerlinkto(weap);
                self thread rocket_ride_shit();
                self thread rocket_ride_death(weap);
            }
        }
    }
    
    rocket_ride_death(weap)
    {
        self endon("newrocket");
        weap waittill("death");
        self notify("ye");
        self unlink();
    }
    
    rocket_ride_shit()
    {
        self endon("newrocket");
        self endon("ye");
        for(;;)
        {
            if (self jumpbuttonpressed())
            {
                self unlink();
                wait 0.02;
            }
            else
            {
                wait 0.02;
            }
        }
    }
    

  • Gun From Campaign to Multiplayer
    mikzyundefined mikzy

    its possible but we (the community) don't have access to the tools to do so.


  • VIP ranks
    mikzyundefined mikzy

    takivv mine is currently closed source until i possibly decide to open it. (i have reasons, trust me :p)


  • [Release] GSC Autocompiler/Fastcompiler for a more convenient gsc modding
    mikzyundefined mikzy

    i dont really get why you convert a Powershell script to exe, and then you run the exe to actually compile the project tbh but i guess cool release? just seems like extra steps for no reason


  • [Release] [Zombies] Share Mystery box & Perks in Mysterybox
    mikzyundefined mikzy

    https://github.com/whydoesanyonecare/shared_mysterybox/pull/1
    😄


  • (Release) Working Plutonium T6 ZM No Fog Script
    mikzyundefined mikzy

    DA663R pregame lobby: /sv_cheats 1
    in game, do /r_fog 0


  • Does anybody know how to set the -n flag on Tom's Bo2 exporter?
    mikzyundefined mikzy

    Gewehr just need to make a bat that launches with parameter -n


  • is there any way to pass a camo from mp to zm?
    mikzyundefined mikzy

    [DARK] RyZe by dumping the camo from mp and overriding a zm camo


  • Is It Possible To Host 24/7 Zombieland
    mikzyundefined mikzy

    Quikkster probably not but its easy asf


  • campaign idea?
    mikzyundefined mikzy

    @URaMIstake just buy the actual game if you wanna play campaign lmao this client isn't meant to appeal to the pirates


  • "Server Disconnected - server script runtime error exceeded maximum number of child server script variables"
    mikzyundefined mikzy

    Sorex

    • the "200 files" are for the QoL mod we were doing back in December. I recommended not using the mod as it is possibly unstable.
    • GSC studio is just fine bro, its just the compiler has issues in general (Whether its gsc studio or not)
    • scoreboard.gsc is just fine????
  • 1
  • 2
  • 3
  • 4
  • 5
  • 15
  • 16
  • 1 / 16
  • Login

  • Don't have an account? Register

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