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

Plutonium

tomundefined

tom

@tom
About
Posts
19
Topics
3
Shares
0
Groups
0
Followers
8
Following
2

Posts

Recent Best Controversial

  • What are you currently listening to?
    tomundefined tom

    flox said in What are you currently listening to?:

    https://www.youtube.com/watch?v=TilnAWU7qHM

    Y'all weird.

    BITCH HAHAHA

    General Discussion

  • I'm a proper idiot.
    tomundefined tom

    I agree

    General Discussion

  • Pink Ahegao camo owo (ZM)
    tomundefined tom

    flox I agree sir

    BO2 Modding Releases & Resources

  • [Release] ChaiScript Player Data Management
    tomundefined tom

    Nice script

    MW3 Modding Releases & Resources

  • [Release] Infected hotfix.
    tomundefined tom

    As of update r619 - r687 the issue has been fixed within the client itself therefore you can remove my plugin.

    MW3 Modding Releases & Resources

  • [Release] Infected hotfix.
    tomundefined tom

    Released a small update that only enables plugin functionality on the infected gametype for servers using multiple gametypes.

    MW3 Modding Releases & Resources

  • [Release] Infected hotfix.
    tomundefined tom

    Basic plugin that disables infected from changing team / class when joining mid-game.

    Installation:
    Download the DLL from https://github.com/tomxmm0/pluto_inf_hotfix/releases/latest
    Put the DLL inside %localappdata%/plutonium/storage/iw5/plugins

    Enjoy.

    MW3 Modding Releases & Resources

  • [Release] Plutonium iSnipe plugin
    tomundefined tom

    New update is out that should fix the out of memory errors that would occur occasionally.
    alt text

    MW3 Modding Releases & Resources

  • [Release] Plutonium iSnipe plugin
    tomundefined tom

    New update is out that fixes anti melee and hopefully fixes anti hardscope inconsistencies when the server is full (can't really test this).

    MW3 Modding Releases & Resources

  • MOSS Anticheat For ClanWars
    tomundefined tom

    thank very much bro it ban all hacker best anticheat e ver! 11/10.

    MW3 Client Support

  • [Release] Plutonium iSnipe plugin
    tomundefined tom

    RezTech Ah thanks, didn't know that was a thing lol.

    MW3 Modding Releases & Resources

  • [Release] Plutonium iSnipe plugin
    tomundefined tom

    Spectre lol, i've been holding on to this plugin for about a week now too.

    MW3 Modding Releases & Resources

  • [Release] Plutonium iSnipe plugin
    tomundefined tom

    Basic isnipe plugin that features anti-hardscope and only allows damage from snipers and tk's.

    Installation:
    Download the DLL from https://github.com/tomxmm0/plutoisnipe/releases/latest
    Put the DLL inside %localappdata%/plutonium/storage/iw5/plugins

    No script is needed as this was made fully in c++.
    Enjoy.

    MW3 Modding Releases & Resources

  • Plutonium IW5 - The future of scripting
    tomundefined tom

    Xerxes said in Plutonium IW5 - The future of scripting:

    Lua or SourcePawn would be decent alternatives.

    this.

    Announcements

  • [Feature Request] Allow Chai to execute commands.
    tomundefined tom

    Sorex

    level.onNotify("chat_message", fun(arguments) {
       var player = arguments[0];
       var message = arguments[1];
    });
    

    Player and message might be reversed so just experiment with it.

    MW3 Modding Support & Discussion

  • [Feature Request] Allow Chai to execute commands.
    tomundefined tom

    Shockeh You can listen for chat messages using the chat_message level notify.

    MW3 Modding Support & Discussion

  • [Release] Plutonium Filesystem
    tomundefined tom

    flox YEs my friend made special from Durga Software Solutions

    MW3 Modding Releases & Resources

  • [Release] Plutonium Filesystem
    tomundefined tom

    This plugin adds additional functionality to ChaiScript that allows you to read and write files into your computer.

    Installation

    • Download the latest release from https://github.com/StaRT1337/PlutoniumFilesystem/releases
    • Drag the DLL into %localappdata%/Plutonium/storage/iw5/plugins

    Usage

    /*
      Creates a file handler.
    
       First param: File path
       Second param: Mode 
    */
    var file = Filesystem("helloworld.txt", "w+");
    
    
    /*
       Writes/appends into file.
    
       First param: string to write
    */
    file.Write("Hello, World!")
    
    
    /*
       Reads the contents of the file.
    */
    var contents = file.Read();
    
    print(contents) // Hello, World!
    

    Notes

    • All available file modes are shown here.
      • The plugin will only create a file handle if the file already exists. therefore modes like r+ and w+ will act the same.
    • For security measures, the file must be within the game folder (Not exactly in it, could also be in a folder that's within the game folder).
    • For people who wish to build from source, make sure to set the C++ version to latest, set the run time library to /MT and only compile as Release and x86.
    • While the plugin automatically closes the file handle as it goes out of scope, to manually close it use the .Close() method.
    MW3 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