Just wondering

Discuss Halo 2 modding, progress on figuring things out, mapfiles...you know the drill. Cheating discussion not allowed.
Post Reply
User avatar
nickadamz
Readers Club





Posts: 69
Joined: Mon Sep 17, 2007 9:46 pm
Location: Kaiapoi
Contact:

Just wondering

Post by nickadamz »

if i made like a bridge on top of coaguation and put the train from terminal in would it move accross or is it scripted?
User avatar
plushiefire





Posts: 618
Joined: Thu Nov 23, 2006 12:10 pm
Location: Canada

Post by plushiefire »

Its not just scripted, its part of the bsp. SO not possible (yet) sry.
Come check out Team 3volved.
Image
User avatar
CptnNsan0




Stylist Snitch! Collaborator Commentator

Posts: 1904
Joined: Thu Jun 15, 2006 5:49 am
Location: Durham, NC

Post by CptnNsan0 »

I'm pretty sure I've seen a mod on terminal where you could shoot the train out of a plasma pistol gun so that means the train can be transfered to coagulation...
Image
Not Removing This
User avatar
grimdoomer




System Engineer

Posts: 1440
Joined: Mon Oct 09, 2006 4:36 pm

Post by grimdoomer »

well its physical model and all that can be transfered, and if you post the script then i can tell you if it will work or not. Im really good with scripting so like i sayed post the script and i xan tell you how to do it.
Image
AI Zones in MP | Ambiance | Gravemind Beta v1.1
Aumaan Anubis wrote:Grimdoomer. The first person ever to mod Halo 2 Vista.
User avatar
newbymodder




Blacksmith Articulatist 500

Posts: 1475
Joined: Fri Nov 24, 2006 4:43 pm
Location: San Angelo, Tejas

Post by newbymodder »

you could set it as (can't remember the term) its a type of scenery where you can oh say use a rocket and make it fly across part of the map but change its mode to a pelican so then you have a pelican that fly's across the map.
Image
Join Halo 2.5, Can't stop never stop modding halo 2 http://www.halo25.co.nr/
User avatar
grimdoomer




System Engineer

Posts: 1440
Joined: Mon Oct 09, 2006 4:36 pm

Post by grimdoomer »

active scenery and yes you could, but you could possible script it. like I sayed I would have to see the script.
Image
AI Zones in MP | Ambiance | Gravemind Beta v1.1
Aumaan Anubis wrote:Grimdoomer. The first person ever to mod Halo 2 Vista.
User avatar
NotZachary82





Posts: 644
Joined: Sun Oct 28, 2007 9:15 am
Location: TX, USA

Post by NotZachary82 »

grimdoomer wrote:active scenery and yes you could, but you could possible script it. like I sayed I would have to see the script.
i found the script:

Code: Select all

(script continuous train_of_death 
  (begin 
   (object_destroy eastbound_train) 
   (object_destroy eastbound_death) 
   (object_destroy westbound_train) 
   (object_destroy westbound_death) 
   (sleep (random_range 60 360)) 
   (if (= 0 (random_range 0 2)) 
    (begin 
     (object_create eastbound_train) 
     (object_create eastbound_death)
    ) 
     (begin 
      (object_create westbound_train) 
      (object_create westbound_death)
     )) 
     (sleep 240)
    )
)
u'll prolly have to tweak it a bit to make this work...
User avatar
grimdoomer




System Engineer

Posts: 1440
Joined: Mon Oct 09, 2006 4:36 pm

Post by grimdoomer »

you would be able to get this to work. Im guessing the train is a mach all you would have to do is find it and transfer a cuple reflexives, add add this script then you should be good.
Image
AI Zones in MP | Ambiance | Gravemind Beta v1.1
Aumaan Anubis wrote:Grimdoomer. The first person ever to mod Halo 2 Vista.
User avatar
nickadamz
Readers Club





Posts: 69
Joined: Mon Sep 17, 2007 9:46 pm
Location: Kaiapoi
Contact:

Post by nickadamz »

i dont have a clue how to script lol if possible would someone do it for me i know its a big ask and i will credit you
User avatar
grimdoomer




System Engineer

Posts: 1440
Joined: Mon Oct 09, 2006 4:36 pm

Post by grimdoomer »

Im to busy programing but here is what you must do. Build the train from triplicate into your map, then copy the script locations and script objects from the scenario of triplicate to your map. Then copy the script abouve and any others from the scenario too.
Image
AI Zones in MP | Ambiance | Gravemind Beta v1.1
Aumaan Anubis wrote:Grimdoomer. The first person ever to mod Halo 2 Vista.
User avatar
neodos
Readers Club




Artisan Miner

Posts: 1394
Joined: Thu Aug 12, 2004 11:57 am

Post by neodos »

One train = 2 mach

1 Mach which has the Train Visual model and PHMO and COLL
1 Mach (deathball) that has an attached effect: which has a jtp! this mach is placed with the train mach so the train will kill the player.


You'll just need to add machine pallette and machine placement on coagulation's scnr.

Once you got that and those mach tags, you add your 2 machines to the machine pallette reflexive(on scnr), then add 2 chunks to machine placement reflexive(on scnr).

So you must have those mach:
scenarios\objects\multi\triplicate\ze_train\ze_train
scenarios\objects\multi\triplicate\ze_train_deathball\ze_train_deathball

Place both mach exactly at the same place and in the same direction (see on the meta editor on Yaw Pitch roll)

Now, i know that this script is just here to enable the machines randomly (so make a train pass randomly).
Which means that the machine is enabled by a script.
In fact not, on Terminal those train mach are not spawned at the beginning of the game, the script spawn(create_object) and remove the train.

So if you just add the mach on the map, the train should work and do the traject it does and always do a loop between where it starts and where it stops and come back and restart again its traject.
Post Reply