Gorge Farting Bilebomb

Soul_RiderSoul_Rider Mod Bean Join Date: 2004-06-19 Member: 29388Members, Constellation, Squad Five Blue
edited August 2012 in Modding
<a href="http://www.duplexgaming.co.uk/downloads/mods/112/gorge_fart/" target="_blank">Download Here</a>

Updated First Post:

Gorge Fart is Back!!!

Thanks to Yuuki and Jibrail for some brilliant farting.....

<center><object width="450" height="356"><param name="movie" value="http://www.youtube.com/v/IbI4kHCpS6E"></param><embed src="http://www.youtube.com/v/IbI4kHCpS6E" type="application/x-shockwave-flash" width="450" height="356"></embed></object></center>

-------------------------------------------------------------------------------------------------------------------------------------------------------------------

<!--quoteo(post=1906445:date=Feb 24 2012, 02:44 AM:name=Flayra)--><div class='quotetop'>QUOTE (Flayra @ Feb 24 2012, 02:44 AM) <a href="index.php?act=findpost&pid=1906445"><{POST_SNAPBACK}></a></div><div class='quotemain'><!--quotec-->If you click "Custom", that will take you to the Wild West where Gorges are farting bile bomb and dual wielding welders.<!--QuoteEnd--></div><!--QuoteEEnd-->

<!--quoteo(post=1906446:date=Feb 24 2012, 02:46 AM:name=PsiWarp)--><div class='quotetop'>QUOTE (PsiWarp @ Feb 24 2012, 02:46 AM) <a href="index.php?act=findpost&pid=1906446"><{POST_SNAPBACK}></a></div><div class='quotemain'><!--quotec-->All my money, thrown at the screen and nothing happened.<!--QuoteEnd--></div><!--QuoteEEnd-->


<center><object width="450" height="356"><param name="movie" value="http://www.youtube.com/v/Bc_oBakcjv4"></param><embed src="http://www.youtube.com/v/Bc_oBakcjv4" type="application/x-shockwave-flash" width="450" height="356"></embed></object></center>

Comments

  • playerplayer Join Date: 2010-09-12 Member: 73982Members
    So did you recieve payment from PsiWarp?
  • Soul_RiderSoul_Rider Mod Bean Join Date: 2004-06-19 Member: 29388Members, Constellation, Squad Five Blue
    No, seems his screen doesn't transfer cash :P
  • PsiWarpPsiWarp Gifted Gorge Richmond, B.C., Canada Join Date: 2010-08-28 Member: 73810Members
    It's no wonder it didn't transfer the cash- it's a giant IPhone and all the money went straight to Apple!

    Minor request~ please make Gorge puke and fart Bile Bombs simultaneously <3
  • Soul_RiderSoul_Rider Mod Bean Join Date: 2004-06-19 Member: 29388Members, Constellation, Squad Five Blue
    Been working hard on my mod after all this fun :)

    Give me a day or two and I'll get it done, although to be honest the first version was just 1 line of code :P
  • ArkantiArkanti pub baddie Join Date: 2011-07-22 Member: 111781Members, NS2 Playtester, Squad Five Blue, Reinforced - Shadow
    That, is horrifically disgusting... but also hilarious. Kudos sir.
  • McGlaspieMcGlaspie www.team156.com Join Date: 2010-07-26 Member: 73044Members, Super Administrators, Forum Admins, NS2 Developer, NS2 Playtester, Squad Five Blue, Squad Five Silver, Squad Five Gold, Reinforced - Onos, WC 2013 - Gold, Subnautica Playtester
    lmao Props on actually making this :)
  • PricePrice Join Date: 2003-09-27 Member: 21247Members
    <!--quoteo(post=1906521:date=Feb 24 2012, 09:22 AM:name=Arkanti)--><div class='quotetop'>QUOTE (Arkanti @ Feb 24 2012, 09:22 AM) <a href="index.php?act=findpost&pid=1906521"><{POST_SNAPBACK}></a></div><div class='quotemain'><!--quotec-->That, is horrifically disgusting... but also hilarious. Kudos sir.<!--QuoteEnd--></div><!--QuoteEEnd-->
    this
    (also made my day.)
  • Soul_RiderSoul_Rider Mod Bean Join Date: 2004-06-19 Member: 29388Members, Constellation, Squad Five Blue
    As requested by PsiWarp:

    <center><object width="450" height="356"><param name="movie" value="http://www.youtube.com/v/zd3fV4eGpbI"></param><embed src="http://www.youtube.com/v/zd3fV4eGpbI" type="application/x-shockwave-flash" width="450" height="356"></embed></object></center>

    The default version takes the co-ordinates you are viewing, creates a bomb and sends it in that direction. In my version, I create 2 bombs, 1 as normal, and a 2nd bomb, going 180 degrees in the opposite direction to you are facing. If you are looking up, the behind bomb goes to the ground. If you look into the ground, the rear bomb goes in the air.

    To achieve this, just open the file BileBomb.lua. Look for the function BileBomb:FireBombProjectile(player) on line 109 and edit it to look like this:

    <!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1-->function BileBomb:FireBombProjectile(player)

        if Server then
            
            local viewAngles = player:GetViewAngles()
            local viewCoords = viewAngles:GetCoords()
            local startPoint = player:GetEyePos() + viewCoords.zAxis * 1
            local startPoint2 = player:GetEyePos() - viewCoords.zAxis * 1
            
            local bomb = CreateEntity(Bomb.kMapName, startPoint, player:GetTeamNumber())
            SetAnglesFromVector(bomb, viewCoords.zAxis)
            
            bomb:SetPhysicsType(PhysicsType.Kinematic)
            
            local bomb2 = CreateEntity(Bomb.kMapName, startPoint2, player:GetTeamNumber())
            SetAnglesFromVector(bomb, -viewCoords.zAxis)
            
            bomb2:SetPhysicsType(PhysicsType.Kinematic)
            
            local startVelocity = viewCoords.zAxis * BileBomb.kBombSpeed
            bomb:SetVelocity(startVelocity)
            
            bomb:SetGravityEnabled(true)
            
            local startVelocity2 = -viewCoords.zAxis * BileBomb.kBombSpeed
            bomb2:SetVelocity(startVelocity2)
            
            bomb2:SetGravityEnabled(true)
            
            // Set bombowner to player so we don't collide with ourselves and so we
            // can attribute a kill to us
            bomb:SetOwner(player)
            bomb2:SetOwner(player)
            
        end

    end<!--c2--></div><!--ec2-->
  • FloodinatorFloodinator [HBZ] Member Join Date: 2005-02-22 Member: 42087Members, Reinforced - Shadow
  • Soul_RiderSoul_Rider Mod Bean Join Date: 2004-06-19 Member: 29388Members, Constellation, Squad Five Blue
    Gorge Fart is Back!!!

    Thanks to Yuuki and Jibrail for some brilliant farting.....

    <center><object width="450" height="356"><param name="movie" value="http://www.youtube.com/v/IbI4kHCpS6E"></param><embed src="http://www.youtube.com/v/IbI4kHCpS6E" type="application/x-shockwave-flash" width="450" height="356"></embed></object></center>

    Updated first post!
  • ScardyBobScardyBob ScardyBob Join Date: 2009-11-25 Member: 69528Forum Admins, Forum Moderators, NS2 Playtester, Squad Five Blue, Reinforced - Shadow, WC 2013 - Shadow
    I could just see this in an actual game. Gorge runs into your base and spins around with bilebombs coming from both ends :O
  • YuukiYuuki Join Date: 2010-11-20 Member: 75079Members
    It actually take a lot of skill to shoot accurately, because you don't see where you aim, you need to do some 180° and 360°. Could be in a pro mod.
Sign In or Register to comment.