logo   login
right
Home Forums Downloads Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Forum Info
Forum Members: 18,581
Total Threads: 8,669
Posts: 94,544

Administrators:
DeeZire, Redemption

There are currently 41 users online.
Partner Links

Free Credit Repair

Learn the Ticket Broker Secrets
Advertisements

DeeZire Online > Editing Community > Command and Conquer Editing > Red Alert 2 & Yuri's Revenge Editing » I no tis been asked b4 Can Vehicles Deploy to Other Vehicles

Red Alert 2 & Yuri's Revenge Editing Discuss any modding related issues to do with Red Alert 2 and Yuri's Revenge here.

Reply
 
LinkBack Thread Tools
Old 08-27-2003, 02:54 AM   #1 (permalink)
Junior Member
 
Join Date: Dec 2002
Location: PEI, Canada
Posts: 26
Send a message via ICQ to AJBxxx Send a message via AIM to AJBxxx Send a message via MSN to AJBxxx Send a message via Yahoo to AJBxxx
Default I no tis been asked b4 Can Vehicles Deploy to Other Vehicles

Hey everyone. I saw a topic on this a few months ago but i just can't find it i'd appreciate if someone could link me to it. If not, could u tell me if it's possible for a vehicle to deploy into another vehicle and if so how? I tried the simple 'DeploysInto=(vehiclename)' but that didn't work out too good. Thanks a bunch
AJBxxx is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 08-27-2003, 03:05 AM   #2 (permalink)
Senior Member
 
Join Date: Dec 2002
Location: USA
Posts: 1,858
Send a message via ICQ to Kravvitz Send a message via AIM to Kravvitz Send a message via MSN to Kravvitz Send a message via Yahoo to Kravvitz
Default

try http://deezire.net/modules.php?name=...ewtopic&t=2380
Kravvitz is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 08-27-2003, 09:34 AM   #3 (permalink)
Senior Member
 
Join Date: Jan 2003
Location: Hamburg, Germany
Posts: 2,208
Send a message via ICQ to Renegade
Default

Does the phrase "Search function" mean anything to you?
Renegade is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 08-27-2003, 11:12 AM   #4 (permalink)
Senior Member
 
Join Date: Dec 2002
Location: Middle Earth
Posts: 290
Default

Dont make sense ! People might start thinking for themselves !
Sypher_5 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 08-27-2003, 01:18 PM   #5 (permalink)
Senior Member
 
Join Date: Dec 2002
Posts: 178
Default

THE HORROR!
Destroyer is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 08-27-2003, 06:06 PM   #6 (permalink)
Senior Member
 
Join Date: May 2003
Posts: 126
Default

How to create units that deploy into other units
Submitted by Commodus


First of all, you’re going to need a few things:
A program to view INI files
XCC Mix Editor (to put graphics + ini files into mix files)
Graphics for the units

You are trying to create a unit that can morph into another unit the simple action of double-clicking it to deploy it. The unit will then turn into a fundamentally different unit, i.e :

A cyborg mechanical walker that could be whipped into a battle frenzy by the getting it high on GA (gigadrenaline) drug - this would give it lower hit-points but make its attacking strength much more powerful.
A deadly attack mechanism that can switch between having excellent anti-infantry weapons (poor anti-armor) or excellent anti-armor weapons (poor anti-infantry) - my mod, the Torestine Jihad, has a unit that uses this function. The main part of coding will be used to demonstrate this.
An experimental prototype of a covert, high-tech tank that could switch on cloaking, at the expense of weakening its otherwise powerful gamma ray.

It works in a very similar way to DeeZire’s MAD Tank. This tutorial will show you how to make effects like these. First of all, create an entry for a unit, like I have done here with my Ares PAX (Protected Assault Column Section):

[APAX] ; the unit entry
UIName=Name:MTNK
Name=Ares PAX
Image=APAX
Primary=105mm
Prerequisite=GAWEAP ; keep the prerequisite low so you can test it out in game
Strength=300
Category=AFV
Armor=heavy
Turret=yes
IsTilter=yes
Crusher=no
DeploysInto=PHOBOS ; put this tag in to make it deploy into a building - I will explain later on why
TooBigToFitUnderBridge=true
TechLevel=5
Sight=8
Speed=7
CrateGoodie=no
Owner=British,French,Germans,Americans,Alliance
Cost=1200
Points=50
ROT=5
IsSelectableCombatant=yes
Explosion=TWLT070,S_BANG48,S_BRNL58,S_CLSN58,S_TUM U60
VoiceSelect=GenAllVehicleSelect
VoiceMove=GenAllVehicleMove
VoiceAttack=GenAllVehicleAttackCommand
VoiceFeedback=
DieSound=GenVehicleDie
MoveSound=GrizzlyTankMoveStart
MaxDebris=10
; origional - Locomotor={55D141B8-DB94-11d1-AC98-006008055BB5}
Locomotor={4A582741-9839-11d1-B709-00A024DDAFD1}
MovementZone=Normal
ThreatPosed=15 ; This value MUST be 0 for all building addons
DamageParticleSystems=SparkSys,SmallGreySSys
VeteranAbilities=STRONGER,FIREPOWER,SIGHT,FASTER
EliteAbilities=SELF_HEAL,STRONGER,FIREPOWER,ROF
Accelerates=false
ImmuneToVeins=yes
Size=3
OpportunityFire=yes

Don’t forget to add an entry in the Vehicle list as well:

57=CDEST
58=APAX

Now, the reason why you put the tag DeploysInto=PHOBOS, is because we are going to use a workaround to make the deploying work: the Ares PAX deploys into an invisible building which has an active animation that will kill it. The building, upon deployment, gives a free unit, and this free unit is the unit you want the original deployer to turn into. Without much further ado, add the following:

[PHOBOS] ; The building that will make the work around work. The following 5 tags make the building less of a building ie. more of a work around.
Insignificant=yes ; Eva/Zofia won’t announce it as a loss
Spyable=no ; can’t be infiltrated
Capturable=no ; can’t be captured
Selectable=no ; can’t be selected (it defeats the purpose)
Repairable=no ; no point
Strength=1 ; This will make the building weak so its easier to clean up the remains once the unit is deployed
Armor=none ; same concept as Strength=1
FreeUnit=PHPAX ; This makes a new unit appear with the building.

PHOBOS is the building which gives you the Phobos PAX as a free unit that came with the building. Add the following to the Active Animation list:

[Number after last one]=PHOBOS_A

Now, open up art.ini and add a section for APAX (nothing special about it - it’s the same as any other vehicle) and for the Building - add something like this:

[PHOBOS]
Image=none ; that is, unless you have a good image that can be put in…
Buildup=none ; same as Image=
ActiveAnim=PHOBOS_A ; This directs to an animation - explained next

… which is when you add an ActiveAnim entry to the Active Animation section. The ActiveAnim is obviously an invisible one, but it will have a tag that makes it do enough damage to a building per minute so that it is destroyed by its own animation, and thus cleaned up. The entry should be something like this.

[PHOBOS_A]; entry name
Rate=300 ; Determines the speed
Damage=1 ; damage done - 1 will be enough to kill the building because its Strength=1

Last but not least, at the entry for the [PHPAX] (Phobos PAX). And voila! You’re done.
Please note that I have experienced problems when the invisible building was still sitting around near my base. Don’t worry, it should disappear after a minute (after all, the definition of Damage= says that it states how much damage is done in a minute)
jop7821 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 08-28-2003, 12:03 AM   #7 (permalink)
Senior Member
 
Join Date: May 2003
Posts: 126
Default

someone else wrote
jop7821 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 08-28-2003, 04:08 PM   #8 (permalink)
Junior Member
 
Join Date: Dec 2002
Location: PEI, Canada
Posts: 26
Send a message via ICQ to AJBxxx Send a message via AIM to AJBxxx Send a message via MSN to AJBxxx Send a message via Yahoo to AJBxxx
Default

Hey thanks a lot man! I would have never thought to get the invisible building to come with a free unit in 100 years lol

And BTW, i did try to search for the topic but couldn't find it :/
AJBxxx is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 08-28-2003, 07:19 PM   #9 (permalink)
Senior Member
 
Join Date: May 2003
Posts: 126
Default

Say thanks to Commodus at YR Argintina not me and there is also other good tutorials there as well.(i think he was from a shut down site) =yrarg.cncguild.net no ".com"s or "www."i think
jop7821 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 08-28-2003, 07:52 PM   #10 (permalink)
Senior Member
 
Join Date: Jan 2003
Location: Egypt
Posts: 1,241
Send a message via ICQ to DeeZeL Send a message via MSN to DeeZeL
Default

http://yrarg.cncguild.net

and a very nice tutorial, thanks for posting it here jop7821
DeeZeL is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Modeling new vehicles KaiserPanda Generals & Zero Hour Editing 7 02-03-2004 08:58 PM
Upgrading Vehicles Decker Red Alert 2 & Yuri's Revenge Editing 18 01-05-2004 03:56 PM
airborne vehicles pieten Generals & Zero Hour Editing 5 09-01-2003 08:32 AM
can vehicletypes deploy into vehicles? tk2 Red Alert 2 & Yuri's Revenge Editing 16 06-07-2003 04:16 AM
NEW VEHICLES MORPHLING Red Alert 2 & Yuri's Revenge Editing 16 01-02-2003 07:45 AM


All times are GMT -4. The time now is 10:29 PM.


Design By: Miner Skinz.com
Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.