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

Plutonium

kefryundefined

kefry

@kefry
About
Posts
7
Topics
4
Shares
0
Groups
0
Followers
1
Following
0

Posts

Recent Best Controversial

  • is there a debuging tool for gsc
    kefryundefined kefry

    is there a debuging tool for gsc to see where my code gets crash damps

    BO2 Server Hosting Support

  • [Resource] GSC trickshot scripts i found online
    kefryundefined kefry

    nice thread i need some of these code thanks

    BO2 Modding Releases & Resources

  • i cant finger out on how to bind this code
    kefryundefined kefry

    i cant seem to find on how to bind it crouch and dpand left

    manageSlides()
    {
        self endon("death");
        self endon("disconnect");
    
        start = self getTagOrigin("tag_eye");
        end = anglestoforward(self getPlayerAngles()) * 1000000;
        slidePos = BulletTrace(start, end, true, self)["position"] + (0,0,25);
        slideAng = self getPlayerAngles();
    
        if(!isDefined(self.slide))
        {
            self.slide = spawn("script_model", slidePos);
            self.slide.angles = (0, slideAng[1] - 90, 60);
            self.slide setModel("t6_wpn_supply_drop_trap");
        }
        else
        {
            self.slide RotateTo((0, slideAng[1] - 90, 70), 0.1, 0, 0 );
            self.slide MoveTo(slidePos, 0.1, 0, 0 );
            self.slide notify("restartSlideThink"); // Killing thread so it doesn't duplicate
        }
        
        self.slide thread slideThink(slidePos,slideAng);
    }
    
    slideThink(origin, angles)
    {
        self endon("restartSlideThink");
    	
        for(;;)
        {
            foreach(player in level.players)
            {
                if( distance(player.origin, origin) < 100 && player meleeButtonPressed() && player isMeleeing() && length(anglesXY(player getPlayerAngles() - angles)) < 85)
                {
                    vec = anglesToForward(player.angles);
                    for(i = 0; i < 10; i++)
                    {
                        player setVelocity(player getVelocity() + ( vec[0]*(70) , vec[1]*(70), 200 ));
                        wait .01;
                    }
                }
            }
            wait .1;
        }
    }
    
    anglesXY(angles)
    {
        return (angles[0], angles[1], 0);
    } 
    
    
    BO2 Client Support

  • How Do I Get The Bots To Have Different Weapons
    kefryundefined kefry

    Deicide me to i the have the same problem what is code to remove the weapons from the bots

    BO2 Modding Support & Discussion

  • Bo2 Vps/VM server hosting help needed ASAP!
    kefryundefined kefry

    ToddPocalypse are you using a free vps or a good vps because the free one this stuff will happen i trid it that happened to me so i when to the amazon vps and it was better

    BO2 Server Hosting Support

  • how do i get cmd commands on my server
    kefryundefined kefry

    how do i get cmd commands on my server

    BO2 Modding Support & Discussion

  • How Do I Get The Bots to have different gun or they don't shot
    kefryundefined kefry

    How Do I Get The Bots to have different gun or they don't shot

    BO2 Modding Support & Discussion
  • 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