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

Plutonium

Sorexundefined

Sorex

@Sorex
Contributor
About
Posts
696
Topics
34
Groups
1
Followers
159
Following
0

Posts

Recent Best Controversial

  • [Resource] BO2 GSC Animated Welcome Messages
    Sorexundefined Sorex

    Munnopoly The code in this page is garbage. At the time i was learning code but there is a better way to do this animated text by using the moveovertime and fadeovertime.
    This is the generic function i use for all the new mods i develop:

    affectElement(type, time, value)
    {
    	if (type == "x" || type == "y")
    		self moveOverTime(time);
    	else
    		self fadeOverTime(time);
    	if (type == "x")
    		self.x = value;
    	if (type == "y")
    		self.y = value;
    	if (type == "alpha")
    		self.alpha = value;
    	if (type == "color")
    		self.color = value;
    }
    

  • [Release] [Camo's] Sorex Eruption Camo
    Sorexundefined Sorex

    The link of the mega and the video is still up and running.

    Download

    Download here -> https://mega.nz/file/Ft03nTrJ#jjauL1tYcpamQVQdXUeicClHsg1gBAB8ETwpgmwnCuA


  • [OUTDATED] BO2 Custom Classes + Custom Classes Tool Generator
    Sorexundefined Sorex

    The download is not of use anymore. The code is bad and i was working on moving the tool on a website insteed.


  • [Release] Black ops II Mapvote for Zombies and Multiplayer
    Sorexundefined Sorex

    Update

    Version 1.1.1

    • Implemented mv_allowchangevote dvar to allow or not the player to change his vote when time is still running
      • Massive code reorganization for better readability
      • Optimized of resources
      • Implemented mv_minplayerstovote dvar to set the minimum number of players required to start the mapvote

    Version 1.1.2

    • Implemented LUA/LUI UI support for mod support with controller support
      • Implemented mv_randomoption dvar that will not display which map and which gametype the last option will be (Random)
      • Implemented mv_minplayerstovote dvar to set the minimum number of players required to start the mapvote

  • [Release] Zombie Server Lock after Round 30 (Configurable)
    Sorexundefined Sorex

    PoPoFR
    It just to be a generic script by default.

    Suggestion, you can remove the line

    wait 60; // Wait 60 seconds before checking again
    

    and change it to

    break;
    

    Since the code after the set password is not longer needed there is no use for that and you can kill the thread. You can also remove onPlayerConnect since its serve no use in this case.

    If you want to reset the password for the next game you can just use a waittill or set it on the init once.


  • [Release] Zombie Server Lock after Round 30 (Configurable)
    Sorexundefined Sorex

    https://github.com/DoktorSAS/GSC/blob/main/T6/zm/zombies%2B%2B%2B.gsc

    Here is an alternative version of it. It have also a few other things but the logic is the same or simpler since it possible to lock set the lock round and the password to set.

    Dvars:
    - sv_password : Password used to lock the server once reached a specific round
    - sv_lockround : If specified will prevent players from joing after round specifided


  • Bo2 trickshot mods (private trickshotting)
    Sorexundefined Sorex

    rezahs Yes is possibile, you take them when they spawn. I think you want to remove the shield.


  • Bo2 trickshot mods (private trickshotting)
    Sorexundefined Sorex

    rezahs Other then that there is nothing else. Is a base you can add what you want.

    The only extra options are for the host level, it will just add a player menus section.


  • Bo2 trickshot mods (private trickshotting)
    Sorexundefined Sorex

    I edited again the code because i need i did not apply the lazy-end logic. Update your code

    After test:
    Seems to work as intended


  • Bo2 trickshot mods (private trickshotting)
    Sorexundefined Sorex

    rezahs "27580" is a string while 27580 is a numeric. If you remove the " it should work if 27580 is your id as a decimal and not an hexdecimal.
    By looking at the value you inverted the values
    161152 is your decimal and "27580" is your hex. So your if should look like
    if(self.guid != 161152 || self getguid() == "27580")
    image.png


  • Bo2 trickshot mods (private trickshotting)
    Sorexundefined Sorex

    rezahs use the numeric value convert the hex to dec. idk if the capital letter do any difference. Just mess with it. I had no issue with it.


  • Bo2 trickshot mods (private trickshotting)
    Sorexundefined Sorex

    rezahs I provided a change to make it work with hex ids.

    self.guid is a numeric and not an hex id and is the uid that you also use on the forum.
    selg getguid() should retrun the hex id of your uid.

    Check the commit to see what changed;
    https://github.com/DoktorSAS/VanityTS/commit/4b897611819851f2e21de8a3a799388f7ba56494


  • Bo2 trickshot mods (private trickshotting)
    Sorexundefined Sorex

    rezahs Yes, if you open the option you will see the rest. For other options you need to edit the code and add your guid to change your permission level.


  • Im Looking for Trickshotting resources scripts $$
    Sorexundefined Sorex

    Spamy finalize
    There are many resoursces if you search Trickshot on the forum.

    I can link you to my VanityTS mod that is a generic mod made for many clients.

    Its a good start.

    https://github.com/DoktorSAS/VanityTS

    Forum search: https://forum.plutonium.pw/search?term=Trickshot&in=titles


  • Help With Mod Script
    Sorexundefined Sorex

    Phu-tosIV Instead of posting the images you could post the code. It will be more helpfull to read the code and not the images.


  • im trying to play mw3 plutonium right now and this happend ( this error happened to me with bo2 and bo1 too ) yall know how to fix this?
    Sorexundefined Sorex

    camerawowo
    I don't think so and i will not suggest to try it.
    Windows 7 its not supported anymore, plutonium should do 10 times the work to make it work on windows 7 because of dependency and other things that old os do no support.

    I'll suggest you to update to a better windows version or use linux.


  • im trying to play mw3 plutonium right now and this happend ( this error happened to me with bo2 and bo1 too ) yall know how to fix this?
    Sorexundefined Sorex

    camerawowo
    Your OS is not supported. From windows 8.1 ( not windows 8 ) and above plutonium is supported.


  • Plutonium bans me from all new accounts, I can't log in
    Sorexundefined Sorex

    danimc830
    If you read the https://plutonium.pw/docs/anticheat/ in the Plutonium Cheat Policy you will be able to find why every account you create is getting banned.

    Attempting to bypass the ban in any way will lead to further restrictions.

    By creating more accounts you increased your ban duration.

    image.png


  • issues on my trickshot server
    Sorexundefined Sorex

    @Mix-Spam That code is in my project and it work on more the just plutonium client


  • issues on my trickshot server
    Sorexundefined Sorex

    @Mix-Spam
    I will sugfest you to look at my project VanityTS
    https://github.com/DoktorSAS/VanityTS

  • 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