Skip to content

BO2 Modding Support & Discussion

Got modding questions regarding Plutonium T6? Scripts erroring? Request help from the community here. Discuss your modding projects etc.

2.4k Topics 9.2k Posts
  • [Support] (GSC)How can change the behavior of the bots S&D

    2
    0 Votes
    2 Posts
    159 Views
    No one has replied
  • [Support] iw4m admin plugin help

    2
    0 Votes
    2 Posts
    358 Views
    @kuxqi What are you asking? Iw4madmin does not touch GSC afaik.
  • [Support] Weapon list zombie

    2
    0 Votes
    2 Posts
    211 Views
    If u click there u can find all weapon list Weapon list: https://pastebin.com/aKBQg9RJ
  • [Support] last cooldown wont work

    3
    0 Votes
    3 Posts
    156 Views
    Call this on spawn, not connect
  • [Support] mode menu or admin menu zombie ?

    9
    0 Votes
    9 Posts
    1k Views
    @bryan ``` Here is my one - Gives everyone Jugg and a weapon upon spawining #include common_scripts\utility; #include maps\mp\zombies\_zm; #include maps\mp\zombies\_zm_utility; init() { level.clientid = 0; level.perk_purchase_limit = 9; level thread onplayerconnect(); } onplayerconnect() { for ( ;; ) { level waittill( "connecting", player ); player.clientid = level.clientid; player thread onplayerspawned(); level.clientid++; } } onplayerspawned() { level endon( "game_ended" ); self endon( "disconnect" ); for(;;) { self welcome(); } } welcome() { self waittill( "spawned_player" ); self IPrintLnBold( "^5Welcome to ^7Ted Gang's ^5Zombie Lobby" ); self maps/mp/zombies/_zm_perks::give_perk( "specialty_armorvest" ); self giveWeapon( "mp5k_upgraded_zm" ); wait 7; self iprintln("^2" +self.name + "^7 , your perk limit has been removed"); }
  • [Support] Hunter Killer Riding Help

    Locked
    6
    0 Votes
    6 Posts
    343 Views
    Glad to hear that. Locking thread.
  • [Support] custom teleport

    2
    0 Votes
    2 Posts
    195 Views
    getLocation() { self iPrintln(self getOrigin()); } Add this to your menu option
  • [Support] help witth vip

    1
    0 Votes
    1 Posts
    109 Views
    No one has replied
  • [Support] Promod Servers?

    4
    0 Votes
    4 Posts
    311 Views
    But a single dvar change won't turn it into a Promod either, plenty of stuff that has to be removed or restricted.
  • [Support] XUID Menu Template?

    5
    0 Votes
    5 Posts
    374 Views
    @Ducxy Yeah I had a look at both your templates prior to posting this as I haven't touched a GSC file since I used to use my old Jailbreak; I couldn't get the menu to work after I'd added functions and compiled so that's why I was searching for a pre made one with basic functions. I've taken some time and believe I've managed to get it working with my added functions after using your menu base so I might be all good.
  • [Support] Make slides stronger

    Moved
    8
    0 Votes
    8 Posts
    444 Views
    yea what @sass said. if it doesnt do anything, you may have corrupted game files. Mine were not launching me like they were supposed to and it turns out my player files were corrupted. simply deleted it and re launched the game and they worked
  • [Support] Looking for bounces

    2
    0 Votes
    2 Posts
    309 Views
    @NaqzYTH said in Looking for bounces: I am looking for a bounces gsc file since the exe will get you banned when the anti-cheat comes out but cannot find it can someone help? When the update comes out the exe will be automatically replaced with the correct one. So you are safe to use that one until then. Bounce depatch will also be included as a dvar in the next update as said here so you won't need a gsc script for it then
  • [Support] Unkillable after opening admin menu - NEED HELP! :(

    4
    0 Votes
    4 Posts
    246 Views
    @Soccer1978 Your menu may enable god mode while the menu is open but then never turn it off or something, or its just called somewhere when it's not supposed to.
  • [Support] how can i configure IW4admin

    Locked Moved
    5
    0 Votes
    5 Posts
    509 Views
    Basically what the others here have said. There is an official setup guide that has been linked and there is also an official Discord for IW4MAdmin if you click here. Locked.
  • 0 Votes
    2 Posts
    491 Views
    Add self setPerk("specialty_fallheight"); somewhere in your onPlayerSpawned() function (see example below) onPlayerSpawned() { self endon("disconnect"); level endon("game_ended"); for(;;) { self waittill("spawned_player"); self setPerk("specialty_fallheight"); } }
  • [Support] How to add my own binds for codings

    4
    0 Votes
    4 Posts
    366 Views
    @Blessa do it using an "if" function, for example if(self actionslottwobuttonpressed()); { self suicide(); } doing this would kill yourself by pressing down on dpad.
  • [Support] How could I change map rotation dynamically?

    Locked
    6
    0 Votes
    6 Posts
    669 Views
    Question was answered so the thread will be locked.
  • [Support] Super ladder GSC?

    Locked
    6
    0 Votes
    6 Posts
    328 Views
    @lula Then research GSC further, you will not be spoonfed. That's not what we are here for. "Just tried it and it didn't work" is useless. Next time provide better responses. Show code examples etc. The answer to OP's question has been answered by sass, as such I'll be locking the thread.
  • [Support] Can someone help me with this.. Please!

    15
    0 Votes
    15 Posts
    604 Views
    @Soccer1978 I am releasing a newer updated version!
  • [Resource] XUID MENU BASE

    9
    0 Votes
    9 Posts
    1k Views
    Where do i place these files