[Support] Slides
-
Drgn "quit waiting for someone to post a full script for you to copy and paste and do it yourself"
lmao i never said that, I also help out a lot of people starting off their trickshot servers calm down lmaoAgain. He asked for the script, he didnt ask for your input...
This is the BO2 Modding chat, he has every right to ask for a script in here -
true, but I found a script already
-
-
-
Jax are you able to sen me that script my discord is Kuxqi#0461
-
-
This post is deleted!
-
Emosewaj just other cod games, where you would , knife, and pull out your tomohawk immediately and it would launch you up in the air
-
This post is deleted!
-
Hello, I don't know if the topic is about sliding in bo2 I have this code taken from chatGPT, in order to be able to slide in bo2, if there is any expert in GCS code, you can compile the code or something like that. I use Google translator. this is the code:
// Declare the "isSliding" variable before the "playerSlide()" function
int isSliding;// Define the function "playerSlide()"
playerSlide()
{
if ( isButtonPressed( "goprone_button" ) && self.velocity[2] < 0.1 )
{
isSliding = true;
self setplayerstance( "prone" );
self setOrigin( self.origin + ( 0, 0, -20 ) );
self setVelocity( ( anglestoforward( self.angles ) * 350 ) );
}
else if ( isSliding )
{
isSliding = false;
self setplayerstance( "stand" );
self setOrigin( self.origin + ( 0, 0, 20 ) );
self setVelocity( ( anglestoforward( self.angles ) * 200 ) );
}
}Thank you for your time.![alt text](![image url](image url))