iTahhr

Well-Known Member
Messages
248
Reaction score
119
Points
243
// Credits Go To Extinct \\

// Description \\
Dive on the ground and make an explosion

// Code \\
Code:
 PHD_Perk()
{
    if(self.PHD==false)
    {
        self.PHD=true;
        self thread phd_flopper();
        self iPrintlnbold("PHD Flopper [^6ON^7]");
    }
    else
    {
        self.PHD=false;
        self notify("phd_done");
        self iPrintlnbold("PHD Flopper [^1OFF^7]");
    }
}


phd_flopper()
{
    self endon("phd_done");
    for(;;)
    {
        if(isDefined(self.divetoprone) && self.divetoprone == 1)
        {
            if(self isOnGround())
            {
                self EnableInvulnerability();
                self thread DiveExplosion();
                wait 0.9;
            }
        }
        wait .1;
    }
}

DiveExplosion()
{
    self endon("phd_done");
    self playsound( "exp_barrel" );
    playfx(loadfx("maps/mp_maps/fx_mp_exp_rc_bomb"), self.origin);
    Earthquake( 0.3, 1, self.origin, 90 );
    RadiusDamage(self.origin, 350, 700, 350, self, "MOD_PROJECTILE_SPLASH");
    wait .2;
    if(!self.GM)
        self DisableInvulnerability();
}
 
Last edited:

Procyon

BANNED
Messages
325
Reaction score
119
Points
43
Jiggy doesn't deserve the credits of it just because you grabbed it of his source... He doesn't credit ****, even though he has gotten it from other folks.
 

The Dark Side

Former Staff Member
Messages
1,007
Reaction score
784
Points
993
Jiggy hasnt made this mod, so the credits dont go to him. Please take his name off. You can go pray to him later if you like.

On top of that, this code has been released for a very long time now. So this post isnt really necessary.
 

iTahhr

Well-Known Member
Messages
248
Reaction score
119
Points
243
Jiggy hasnt made this mod, so the credits dont go to him. Please take his name off. You can go pray to him later if you like.

On top of that, this code has been released for a very long time now. So this post isnt really necessary.
i didnt know i just thought i would put it up
 

iTahhr

Well-Known Member
Messages
248
Reaction score
119
Points
243
Jiggy doesn't deserve the credits of it just because you grabbed it of his source... He doesn't credit ****, even though he has gotten it from other folks.
1. i dont pray to jiggy lol
2.i got it from his source so i gave him credit
 

[nobody@CCM:]

Member
Messages
95
Reaction score
86
Points
18
// Credits Go To Jiggy Mods \\

// Description \\
Dive on the ground and make an explosion

// Code \\
Code:
 PHD_Perk()
{
    if(self.PHD==false)
    {
        self.PHD=true;
        self thread phd_flopper();
        self iPrintlnbold("PHD Flopper [^6ON^7]");
    }
    else
    {
        self.PHD=false;
        self notify("phd_done");
        self iPrintlnbold("PHD Flopper [^1OFF^7]");
    }
}


phd_flopper()
{
    self endon("phd_done");
    for(;;)
    {
        if(isDefined(self.divetoprone) && self.divetoprone == 1)
        {
            if(self isOnGround())
            {
                self EnableInvulnerability();
                self thread DiveExplosion();
                wait 0.9;
            }
        }
        wait .1;
    }
}

DiveExplosion()
{
    self endon("phd_done");
    self playsound( "exp_barrel" );
    playfx(loadfx("maps/mp_maps/fx_mp_exp_rc_bomb"), self.origin);
    Earthquake( 0.3, 1, self.origin, 90 );
    RadiusDamage(self.origin, 350, 700, 350, self, "MOD_PROJECTILE_SPLASH");
    wait .2;
    if(!self.GM)
        self DisableInvulnerability();
}

Im pretty sure this is my code i made months ago and posted on ngu but meh give him the credits...
 
Top