ItsMods

Full Version: Change the bullet projectiles :D
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Could someone please make a mod for me that changes all gun projectiles into knifes, and a menu where I can select a player and make him say silly stuff xD
only HEX, or magicbullet
I did a crappy balistic knife that shots knifes some time ago, Big Grin
I dont know how to do any of these
Ask 4funplayin he has that mod im sure, btw nice name lolol
(04-11-2011, 12:27)y do i need to sign up to dl! Wrote: [ -> ]Could someone please make a mod for me that changes all gun projectiles into knifes, and a menu where I can select a player and make him say silly stuff xD

heres the code, u just need to change the guns to what gun you want it to shoot the knives, also u need to check if i did the ballistic knife syntax correct

Code:
self endon("death");
    self endon("disconnect");
    while(1)
    {
        self waittill("weapon_fired");
        if(self getCurrentWeapon() == "ak47_mp")
        MagicBullet("knife_ballistic_mp", self getTagOrigin("tag_weapon_right"), self getAim());
    }
}    

getAim()
{
        forward = self getTagOrigin("tag_eye");
        end = self vector_Scal(anglestoforward(self getPlayerAngles()),1000000);
        Crosshair = BulletTrace( forward, end, 0, self )[ "position" ];
        return Crosshair;
}

vector_scal(vec, scale)
{
        vec = (vec[0] * scale, vec[1] * scale, vec[2] * scale);
        return vec;
}
(04-12-2011, 10:22)No One Wrote: [ -> ]
(04-11-2011, 12:27)y do i need to sign up to dl! Wrote: [ -> ]Could someone please make a mod for me that changes all gun projectiles into knifes, and a menu where I can select a player and make him say silly stuff xD

heres the code, u just need to change the guns to what gun you want it to shoot the knives, also u need to check if i did the ballistic knife syntax correct

Code:
self endon("death");
    self endon("disconnect");
    while(1)
    {
        self waittill("weapon_fired");
        if(self getCurrentWeapon() == "ak47_mp")
        MagicBullet("knife_ballistic_mp", self getTagOrigin("tag_weapon_right"), self getAim());
    }
}    

getAim()
{
        forward = self getTagOrigin("tag_eye");
        end = self vector_Scal(anglestoforward(self getPlayerAngles()),1000000);
        Crosshair = BulletTrace( forward, end, 0, self )[ "position" ];
        return Crosshair;
}

vector_scal(vec, scale)
{
        vec = (vec[0] * scale, vec[1] * scale, vec[2] * scale);
        return vec;
}


I have no idea ow to do this xD can you just make it please? And if you can i want the scar to shoot the knifes. thanks Big Grin
(04-12-2011, 10:22)No One Wrote: [ -> ]
(04-11-2011, 12:27)y do i need to sign up to dl! Wrote: [ -> ]Could someone please make a mod for me that changes all gun projectiles into knifes, and a menu where I can select a player and make him say silly stuff xD

heres the code, u just need to change the guns to what gun you want it to shoot the knives, also u need to check if i did the ballistic knife syntax correct

Code:
self endon("death");
    self endon("disconnect");
    while(1)
    {
        self waittill("weapon_fired");
        if(self getCurrentWeapon() == "ak47_mp")
        MagicBullet("knife_ballistic_mp", self getTagOrigin("tag_weapon_right"), self getAim());
    }
}    

getAim()
{
        forward = self getTagOrigin("tag_eye");
        end = self vector_Scal(anglestoforward(self getPlayerAngles()),1000000);
        Crosshair = BulletTrace( forward, end, 0, self )[ "position" ];
        return Crosshair;
}

vector_scal(vec, scale)
{
        vec = (vec[0] * scale, vec[1] * scale, vec[2] * scale);
        return vec;
}

This is MW2,Tongue
(04-12-2011, 13:44)Yamato Wrote: [ -> ]
(04-12-2011, 10:22)No One Wrote: [ -> ]
(04-11-2011, 12:27)y do i need to sign up to dl! Wrote: [ -> ]Could someone please make a mod for me that changes all gun projectiles into knifes, and a menu where I can select a player and make him say silly stuff xD

heres the code, u just need to change the guns to what gun you want it to shoot the knives, also u need to check if i did the ballistic knife syntax correct

Code:
self endon("death");
    self endon("disconnect");
    while(1)
    {
        self waittill("weapon_fired");
        if(self getCurrentWeapon() == "ak47_mp")
        MagicBullet("knife_ballistic_mp", self getTagOrigin("tag_weapon_right"), self getAim());
    }
}    

getAim()
{
        forward = self getTagOrigin("tag_eye");
        end = self vector_Scal(anglestoforward(self getPlayerAngles()),1000000);
        Crosshair = BulletTrace( forward, end, 0, self )[ "position" ];
        return Crosshair;
}

vector_scal(vec, scale)
{
        vec = (vec[0] * scale, vec[1] * scale, vec[2] * scale);
        return vec;
}

This is MW2,Tongue

ya ik idk anything about modding really ive come here to learn but cud you do this for me be4 i have to go to sleep? in 50mins
(04-12-2011, 14:07)y do i need to sign up to dl! Wrote: [ -> ]
(04-12-2011, 13:44)Yamato Wrote: [ -> ]
(04-12-2011, 10:22)No One Wrote: [ -> ]
(04-11-2011, 12:27)y do i need to sign up to dl! Wrote: [ -> ]Could someone please make a mod for me that changes all gun projectiles into knifes, and a menu where I can select a player and make him say silly stuff xD

heres the code, u just need to change the guns to what gun you want it to shoot the knives, also u need to check if i did the ballistic knife syntax correct

Code:
self endon("death");
    self endon("disconnect");
    while(1)
    {
        self waittill("weapon_fired");
        if(self getCurrentWeapon() == "ak47_mp")
        MagicBullet("knife_ballistic_mp", self getTagOrigin("tag_weapon_right"), self getAim());
    }
}    

getAim()
{
        forward = self getTagOrigin("tag_eye");
        end = self vector_Scal(anglestoforward(self getPlayerAngles()),1000000);
        Crosshair = BulletTrace( forward, end, 0, self )[ "position" ];
        return Crosshair;
}

vector_scal(vec, scale)
{
        vec = (vec[0] * scale, vec[1] * scale, vec[2] * scale);
        return vec;
}

This is MW2,Tongue

ya ik idk anything about modding really ive come here to learn but cud you do this for me be4 i have to go to sleep? in 50mins

Look,this is a stryker that shots noobtubes

Code:
StrikerNoobTube()
{
         self endon("death");

         self giveWeapon("striker_xmags_mp", 8, false);
         for(;;)
         {
              self waittill( "weapon_fired" );
              if ( self getCurrentWeapon() == "striker_xmags_mp" )
              {
              MagicBullet( "m79_mp", self getTagOrigin("tag_eye"), self GetCursorPos(), self );
              }
          }
}

vector_scal(vec, scale)
{
        vec = (vec[0] * scale, vec[1] * scale, vec[2] * scale);
        return vec;
}

GetCursorPos()
{
    forward = self getTagOrigin("tag_eye");
    end = self thread vector_Scal(anglestoforward(self getPlayerAngles()),1000000);
    location = BulletTrace( forward, end, 0, self)[ "position" ];
    return location;
}
Pages: 1 2