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

Plutonium

mikzyundefined

mikzy

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

Posts

Recent Best Controversial

  • Care Package Disappear Time
    mikzyundefined mikzy

    is this time stored in a dvar or can it be modified using gsc? checked the _supplydrop.gsc file and there was nothing i could find.

    BO2 Modding Support & Discussion

  • Error : client command overflow
    mikzyundefined mikzy

    Marty59 couldn't tell you anything. i only got reports about this error recently (from players in our servers + others) and it is indeed related to network/pc issues.

    but here's what Rekti had to say about it:

    It's related to internet.
    If a user has packet loss then that can happen
    The server can at max process 128 client commands per client (store them), if a user does not respond in time multiple times or sends a lot at the same time (due to packet loss or shit speed) then the server kicks due to overflow.

    seems very common too
    7edf89fd-6701-41fd-afc6-f190f0f80a81-image.png

    BO2 Client Support

  • Error : client command overflow
    mikzyundefined mikzy

    To bump this issue, it seems to only happen when two things happen:

    • Using controller
    • Shooting a bullet

    Example of shooting bullet one:
    https://streamable.com/tbpwe8
    And no, it doesn't only happen in our servers. Thats just where the test is shown.

    BO2 Client Support

  • MW3 crashes after some minutes of gameplay
    mikzyundefined mikzy

    Link the actual crashdump, and not the crashdump text.

    MW3 Client Support

  • [Release] Volkz Skin Pack V1
    mikzyundefined mikzy

    too much purple bruh 😢

    BO2 Modding Releases & Resources

  • Help any1 plz
    mikzyundefined mikzy

    300Peep You are either missing game files or you are not properly selecting your folder.

    Launcher Support

  • does anyone know where to get vekays scream calling card
    mikzyundefined mikzy

    christian When doing calling cards, it has to be saved a certain way (via DDS) and then converted using a actual converter, not some online one.

    Check here for more information: https://forum.plutonium.pw/topic/7686/tutorial-making-custom-calling-cards

    BO2 Modding Support & Discussion

  • [Support] Code for distance meter for trickshots?
    mikzyundefined mikzy

    gunji you just check if the attacker is on last, nothing to do with the gameended notify

    BO2 Modding Support & Discussion

  • If i want to start a trickshot server how do I add barrel stuff protection and other features that are on other trickshot servers
    mikzyundefined mikzy

    Sorex i used to do this but I changed my way of doing it to do stuff with specific weapons, like altering a XPR or SVU spraying.

    BO2 Modding Support & Discussion

  • Looking forward to alter weapons stats & perks in zombies
    mikzyundefined mikzy

    coco748 To be honest, someone else would have to tell you how to read inside a csv file. In BO3, its possible to override these and read them but in BO2, couldn't tell you how.

    And documentation on what exactly? GSC or csv?

    BO2 Modding Support & Discussion

  • [Request] Chat bank
    mikzyundefined mikzy

    Basically, you could do this really simply now that I think about it.

    In GSC, you can actually listen for chat messages if you use this server plugin: https://github.com/fedddddd/t6-gsc-utils
    (Go to Releases, click "gsc-utils.dll" to download, drag into your server's t6r/data/plugins folder)

    In this GSC example you are about to see, I show you how to get 100 free points when you type ".givemoney" into the chat. How you would go about storing a user's amount of money to withdraw and deposit is on you to figure out.

    GSC Example:

    Put this in init()

    level thread watchChatMessages();
    

    And put this something in your code:

    watchChatMessages()
    {
       level endon("end_game");
       for(;;) {
          level waittill("say", player, message);
          if (toLowerCase(message) == ".givemoney") {
             player.score += 100;
             player tell("You have been given ^2100 ^7points!");
          }
          wait 0.01;
       }
    }
    
    BO2 Modding Support & Discussion

  • Problems with round
    mikzyundefined mikzy

    GAMEX For my sanity, would you try to reword this a bit better and I could possibly help here?

    About the round 5 thing, are you wanting it to look like this?

    if (level.round_number >= 5 && self.score < 500)
    {
       self.score = 500;
    }
    
    BO2 Modding Support & Discussion

  • [Release][Camo] "Better" Diamond Camo
    mikzyundefined mikzy

    ColderOrange looks cool

    BO2 Modding Releases & Resources

  • Error : client command overflow
    mikzyundefined mikzy

    @KiiwiWasTaken Folder is fine. Do you have bad internet or a bad PC? This could be the cause. Try my steps above.

    BO2 Client Support

  • [Release] [ZM] "Fused Emerald" Pack a Punch camo (PAP)
    mikzyundefined mikzy

    stressardo It's your (bo2 directory)/t6r/data/images and if the images folder does not exist, you need to create it.

    BO2 Modding Releases & Resources camos mod

  • Looking forward to alter weapons stats & perks in zombies
    mikzyundefined mikzy

    coco748 In my knowledge, I don't think you can exactly modify a table unless Plutonium supports it officially (maybe a server side plugin could achieve this, I don't know). Also, the thing is, any use of csv tables in GSC I have seen is mainly for reading them and getting stats and more from it. And plus, most modifications you probably want to do to a weapon are probably possible via GSC already.

    BO2 Modding Support & Discussion

  • Error : client command overflow
    mikzyundefined mikzy

    I was wondering (maybe linked to this error), is the number of instructions executed by plutonium bootstrapper normal on my computer (screenshot)?

    This is something Plutonium is suppose to do when loading/unloading maps and DLCs.

    Now I'm not completely sure but this seems to be something that has happened to people randomly or people with either a bad PC or bad internet. If RepZ, NamelessNoobs, or NexusCore uses GSC scripts or plugins, then this may be related to that. If you can join a completely vanilla server and still get this error, then it's best we ask Rekti something about it.

    But, in the mean time, I recommend doing these 3 things:

    • Restarting router (internet)
    • Restart computer
    • Then wait 5-10 minutes, try to join a server. If this doesn't work, wait 1-2 hours and then try to rejoin a server.
    BO2 Client Support

  • Client Command Overflow
    mikzyundefined mikzy

    StevnYT So we've looked around and it seems like this happens on other servers without mods too, but it is still possible it's something we are doing. Either way, it has something to do with your PC being bad or internet being bad too. No way to really fix it because this happens to a small amount of people.

    Only tips I can really give is to:

    • Reboot your internet (router)
    • Reboot your PC
    • If not working in step 1-2, then wait a hour or two and then try to connect.
    BO2 Client Support

  • Anime Calling Card Pack
    mikzyundefined mikzy

    kinda fire

    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