View unanswered posts | View active topics It is currently Fri Dec 27, 2024 1:00 pm



Reply to topic  [ 42 posts ]  Go to page Previous  1, 2, 3  Next
 War Zeppelin - LFoW's Mod Contest 3 Entry 
Author Message
User avatar

Joined: Tue Nov 06, 2007 6:58 am
Posts: 2054
Reply with quote
Post Re: War Zeppelin - LFoW's Mod Contest 3 Entry
Code:
function Create(self)
AudioMan:PlayMusic("file",0,-1)
self.swaytimer = Timer()
self.sway = 0.25
end

function Update(self)
if not(self:HasObject("Zeppelin Bomb") then
self:AddInventoryItem(CreateTDExplosive("Zeppelin Bomb))
end
if self.Vel.X < 0 then
self.HFlipped = true
end
if self.swaytimer:IsPastSimMS(5000) then
self.swaytimer:Reset()
self.AngularVel = self.sway
end
if self.RotAngle ~= 0 then
self.AngularVel = (self.AngularVel * 74 - math.deg(self.RotAngle)) / 75;
end
end

I think this might work.


Thu Jul 16, 2009 3:43 am
Profile
User avatar

Joined: Mon Dec 10, 2007 3:30 am
Posts: 13
Reply with quote
Post Re: War Zeppelin - LFoW's Mod Contest 3 Entry
I love this.

How about adding a smile to the front?
http://www.cybergooch.com/images/artwork/kirov01.jpg


Thu Jul 16, 2009 3:49 am
Profile
User avatar

Joined: Mon Feb 11, 2008 11:11 pm
Posts: 711
Location: East of Applachia, West of the Mississippi
Reply with quote
Post Re: War Zeppelin - LFoW's Mod Contest 3 Entry
I just noticed, the prop on the rear engine is facing the right when it would be more realistic to have it facing the left.


Thu Jul 16, 2009 4:10 am
Profile
User avatar

Joined: Mon Oct 06, 2008 2:04 am
Posts: 1559
Reply with quote
Post Re: War Zeppelin - LFoW's Mod Contest 3 Entry
Lambda wrote:
I just noticed, the prop on the rear engine is facing the right when it would be more realistic to have it facing the left.


The Kirov (Pictured above your post) is what I based my Zeppelin off of), and you can see the rear propeller is facing right as I have it.


Thu Jul 16, 2009 4:35 am
Profile
User avatar

Joined: Fri Mar 02, 2007 6:59 am
Posts: 1726
Location: NSW, Australia
Reply with quote
Post Re: War Zeppelin - LFoW's Mod Contest 3 Entry
Needs a bigger explosion!! ie more flaming gas.


Thu Jul 16, 2009 5:27 am
Profile
User avatar

Joined: Wed Dec 13, 2006 12:10 am
Posts: 562
Location: Termina
Reply with quote
Post Re: War Zeppelin - LFoW's Mod Contest 3 Entry
I would like to see a steampunk(more of a brown mixed in with the gray and with fins) troop carrier zeppelin, it would be awesome for dropping in Panzor and some of the new and remade steampunk actors in style :cool:


Thu Jul 16, 2009 6:50 am
Profile WWW
User avatar

Joined: Mon Jun 29, 2009 2:40 am
Posts: 610
Location: Deep below The Map of Mars
Reply with quote
Post Re: War Zeppelin - LFoW's Mod Contest 3 Entry
I second the steampunked zeppelin idea, there's nothing quite like combining the overly-heavy and the lighter than air.
(Anyone played Crimson Skies?)
Also, inaccurate rapid fire rockets are the perfect weapon for this kind of craft.


Fri Jul 17, 2009 4:21 am
Profile
User avatar

Joined: Mon Oct 06, 2008 2:04 am
Posts: 1559
Reply with quote
Post Re: War Zeppelin - LFoW's Mod Contest 3 Entry
mail2345 wrote:
Code:
function Create(self)
AudioMan:PlayMusic("file",0,-1)
self.swaytimer = Timer()
self.sway = 0.25
end

function Update(self)
if not(self:HasObject("Zeppelin Bomb") then
self:AddInventoryItem(CreateTDExplosive("Zeppelin Bomb))
end
if self.Vel.X < 0 then
self.HFlipped = true
end
if self.swaytimer:IsPastSimMS(5000) then
self.swaytimer:Reset()
self.AngularVel = self.sway
end
if self.RotAngle ~= 0 then
self.AngularVel = (self.AngularVel * 74 - math.deg(self.RotAngle)) / 75;
end
end

I think this might work.


None of it seems to be working except maybe the bobbing.
Will it not H flip if it's a dropship?


Sat Jul 18, 2009 8:47 am
Profile
User avatar

Joined: Fri Sep 12, 2008 2:13 pm
Posts: 51
Location: Not so sure...
Reply with quote
Post Re: War Zeppelin - LFoW's Mod Contest 3 Entry
Now we need a Russian army.

Anyways...DLing.


Sat Jul 18, 2009 8:50 am
Profile
User avatar

Joined: Tue Nov 06, 2007 6:58 am
Posts: 2054
Reply with quote
Post Re: War Zeppelin - LFoW's Mod Contest 3 Entry
Oh, right I half arseed bits:
Code:
function Create(self)
AudioMan:PlayMusic("file",0,-1)
self.swaytimer = Timer()
self.sway = 0.25
end

function Update(self)
if not(self:HasObject("Zeppelin Bomb") then
self:AddInventoryItem(CreateTDExplosive("Zeppelin Bomb))
end
if self.Vel.X < 0 then
self.HFlipped = true
end
if self.Vel.X > 0 then
self.HFlipped = false
end
if self.swaytimer:IsPastSimMS(5000) then
self.swaytimer:Reset()
self.AngularVel = self.sway
end
if self.RotAngle ~= 0 then
self.AngularVel = (self.AngularVel * 74 - math.deg(self.RotAngle)) / 75;
end
end

Also I know that the inventory code and the music should work.


Sat Jul 18, 2009 9:19 am
Profile
User avatar

Joined: Mon Oct 06, 2008 2:04 am
Posts: 1559
Reply with quote
Post Re: War Zeppelin - LFoW's Mod Contest 3 Entry
mail2345 wrote:
self:AddInventoryItem(CreateTDExplosive("Zeppelin Bomb))


I added a close quote to that, and I'm testing now.

Hmm still no go.
Music doesn't change. Bombs don't reload.


Sat Jul 18, 2009 3:21 pm
Profile
User avatar

Joined: Tue Nov 06, 2007 6:58 am
Posts: 2054
Reply with quote
Post Re: War Zeppelin - LFoW's Mod Contest 3 Entry
Any console errors?
Ahh, I think I forgot to do a basic syntax check:
Code:
function Create(self)
self.fframe = 0
self.swaytimer = Timer()
self.sway = 0.25
end

function Update(self)
if self.fframe > 5 then
AudioMan:PlayMusic("file",0,-1)
end
self.fframe = self.fframe + 1
if not(self:HasObject("Zeppelin Bomb")) then
self:AddInventoryItem(CreateTDExplosive("Zeppelin Bomb"))
end
if self.Vel.X < 0 then
self.HFlipped = true
end
if self.Vel.X > 0 then
self.HFlipped = false
end
if self.swaytimer:IsPastSimMS(5000) then
self.swaytimer:Reset()
self.AngularVel = self.sway
end
if self.RotAngle ~= 0 then
self.AngularVel = (self.AngularVel * 74 - math.deg(self.RotAngle)) / 75;
end
end

BTW, the self.fframe thing is because I suspect that it must be some oddity with create().


Sat Jul 18, 2009 7:35 pm
Profile

Joined: Mon Aug 13, 2007 6:36 pm
Posts: 161
Reply with quote
Post Re: War Zeppelin - LFoW's Mod Contest 3 Entry
Is its material Lead?


Sat Jul 18, 2009 10:44 pm
Profile
User avatar

Joined: Fri Mar 13, 2009 2:31 am
Posts: 217
Location: Earth... I think
Reply with quote
Post Re: War Zeppelin - LFoW's Mod Contest 3 Entry
I love it!!! Could it possibly be a landing platform for grif's plane? (heal and such) I would go insane I think I might have to try that out

also this thing needs to Gib Hindenburg :grin:


AWSOME MOD! Keep it up LFOW! I'm sorry but I'm too lazy to type that out or copy/paste


Mon Aug 24, 2009 11:31 pm
Profile
Banned
User avatar

Joined: Thu May 14, 2009 9:22 pm
Posts: 826
Location: Lookin' forward to mocking people on Jan 1st 2013.
Reply with quote
Post Re: War Zeppelin - LFoW's Mod Contest 3 Entry
Actors cannot stand on MOSRs/other actors. Period. Unless he uses a reverse version of the Organic Bunker's bleed effect, but I believe that has already been tried and failed.


Mon Aug 24, 2009 11:33 pm
Profile YIM
Display posts from previous:  Sort by  
Reply to topic   [ 42 posts ]  Go to page Previous  1, 2, 3  Next

Who is online

Users browsing this forum: No registered users


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group.
Designed by STSoftware for PTF.
[ Time : 0.046s | 13 Queries | GZIP : Off ]