Skip to content

BO2 Modding Support & Discussion

2.5k Topics 9.6k Posts

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

  • Origins custom wall buy

    1
    1 Votes
    1 Posts
    218 Views
    No one has replied
  • Weapon/Attatchment/Score Streaks Not fully working

    1
    0 Votes
    1 Posts
    126 Views
    No one has replied
  • zm y mp mod menu

    1
    0 Votes
    1 Posts
    208 Views
    No one has replied
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    10 Views
    No one has replied
  • This topic is deleted!

    4
    0 Votes
    4 Posts
    932 Views
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • Mod menu in custom lobbies?

    1
    0 Votes
    1 Posts
    184 Views
    No one has replied
  • Looking to hire a modder

    4
    0 Votes
    4 Posts
    314 Views
    Try NucleusCoop
  • the image folder

    1
    0 Votes
    1 Posts
    165 Views
    No one has replied
  • would love if ......

    1
    0 Votes
    1 Posts
    97 Views
    No one has replied
  • 0 Votes
    1 Posts
    158 Views
    No one has replied
  • 0 Votes
    11 Posts
    2k Views
    @Eleven111 I myself was confused from the jump as to how OP got the beginning code he posted. Most .gsc contain three main functions and they call like such. init() { level thread onPlayerConnect(); } onPlayerConnect() { for(;;) { level waittill("connected", player); //waits until you are connected to the server, before you spawn in. player thread onPlayerSpawned(); } } onPlayerSpawned() { self endon("disconnect"); level endon("game_ended"); for(;;) { self waittill("spawned_player"); //anything after this happens after you spawn in. You cannot set perks on a player that is not spawned in yet. } } Simply set the perk after said player spawns in. That's really where your problem lies.
  • Mod Menus - Visability

    6
    0 Votes
    6 Posts
    691 Views
    There is a variable in text & HUD's created called "archive". If you set this to "false" it will be invisible to everyone but you, that is only possible if the creator has already done this or added in a stealth option. You can also add this in yourself if you have the source code to the menus you are using as it is very easy. For example (NOT stealthed and can be seen by other players): drawText(text, font, fontScale, x, y, color, alpha, glowColor, glowAlpha, sort) { hud = self createFontString(font, fontScale); hud SetText(text); hud.x = x; hud.y = y; hud.color = color; hud.alpha = alpha; hud.glowColor = glowColor; hud.glowAlpha = glowAlpha; hud.sort = sort; hud.alpha = alpha; return hud; } This is hidden for everyone except for you: drawText(text, font, fontScale, x, y, color, alpha, glowColor, glowAlpha, sort) { hud = self createFontString(font, fontScale); hud SetText(text); hud.x = x; hud.y = y; hud.color = color; hud.alpha = alpha; hud.archived = false; //Hides all text this function creates hud.glowColor = glowColor; hud.glowAlpha = glowAlpha; hud.sort = sort; hud.alpha = alpha; return hud; } Just do the same for your shaders and you're done. If you do not have the source code for the menus you are using or you don't want to do this, I'm afraid there is no way.
  • Disable all pap camos/transparent pap camo? T6

    Moved
    4
    0 Votes
    4 Posts
    509 Views
    Asking for others to provide things is not a release
  • Restoring Stock BO2 Files

    4
    0 Votes
    4 Posts
    359 Views
    Manually. You open the folders with File Explorer and then you delete them.
  • Unofficial languages

    1
    1 Votes
    1 Posts
    199 Views
    No one has replied
  • I need some scripts that maybe useful in ZM Bo2

    3
    0 Votes
    3 Posts
    439 Views
    @Mazen-exe try this https://www.mediafire.com/file/f2tv7ybgjv9ljo8/best_script_bo2_zm.rar/file
  • mod zombies

    Moved
    3
    0 Votes
    3 Posts
    514 Views
    gun game
  • Server script runtime error

    Moved
    3
    1
    0 Votes
    3 Posts
    409 Views
    Where did you get this script from?
  • How can I enable Self player Shadows?

    5
    1
    0 Votes
    5 Posts
    1k Views
    @dweaver33 yes boss