Gorge Farting Bilebomb
Soul_Rider
Mod Bean Join Date: 2004-06-19 Member: 29388Members, Constellation, Squad Five Blue
<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>
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
Minor request~ please make Gorge puke and fart Bile Bombs simultaneously <3
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
this
(also made my day.)
<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-->
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!