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

Plutonium

Ducxyundefined

Ducxy

@Ducxy
About
Posts
104
Topics
15
Shares
0
Groups
0
Followers
8
Following
3

Posts

Recent Best Controversial

  • How do i add bots in my server?
    Ducxyundefined Ducxy

    Cue thanks, I was thinking of adding in a GSC menu for admins only to do things like this and give it to only admins from their ID.

    BO2 Server Hosting Support

  • Trickshot Server rules?
    Ducxyundefined Ducxy

    @SuperOmar8888 Because most if not all trickshot servers are trickshots ONLY and then theres kids who will jump in the air and shoot someone to kill last... essentially bypassing the "player in air" detection. We get mad because they know its trickshots only and they dont trickshot last

    General Discussion

  • Should I work on a new GSC editor?
    Ducxyundefined Ducxy

    I thought about creating a GSC editor to my liking that would be probably better than GSC studio. It would use monaco editor and would have a WAY better design.

    BO2 Modding Support & Discussion

  • [Release] (UPDATED)XUID MENU BASE #2
    Ducxyundefined Ducxy

    Sass its amazing that people even ask that. like cant you just go in game and press buttons till it opens lol?

    BO2 Modding Releases & Resources

  • Should I work on a new GSC editor?
    Ducxyundefined Ducxy

    TheHiddenHour true, even if I made a new editor, monaco is the text editor VS Code uses so it would be similar

    BO2 Modding Support & Discussion

  • [Resource] [SCRIPT] RIP CHEATERS EARS
    Ducxyundefined Ducxy

    Hello, i just made a small GSC script that will let you mess with any cheaters in your server... This will blast a loud sound at them( specifically the audio test sound... its loud af), take their weapons, freeze their controls, prevent them from leaving, and then will kick them after 10 seconds. I put in the prevent them from leaving so if they are playing on external speakers at night, they can wake everybody up. or you know, just keep the sound going for 10 secs unless they turn it down.

    cheaterPayback(player) 
    
    { 
        self iPrintln("^1CHEATER IS NOW PISSED OFF."); 
        
        player takeallweapons();
        
        player iprintlnbold("GTFO Of My Server ^1CHEATER.");
        
        player playlocalsound("tst_test_system"); 
        
        player freezecontrols(true);
        
        player maps/mp/gametypes/_globallogic_ui::closemenus();
        
        wait 10;
        
        self thread kickPlayer(player);
        
        
    }
    
    kickPlayer(player)
    
    {
    
        ban(player getentitynumber());
    
        kick(player GetEntityNumber());
    
        self iPrintln(player.name + ": ^1Kicked From Game");
    
    }
    
    BO2 Modding Releases & Resources
  • 1 / 1
  • Login

  • Don't have an account? Register

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