A Community discussion forum for Halo Custom Edition, Halo 2 Vista, Portal and Halo Machinima

Home  Search Register  Login Member ListRecent Posts
  
 
»Forums Index »Halo Custom Edition (Bungie/Gearbox) »Halo CE General Discussion »Vehicles - Works in Process thread [WIP]

Page 97 of 124 Go to page: · 1 · ... · 94 · 95 · 96 · [97] · 98 · 99 · 100 · ... · 124 · Prev · Next
Author Topic: Vehicles - Works in Process thread [WIP] (4332 messages, Page 97 of 124)
Moderators: Dennis

Echo77
Joined: Jul 20, 2010

Humble thyself and hold thy tongue.


Posted: May 15, 2012 12:01 AM    Msg. 3361 of 4332       
I don't know about the mudflaps, but I do like the look of the vehicle so far. Using the stock Warthog as a base is helpful, too, because that means it will fit in with the default tagset fairly well.

Edit: I think maybe the front bumper should look a bit more like the ramming bar found on police cars, while the rear bumper should probably be a bit simpler-looking, functioning more as a step to access the passenger bay.
Edited by Echo77 on May 15, 2012 at 12:04 AM


Spartan314
Joined: Aug 21, 2010

Former biped rigger & FP animator


Posted: May 15, 2012 12:14 AM    Msg. 3362 of 4332       
Quote: --- Original message by: kirby_422
Hmm, a vehicle thread.. This just might be relevant!
EMP-able vehicle test *shrug*
You will use OS.. you shall obey kirby.. Obey.. Obey!

Sweet! Will this be included in SPV3?


killzone64
Joined: Jun 9, 2010

sometimes i miss the chaos occasionally


Posted: May 15, 2012 12:19 AM    Msg. 3363 of 4332       
Iwas thinking of adding bumpers like the ones on this truck


Echo77
Joined: Jul 20, 2010

Humble thyself and hold thy tongue.


Posted: May 15, 2012 09:05 AM    Msg. 3364 of 4332       
Quote: --- Original message by: killzone64
Iwas thinking of adding bumpers like the ones on this truck
http://3.bp.blogspot.com/-kCDkoEkCD9Y/TVmjhXv2KFI/AAAAAAAAAKc/tw5DO-f7MuY/s1600/ih_civilian+truck+iteration04.jpg


Aha, that would be cool.

Someone should make the truck itself at some point. o:


killzone64
Joined: Jun 9, 2010

sometimes i miss the chaos occasionally


Posted: May 15, 2012 04:35 PM    Msg. 3365 of 4332       
heres an attempt at the bumpers ,it beginning to look better, any more ideas.


kirby_422
Joined: Jan 22, 2006

Apparently public enemy number 1?


Posted: May 15, 2012 04:40 PM    Msg. 3366 of 4332       
banshee flip something something. One line of script is all that's needed (Plus, your conditions for activating it),
(unit_data_set_real <banshee> "driver_power" -0.4)

Get OS! Obey kirby.. obey.. Obey!


grunt_eater
Joined: Jan 26, 2011

Everything except biped rigging.


Posted: May 15, 2012 05:32 PM    Msg. 3367 of 4332       
(script static void flip
(if (unit_get_current_flashlight_state (unit (list_get (players) 0))) true)
(custom_animation banshee "vehicles\banshee\banshee" "flip" true)
(sleep 10)
(unit_stop_custom_animation "banshee")
(unit_set_desired_flashlight_state (unit (list_get (players) 0)) false)
)
(script continuous checkstuff
(if (vehicle_test_seat_list banshee "B-driver" (unit (list_get (players) 0)))
(flip))
)


The above is a quick 3 minute script i made for an OS free version of Kirby's flip script. I haven't tested it or anything, but what you'd need to do is add a 10 frame animation named flip into the banshee's animations that is an animation of the banshee flipping. Compile that script and in-game enter the vehicle and hit flashlight. But like i said, i haven't tested it and don't really have the time to right now, so there's no guaranteeing it'll work. But some actual scripters could take a look at it and see what it needs :P.


If you get it working, you could also use a modified version for boost, flipping to the side, back flip, banshee barrel roll, ect. You get the idea.

Like for boost
(script dormant stop
(if (unit_get_current_flashlight_state (unit (list_get (players) 0)) true)
(unit_stop_custom_animation "ghost")
)
(script continuous boost
(if (unit_get_current_flashlight_state (unit (list_get (players) 0)) true))
(custom_animation teh_ghost "vehicles\ghost\ghost" "boost" true)
(wake stop)
)

Edited by grunt_eater on May 15, 2012 at 05:47 PM


kirby_422
Joined: Jan 22, 2006

Apparently public enemy number 1?


Posted: May 15, 2012 05:43 PM    Msg. 3368 of 4332       
That has one predefined animation, you want people to freely control what they are doing. (Also, there is no point to using a static script in that.. Also, the if is broken in the static. And why are you even using ifs? with the setup you have, you should have a (sleep_until (and <flashlight> <seat_test>) <time>)

But at that point, you might as well not even use scripts, and set the animation up to a function block so you don't need scripts.


killzone64
Joined: Jun 9, 2010

sometimes i miss the chaos occasionally


Posted: May 15, 2012 05:45 PM    Msg. 3369 of 4332       
okay now i think opensauce is now broken im typing in the command correctly and everything but it says "exception thats all i know" or lists off the commands in tool.

heres my command line
os_tool.exe build-cache-file-ex "" 0 0 1 kzcm\opensauce_maps\tagstest

it all happened after i extracted altis's falcon from the map he sent me i made some changes and went to compile and it started doing this, i even completely removed it from the map and globals and it still is doing it.

sorry altis it looks like i may take longer than expected.

edit: i just finished re-installing opensauce and it didn't fix anything and there is nothing showing up in os debug or normal debug.
Edited by killzone64 on May 15, 2012 at 05:47 PM


kirby_422
Joined: Jan 22, 2006

Apparently public enemy number 1?


Posted: May 15, 2012 05:47 PM    Msg. 3370 of 4332       
Do you know exactly what tags you extracted? And where they set to overwrite? etc.


killzone64
Joined: Jun 9, 2010

sometimes i miss the chaos occasionally


Posted: May 15, 2012 05:50 PM    Msg. 3371 of 4332       
i extracted all the tags in his map but it was not set to overwrite, i never use that because it always screws stuff up.


kirby_422
Joined: Jan 22, 2006

Apparently public enemy number 1?


Posted: May 15, 2012 05:55 PM    Msg. 3372 of 4332       
So, since you grabbed everything, your only option to find what tag is broken is to go through every tag you see in his map until you find the broken one. Good luck. (Also, did you rip any OS tags from his map? because those would all be corrupt, HEK+ isn't designed for OS tags)


killzone64
Joined: Jun 9, 2010

sometimes i miss the chaos occasionally


Posted: May 15, 2012 05:59 PM    Msg. 3373 of 4332       
i dont think his map uses opensauce. im just going to reinstall the hek then extract all my tags back from my maps.
Edited by killzone64 on May 15, 2012 at 05:59 PM


grunt_eater
Joined: Jan 26, 2011

Everything except biped rigging.


Posted: May 15, 2012 06:27 PM    Msg. 3374 of 4332       
So something like this?

(script continuous stop
(sleep_until (unit_get_current_flashlight_state (unit (list_get (players) 0)) 0)
(unit_stop_custom_animation ghost)
)
(script continuous boost
(sleep_until (unit_get_current_flashlight_state (unit (list_get (players) 0)) 1)
(custom_animation ghost "vehicles\ghost\ghost" "boost")
(wake stop)
)


I understand what you're saying about the function block, this is just for experimentation, to learn. So then is this the best way possible to do this with scripting? or is there a better way of going about it?


kirby_422
Joined: Jan 22, 2006

Apparently public enemy number 1?


Posted: May 15, 2012 06:36 PM    Msg. 3375 of 4332       
what you just wrote, will stop your animation any time the flashlight is on, checking CONSTANTLY (0 ticks between checks). Any time flashlight is on, it will try to start the animation, although the other script terminates it instantly, as well as it preforming the wake which will insure the animation is stopped even if the flashlight isnt on. You don't even need to stop the animation, it will end itself when it gets to the end.


grunt_eater
Joined: Jan 26, 2011

Everything except biped rigging.


Posted: May 15, 2012 07:00 PM    Msg. 3376 of 4332       
I disagree with one thing. The animation will be constantly replayed until it is told to stop, that i do know because i'v had that problem before. And i was trying to make the script check to see if your flashlight was turned off before doing that :/...Hmm...


So the second part of the script does work though? the part that says
(script continuous boost
(sleep_until (unit_get_current_flashlight_state (unit (list_get (players) 0)) 1)
(custom_animation ghost "vehicles\ghost\ghost" "boost")
(wake stop)
)

So if i were to change that to an if command like this

(script continuous stop
(if (unit_get_current_flashlight_state (unit (list_get (players) 0)) 0)
(unit_stop_custom_animation ghost))
)
(script continuous boost
(sleep_until (unit_get_current_flashlight_state (unit (list_get (players) 0)) 1)
(custom_animation ghost "vehicles\ghost\ghost" "boost"))
(wake stop)
)

Would that work or do the same thing that the other one did?


kirby_422
Joined: Jan 22, 2006

Apparently public enemy number 1?


Posted: May 15, 2012 07:10 PM    Msg. 3377 of 4332       
That wont compile, and if you fix the bug it will do the same thing. You never once check if the flashlight is off.

unit_get_current_flashlight_state returns true or false, if's and sleep_until's wait for true. You need to do a logical step so that only when it returns false, this logical command will then return true to the if or sleep_until
commands like (not <boolean>) (= <value> <value>) (!= <value> <value>) or even a (and <value> <value>) if you really wanted.
not will toggle it, when its true it will return false, when false will return true, etc. with = you can check if it = 0 (or false), with != it will return true when ever it isn't equal, so if you went != true, it would only return true when its false or void (-1).

If you want to use your if statement, you should notice (if <condition> <expression> [<else>]), using that, you only need to mention the flashlight once. If its true, it will do the first option. If it is false, do the second statement (the optional statement)

There is many different ways to go about this situation, etc.


Skidrow925
Joined: Mar 19, 2010

"ideological sense of respect and tact of a 5yo"


Posted: May 15, 2012 07:25 PM    Msg. 3378 of 4332       
While this is being discussed, is there a way to overshoot memory of the HSC and force it to go back to the beginning of the script?

I think that being able to do that would make what you are doing a lot easier as well as scripts in general.

Just sayin'


kirby_422
Joined: Jan 22, 2006

Apparently public enemy number 1?


Posted: May 15, 2012 07:41 PM    Msg. 3379 of 4332       
can you better define what your talking about? (Also, why is this thread becoming a script thread? lol. Just post some vehicle things that use scripts, and then suddenly, script thread! lol)

Continuous scripts loop back to the beginning when they hit the end. Using if statements, you can set up routes it follows where it only reaches those commands with the right requirements. If you for whatever reason don't care about doing it reasonably, you can have it sleep -1, and then have another script re-awaken it so it starts back at the top.


Skidrow925
Joined: Mar 19, 2010

"ideological sense of respect and tact of a 5yo"


Posted: May 15, 2012 07:58 PM    Msg. 3380 of 4332       
What I am talking about is that have have this much memory
[ ]
and you use this much memory
[ ]
over using memory and causing the script to go back to the top
hence why I called it an overshoot of memory

It's something I have seen used and actually used while programming. You can make a 4 line program that eventually takes up a ton of space by overwriting it self.
Will explain more later I suppose.

Was just wondering if HSC could do it. Kinda doubt it now but would be super awesome.


killzone64
Joined: Jun 9, 2010

sometimes i miss the chaos occasionally


Posted: May 15, 2012 08:03 PM    Msg. 3381 of 4332       
okay ive fixed my previous problem and i bring gifts of falcon sounds
http://www.youtube.com/watch?v=qp2B9lpjd9Q

only joking here's the sounds for the vehicle, can anyone compile them for me since i do not have the ability to do that.
http://www.mediafire.com/?da7c4w5f2up2v1q


kirby_422
Joined: Jan 22, 2006

Apparently public enemy number 1?


Posted: May 15, 2012 08:04 PM    Msg. 3382 of 4332       
no, if you have too many scripts executing at once, it game will start disabling scripts, completely unable to wake them or make them function again without reloading the map.


killzone64
Joined: Jun 9, 2010

sometimes i miss the chaos occasionally


Posted: May 17, 2012 03:45 PM    Msg. 3383 of 4332       
i really haven't ever messed with sounds a lot but i think that there's something wrong with your sound looping tag. did you make a start stop and loop sound for the falcon?


killzone64
Joined: Jun 9, 2010

sometimes i miss the chaos occasionally


Posted: May 17, 2012 04:04 PM    Msg. 3384 of 4332       
could you compile the sounds into tags that i posted on the previous page then send them to me i will work on it
Edited by killzone64 on May 17, 2012 at 04:05 PM

i also adjusted the physics a bit and its starting to fly better, still dont have the rotors spinning ill look that over and check to see whats going on.
Edited by killzone64 on May 17, 2012 at 04:07 PM


killzone64
Joined: Jun 9, 2010

sometimes i miss the chaos occasionally


Posted: May 21, 2012 09:50 PM    Msg. 3385 of 4332       
those sounds are good but i was hoping to have someone compile the ones i posted previously into sound tags, because they are actually directly taken from the falcon.

on the other hand i completely deleted my tags folder because i was over the maximum limit. so i didn't get much work done on the falcon other than some physics work. the animations still dont show up even after extracting your tags first. could you save some of the tags that it shares with the hornet to different names so that there isn't any conflicting tag files. the recompile it into a map and sent it to me.


P3
Joined: Dec 2, 2011


Posted: May 23, 2012 08:22 PM    Msg. 3386 of 4332       
I don't know why but... I like almost everything but the purple texture... and the gun seems to far forward... And maybe a bit slanted side ways.


xKRONNiKx
Joined: Nov 15, 2011

Turkey Farm.


Posted: May 24, 2012 02:49 PM    Msg. 3387 of 4332       
it'd be cool if i could actually find a halo 3 ghost tag to download!, seems like everyone does one but i never see any releases, except that one, but the download links are broken now..


P3
Joined: Dec 2, 2011


Posted: May 24, 2012 06:05 PM    Msg. 3388 of 4332       
Looks worse than before. Did you change the metal or did you change everything? Cause the metal looked good before.


Jaz
Joined: Mar 21, 2010

[Insert sarcastic comment here]


Posted: Jun 3, 2012 06:59 AM    Msg. 3389 of 4332       
Quote: --- Original message by: Private Caboose
Can you stop using PNGs? PLEASE?! PNGs are for PC to PC sharing, not online use, as they don't COMPRESS. JPEG is the only format that compresses online. Use JPEG, not PNG.


PNGs are better quality, and if you can't load them, I suggest you either get a new computer that isn't so bad it can't even load images, or find a better broadband supplier.

But anyway, haven't there been like a hundred H3 ghosts made but never released? o.O



Edited by Jaz on Jun 3, 2012 at 07:00 AM


TauSigmaNova
Joined: Jan 31, 2011

If love is blind, I guess I'll buy myself a cane


Posted: Jun 3, 2012 10:04 AM    Msg. 3390 of 4332       
Quote: --- Original message by: Jaz

Quote: --- Original message by: Private Caboose
Can you stop using PNGs? PLEASE?! PNGs are for PC to PC sharing, not online use, as they don't COMPRESS. JPEG is the only format that compresses online. Use JPEG, not PNG.


PNGs are better quality, and if you can't load them, I suggest you either get a new computer that isn't so bad it can't even load images, or find a better broadband supplier.

Edited by Jaz on Jun 3, 2012 at 07:00 AM

Agreed.
I think people should quit their crying about this. Either upgrade from your 10 year old PC or quit using a Dial-Up modem.


Svanke Svans
Joined: Apr 3, 2012


Posted: Jun 3, 2012 11:54 AM    Msg. 3391 of 4332       
Dial-Up should be outlawed.


Maniac1000
-Helpful Poster-
Joined: Feb 24, 2007


Posted: Jun 3, 2012 01:46 PM    Msg. 3392 of 4332       
As should whining about png's


Echo77
Joined: Jul 20, 2010

Humble thyself and hold thy tongue.


Posted: Jun 3, 2012 05:45 PM    Msg. 3393 of 4332       
Could someone seperate the turret from the Spectre so I could use it as a stationary gun? A portable variant (minus the mount) would be helpful, too, if anyone would be so kind.


OHunterO
Joined: May 24, 2012

.


Posted: Jun 3, 2012 11:21 PM    Msg. 3394 of 4332       
Quote: --- Original message by: Jaz

Quote: --- Original message by: Private Caboose
Can you stop using PNGs? PLEASE?! PNGs are for PC to PC sharing, not online use, as they don't COMPRESS. JPEG is the only format that compresses online. Use JPEG, not PNG.


PNGs are better quality, and if you can't load them, I suggest you either get a new computer that isn't so bad it can't even load images, or find a better broadband supplier.

But anyway, haven't there been like a hundred H3 ghosts made but never released? o.O



Edited by Jaz on Jun 3, 2012 at 07:00 AM


Or I suggest you shut up, PNG's are NOT needed for online presentation as they are not compressed. They are completely useless online apart from the transparency option.

JPG's load faster than PNG's on any system, and they contain ALL of the colour and data that your eye can actually see...


Jaz
Joined: Mar 21, 2010

[Insert sarcastic comment here]


Posted: Jun 4, 2012 05:16 AM    Msg. 3395 of 4332       
Quote: --- Original message by: Tiel
So it's a few hundred kbs bigger, what's the big deal?

 
Page 97 of 124 Go to page: · 1 · ... · 94 · 95 · 96 · [97] · 98 · 99 · 100 · ... · 124 · Prev · Next

 
Previous Older Thread    Next newer Thread







Time: Sat January 21, 2023 3:52 AM 1,109 ms.
A Halo Maps Website