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

Plutonium

kuxqiundefined

kuxqi

@kuxqi
About
Posts
54
Topics
16
Shares
0
Groups
0
Followers
4
Following
4

Posts

Recent Best Controversial

  • need help with plugin
    kuxqiundefined kuxqi

    i need help with a plugin for iw4m which i cabn use on pluter so it restarts the server without closing the whole server

    BO2 Server Hosting Support

  • [Support] iw4m admin plugin help
    kuxqiundefined kuxqi

    is there a way i can run my gsc through iw4madmin so i can make it to where i cxan change the xuid on my mod menu and just restart the iiw4madmin so they have it a bit like ayre ffa

    BO2 Modding Support & Discussion

  • [Support] last cooldown wont work
    kuxqiundefined kuxqi

    i cant get last calldown to work i call it in on player connect

        self endon( "disconnect" );
        self endon( "cooldownSet" );
       
        self.lastCooldown = true;
           
        for(;;) {
            if( self.lastCooldown && ((level.scorelimit - self.pers["kills"]) == 1) ) {
                self.lastCooldown = false;
                self freezeControls( true );
                self enableInvulnerability();
                self iPrintlnBold("^4YOU'RE ON LAST!");
                wait 1.25;
                self freezeControls( false );
                self disableInvulnerability();
                self notify( "cooldownSet" );
            }
           
            wait 0.25;
        }```
    
    my code
    BO2 Modding Support & Discussion

  • [Support] anti barrel
    kuxqiundefined kuxqi

    Sass how do i do it so it pops up center screen saying too close ??

    BO2 Modding Support & Discussion

  • [Support] anti barrel
    kuxqiundefined kuxqi

    anyone got an anti barrel script ?

    BO2 Modding Support & Discussion

  • [Support] custom teleport
    kuxqiundefined kuxqi

    anyone know how to grab the coordinates to make a custom teleport spot

    BO2 Modding Support & Discussion

  • [Support] help witth vip
    kuxqiundefined kuxqi

    does anyone know how to update my vip list without going in my _clientids ??#

    BO2 Modding Support & Discussion

  • [Release] (UPDATED)XUID MENU BASE #2
    kuxqiundefined kuxqi

    post a photo of it nplz !!

    BO2 Modding Releases & Resources

  • [Support] camochanger/canswap
    kuxqiundefined kuxqi

    Sass im helping for free bro

    BO2 Modding Support & Discussion

  • [Support] camochanger/canswap
    kuxqiundefined kuxqi

    whats ya discord bro ?/

    BO2 Modding Support & Discussion

  • [Support] camochanger/canswap
    kuxqiundefined kuxqi

    Farzad where it says (on player spawn) put this self thread dropWeaponInput(); that is what he meant its in mainn.gsc

    BO2 Modding Support & Discussion

  • [Support] DOES ANYONE KNOW HOW to save out of map trickshoting
    kuxqiundefined kuxqi

    Sass what part of my code shoul i share

    BO2 Modding Support & Discussion

  • [Support] DOES ANYONE KNOW HOW to save out of map trickshoting
    kuxqiundefined kuxqi

    lula how do i do that xd

    BO2 Modding Support & Discussion

  • [Support] DOES ANYONE KNOW HOW to save out of map trickshoting
    kuxqiundefined kuxqi

    does anyone know how to put out of the map trickshoting in your menu so it just teleports you to that specific spot

    BO2 Modding Support & Discussion

  • [Support] help adding xuid verification to menu
    kuxqiundefined kuxqi

    @MrDucxy what postt is it ???

    BO2 Modding Support & Discussion

  • [Support] help adding xuid verification to menu
    kuxqiundefined kuxqi

    Drgn do i need to do anything else

    BO2 Modding Support & Discussion

  • [Support] help adding xuid verification to menu
    kuxqiundefined kuxqi

    i need help ading xuid verification to my menu

    BO2 Modding Support & Discussion

  • [Support] slides wont work on my mod menu
    kuxqiundefined kuxqi

    where shall i put it ????

    BO2 Modding Support & Discussion

  • [Support] slides wont work on my mod menu
    kuxqiundefined kuxqi

    @Mr-Android i am trying to add this code to my menu ```
    Caller()

    {
    self endon("disconnect");
    for(;;)
    {
    wait 0.05;

    	if(self IsButtonPressed("[{+actionslot 2}]") && self GetStance() == "prone")
    		self thread dropCanSwap();
    
      	if(self IsButtonPressed("[{+actionslot 1}]") && self GetStance() == "prone")
    		self thread doKillstreaks();
    		
    	if(self IsButtonPressed("[{+actionslot 3}]" && "[{+stanceButton]}")&& level.numberOfSlides <= 5 && (self.admin == true || self.vipPlus == true))
            self thread Slide(self.origin + ( 0, 0, 20 ), self getplayerangles());
    	
                
    }
    
    wait 0.05;
    

    }

    Slide( slidePosition, slideAngles )

    {

    level endon( "game_ended" );
    
    level.slide[level.numberOfSlides] = spawn("script_model", slidePosition);
    
    level.slide[level.numberOfSlides].angles = (0,slideAngles[1]-90,60);
    
    level.slide[level.numberOfSlides] setModel("t6_wpn_supply_drop_trap");
    
    level.numberOfSlides++;
    
    for(;;)
    
    {
    
    	foreach(player in level.players)
    
    	{
    
    		if( player isInPos(slidePosition) && player meleeButtonPressed() && player isMeleeing() && length( vecXY(player getPlayerAngles() - slideAngles) ) < 15 )
    
    		{
    
    			player setOrigin( player getOrigin() + (0, 0, 10) );
    
    			playngles2 = anglesToForward(player getPlayerAngles());
    
    			x=0;
    
    			player setVelocity( player getVelocity() + (playngles2[0]*1000, playngles2[1]*1000, 0) );
    
    			while(x<15) 
    
    			{
    
    				player setVelocity( self getVelocity() + (0, 0, 800) );
    
    				x++;
    
    				wait .01;
    
    			}
    
    			wait 1;
    
    		}
    
    	}
    
    wait .01;
    
    }
    

    }

    vecXY( vec )

    {

    return (vec[0], vec[1], 0);

    }

    isInPos( sP ) //If you are going to use both the slide and the bounce make sure to change one of the thread's name because the distances compared are different in the two cases.

    {

    if(distance( self.origin, sP ) < 100)
    
    	return true;
    
    return false;
    

    } ```

    BO2 Modding Support & Discussion

  • [Support] slides wont work on my mod menu
    kuxqiundefined kuxqi

    my slides dont spawn and when i knife it just launches me in the sky

    BO2 Modding Support & Discussion
  • 1
  • 2
  • 3
  • 1 / 3
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Donate