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.1k Topics 7.8k Posts
  • [Support] Gsc script help

    23
    0 Votes
    23 Posts
    452 Views

    Farzad did you ever figure out how to learn basic gsc code that even my grandma could learn?

  • Follow up to last forum post about the editor.

    7
    0 Votes
    7 Posts
    116 Views

    homura okay

  • [Support] GSC Admin Script

    5
    0 Votes
    5 Posts
    170 Views

    RentalWTaken It's an admin program for your server... its not a "script"

  • [Support] GSC Combining Scripts

    7
    0 Votes
    7 Posts
    192 Views

    Thank you so much works really well

  • [Support] It is possible to read XML file from GSC, !Help

    4
    0 Votes
    4 Posts
    83 Views

    In my experience, you can open files in GSC but some are limited to work when developer options are enabled. But then again that's from CoD4/MW2. Looking at the BO3 script doc, it doesn't seem like you can open local files but you can to some extent with CoD4.

  • 0 Votes
    2 Posts
    96 Views

    make a seperate bind function. Dont use detachall() either. use Unlink()

    RocketBind() { for(;;) { if(self JumpButtonPressed()) { self Unlink(); wait .02; } else { wait .02; } } }
  • 0 Votes
    14 Posts
    521 Views

    That doesn't apply to writing code, even if you write proper code you probably revisit at some point to add additional functionality. But yeah do a few more of those mods and your server will be laggy af.

  • [Support] How do I find the file path for includes?

    Locked
    3
    0 Votes
    3 Posts
    75 Views

    Thankyou 🙂

  • [Support] Throwing knife refil

    Locked
    3
    0 Votes
    3 Posts
    79 Views

    Cheers my g

  • [Support] help

    Moved
    3
    0 Votes
    3 Posts
    47 Views

    Look at gsc dumps, try editing stock files and see your changes in action. MW2 is a good game to learn on. Iw4x is the client for mw2 and this client supports GSC loading.

  • [Support] unresolved external errors?

    7
    0 Votes
    7 Posts
    415 Views

    Kalitos Those includes are going to be the death of me thankyou.

  • [Support] Need help for load a gsc

    2
    0 Votes
    2 Posts
    56 Views

    The gsc are not injected into Plutonium, they are loaded from the server.

    Follow this guide: https://forum.plutonium.pw/topic/10/loading-custom-gsc-scripts

  • [Support] Pre-match timer

    4
    0 Votes
    4 Posts
    179 Views

    Enki said in Pre-match timer:

    level.gracePeriod level.prematchPeriod level.inGracePeriod

    you can play around with this variables
    but they can cause some problems for example on our tsd server sometimes the game dont end if you hit a shot

    You can make the level thread a function that sets those variables in a loop and then ends on game_ended.

  • [Support] More than one custom GSC script?

    11
    0 Votes
    11 Posts
    943 Views

    ted said in More than one custom GSC script?:

    #include maps\mp_utility;
    #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 maps/mp/zombies/_zm_perks::give_perk( "specialty_armorvest" );
    wait 7;
    self iprintln("^2" +self.name + "^7 , your perk limit has been removed");
    }

    Thanks for the script. I will try to practice some more, i appreciate it

  • [Support] Need Help for a gsc bind

    10
    0 Votes
    10 Posts
    253 Views

    Ducxy sounds good. Whenever u got time hit me up, i'll add u. Thanks

  • This topic is deleted!

    5
    0 Votes
    5 Posts
    353 Views
  • [Support] How do i delete bounces?

    7
    0 Votes
    7 Posts
    138 Views

    This snippet looks good to me

  • [Support] Map voting system GSC

    9
    0 Votes
    9 Posts
    435 Views

    As im not experienced at bo2 i cant help much but i can help with some traces:

    1- there should be some event handler probably named endGame(its from mw2)
    you can call your start voting script from. it may be in any of _gamelogic or _globallogic

    2- you can use good old voting script from Cod4 Royal Soldiers HC mod(available on cfgfactory) however its not as same as design of what you just sent

    3- and according to ImVeryTwisted if bo2 using old maprotation system (not the random one) you can easily set sv_mapRotationCurrent dvar after voting completed

    hope i helped you. sincerely

  • [Support] FPS Dvar

    5
    0 Votes
    5 Posts
    196 Views

    Sass You go much higher on bounces when you do a 125/333 switch.

  • [Support] looking for a noclip or ufo mode gsc

    2
    0 Votes
    2 Posts
    296 Views

    NaqzYTH You can use google and find one within 5 seconds.