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

Plutonium

S2RTundefined

S2RT

@S2RT
About
Posts
19
Topics
5
Shares
0
Groups
0
Followers
9
Following
5

Posts

Recent Best Controversial

  • Damage feedback Crosshair For T6MP
    S2RTundefined S2RT

    It's way easier than you think, What I would do tbh is just replacing updatedamagefeedback func from

    maps\mp\gametypes\_damagefeedback.gsc
    

    and just add one line to change the damage color.

    to achieve this just add this in your file:

    main()
    {
        replaceFunc(maps\mp\gametypes\_damagefeedback::updatedamagefeedback, ::updatedamagefeedback);
    }
    
    updatedamagefeedback( mod, inflictor, perkfeedback )
    {
        if ( !isplayer( self ) || sessionmodeiszombiesgame() )
            return;
    
        if ( isdefined( mod ) && mod != "MOD_CRUSH" && mod != "MOD_GRENADE_SPLASH" && mod != "MOD_HIT_BY_OBJECT" )
        {
            if ( isdefined( inflictor ) && isdefined( inflictor.soundmod ) )
            {
                switch ( inflictor.soundmod )
                {
                    case "player":
                        self playlocalsound( "mpl_hit_alert" );
                        break;
                    case "heli":
                        self thread playhitsound( mod, "mpl_hit_alert_air" );
                        break;
                    case "hpm":
                        self thread playhitsound( mod, "mpl_hit_alert_hpm" );
                        break;
                    case "taser_spike":
                        self thread playhitsound( mod, "mpl_hit_alert_taser_spike" );
                        break;
                    case "dog":
                    case "straferun":
                        break;
                    case "default_loud":
                        self thread playhitsound( mod, "mpl_hit_heli_gunner" );
                        break;
                    default:
                        self thread playhitsound( mod, "mpl_hit_alert_low" );
                        break;
                }
            }
            else
                self playlocalsound( "mpl_hit_alert_low" );
        }
    
        if ( isdefined( perkfeedback ) )
        {
            switch ( perkfeedback )
            {
                case "flakjacket":
                    self.hud_damagefeedback setshader( "damage_feedback_flak", 24, 48 );
                    break;
                case "tacticalMask":
                    self.hud_damagefeedback setshader( "damage_feedback_tac", 24, 48 );
                    break;
            }
        }
        else
            self.hud_damagefeedback setshader( "damage_feedback", 24, 48 );
    
        self.hud_damagefeedback.color = ( 1, 0, 0 );
        self.hud_damagefeedback.alpha = 1;
        self.hud_damagefeedback fadeovertime( 1 );
        self.hud_damagefeedback.alpha = 0;
    }
    
    BO2 Modding Support & Discussion bo2

  • Trickshot mod menu?
    S2RTundefined S2RT

    Sorry for the late response,

    You might have the script in the wrong directory
    See here Loading existing scripts on T6

    If its in the right directory then your script might be broken, you can try VanityTS
    by DoktorSAS or any other TS script from your choice.

    BO2 Modding Support & Discussion

  • [Release] GSC-Helper: GSC all in one place
    S2RTundefined S2RT

    GSC-Helper

    A comprehensive toolkit for Black Ops 2 modding with a basic menu maker. Featuring a GSC Color Picker, Function Library, Advanced Search, and Menu Maker using Matrix's menu base.

    GSC-Helper Overview

    overview_image.png

    Download

    • latest release

    GSC-Helper github page

    • Github

    Contributing

    Feedback and contributions are what make the modding community thrive. If you have any suggestions for additional GSC functions or features, please write it down bellow and will be added in new releases.

    Support

    If you encounter any issues or have questions about using GSC-Helper, feel free to ask.

    Acknowledgments

    • A special shoutout to the modding community for their relentless passion and creativity.
    • All possible credits are given on each file, if I forgot someone or I do not know about please notify me.

    Additional screenshots

    color_picker_image.png

    functions_library_image.png

    advanced_search_image.png

    GSC-Dump-Search.png

    menu_maker_image.png

    BO2 Modding Releases & Resources

  • Some players can join my server and some stuck at waiting for other players.
    S2RTundefined S2RT

    Issue Resolved: After hearing back from their ISP that the issue wasn't on their end, I decided to change my VPS IP as a last resort (glad my VPS providers has this option), Note: the changed IP is in the same range as the old one. Fortunately, this resolved the problem, although I'm still unclear on the root cause.

    BO2 Server Hosting Support

  • Some players can join my server and some stuck at waiting for other players.
    S2RTundefined S2RT

    Yes VPN does work and can access IW4MAdmin page, anyways I contacted with ISP about unblocking the IP and they said we are working on it, so I'll wait and see if something happens.

    BO2 Server Hosting Support

  • Some players can join my server and some stuck at waiting for other players.
    S2RTundefined S2RT

    almost 99% of UAE users use the same ISP so its imposible to find someone xd

    BO2 Server Hosting Support

  • Some players can join my server and some stuck at waiting for other players.
    S2RTundefined S2RT

    Only thing they have in common is that they are UAE πŸ‡¦πŸ‡ͺ users, some of them are my friends and some idk who they are, they have good PCs ، yes they are using same ISP In UAE

    BO2 Server Hosting Support

  • Some players can join my server and some stuck at waiting for other players.
    S2RTundefined S2RT

    Xerxes

    I’m sorry about re-creating the topic.

    It’s happening with all users from UAE , and yes I asked to rejoin and nothing changed, note that there is other Bahrain servers and they can access them except my server, something weird happening.

    BO2 Server Hosting Support

  • Some players can join my server and some stuck at waiting for other players.
    S2RTundefined S2RT

    Hello Plutonium Community,

    I'm experiencing an unusual connection issue with my Black Ops 2 server. While most users are able to connect without problems, players from the UAE consistently face connection difficulties they stuck in (waiting for other players) . I wanted to rule out any issues on my end, so I provided these affected users with the IW4MAdmin website link (it shares the same IP as my server but uses different ports). They were unable to access this website without a VPN, further suggesting a possible regional restriction.

    I've reached out to my VPS provider, Lightnode, regarding potential geo-restrictions, but they've confirmed that they don't enforce any country-based limitations. For context, my server is located in Bahrain.

    If anyone has faced similar issues or has any insights on how to resolve this, your help would be greatly appreciated.

    Thanks in advance!

    BO2 Server Hosting Support

  • Some players can join my server and some stuck at waiting for other players.
    S2RTundefined S2RT

    VPS good connection

    BO2 Server Hosting Support

  • Some players can join my server and some stuck at waiting for other players.
    S2RTundefined S2RT

    3 UAE users for now , cant join and stuck with waiting for players

    BO2 Server Hosting Support

  • Some players can join my server and some stuck at waiting for other players.
    S2RTundefined S2RT

    Hi everyone, I have T6 server and some players can join with no problems and some stuck in waiting for players, I asked him to join another server and he could join without problems, just my server he couldn't

    My Launcher is up to date and his launcher is also up to date.

    what could be the problem?.

    BO2 Server Hosting Support

  • [Resource] [MP/ZM] Black Ops 2: Weapons List, Attachments, Button Codes & More!
    S2RTundefined S2RT

    How do I force an attachment to weapon? for example :

    dsr50_mp+is
    

    this is not possible to make dsr with iron sight in game. but is it possible to force?

    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