R.I.P
  • R.I.P
  • 50.25% (Neutral)
  • Captain Topic Starter
10 years ago
does anyone know how to make the building fence and the crane and the raising from the ground slowly thing that stuff that appears when a building is in building progress
thanks👍
It's me your friendly modder ZOMBATAR!
Sponsor
acidbrain
10 years ago
Check the construction-zone fence, under-construction scaffolding and being-constructed crane models with gmax/Renx to see the mechanics
Panem et kirkinses
R.I.P
  • R.I.P
  • 50.25% (Neutral)
  • Captain Topic Starter
10 years ago
i mean i want to put this stuff to a building i dont want to make anew one i just want to give it to another building
thanks
It's me your friendly modder ZOMBATAR!
AMGIntermission
10 years ago
I haven't found anything specific to its construct set-up, Closest i got was this unacceptable Scaffolding located; I think in the ''Special objects'' list?

There are 2 types of Crane in the Building menu under 'Objects, Cargo, and Crane,



just put the rest together with a Type 1 chain-link fence....
UserPostedImage 
R.I.P
  • R.I.P
  • 50.25% (Neutral)
  • Captain Topic Starter
10 years ago
could you just paste the code and i will take it and put it in the building
thanks
It's me your friendly modder ZOMBATAR!
AMGIntermission
10 years ago

could you just paste the code

Originally Posted by: R.I.P 



Didn't have WB right now, but sounded lengthy anyway, just hunt it down,

Like a dowg!


UserPostedImage 
Zatsupachi
10 years ago
uh. just check out any of the under construction fence and crane models.

You want to attach it to an object, right?
I'm going to assume you already have the object's art code.

to be organized, put down two new W3DModel Modules.
on there you place the code of the under construction fence and crane models respectively.

it should look like this


;---your default art code blah blah blah----

;---Construction Fence
Draw = W3DModelDraw ModuleTag_xx
  ;code for under-construction fence
End

;---Construction Crane
Draw = W3DModelDraw ModuleTag_xx
  ;code for under-construction crane
End

;---the rest of your code blah blah blah----

Disclaimer: I'm not sure with everything, but you may wanna make DAY, NIGHT, and SNOW versions of these.
This is the code for the being-constructed crane for the usa barracks



    ConditionState    = ACTIVELY_BEING_CONSTRUCTED ;you can change this to NONE
      Model           = ABBarracks_A5
      Animation       = ABBarracks_A5.ABBarracks_A5
      AnimationMode   = LOOP
      TransitionKey   = UP_DAY
    End


This is the code code for the being-constructed fence for the usa barracks



    ConditionState    = AWAITING_CONSTRUCTION PARTIALLY_CONSTRUCTED ACTIVELY_BEING_CONSTRUCTED ;change this to NONE
      Model           = ABBarracks_A4
      Animation       = ABBarracks_A4.ABBarracks_A4
      AnimationMode   = MANUAL
      Flags           = START_FRAME_LAST ;Change this to START_FRAME_FIRST (?)
      TransitionKey   = UP_DAY
      ParticleSysBone = SparksS01 LiveWireSparks02
    End

"It's precision_bomber."
Death Label HAS BEEN RELEASED(go get v0.99):
http://www.moddb.com/mods/death-label/downloads/death-label-ver-099 
Next Episode:
precision_bomber's Zero Hour SCIENCE!
R.I.P
  • R.I.P
  • 50.25% (Neutral)
  • Captain Topic Starter
10 years ago
im not talking about wb i mean that is i want to give that things to a civilian building i converted it to be build able by the dozer but the building doesnt have that stuff so i want to add that stuff to it not to a mab in wb i want to make it to the main game ini file and the crane and the fence and these stuff will be better if it was the command center stuff because the civi building is big
thanks😄 😄 👍
It's me your friendly modder ZOMBATAR!
AMGIntermission
10 years ago
Very difficult to understand this?

Ask your question on 'ONE LINE' only! not 2 but JUST one.....


UserPostedImage 
CommieDog
10 years ago

could you just paste the code and i will take it and put it in the building
thanks

Originally Posted by: R.I.P 


It's a lot of code, probably too much to fit into a forum post. But look for this line in \Object\FactionBuilding.ini:
;------------------------------------------------------------------------------
Object AmericaCommandCenter
This is the beginning of the USA's Command Center code.

Now look for this line:
  ; ------------ construction-zone fence -----------------
  Draw = W3DModelDraw ModuleTag_05
This is the beginning of the code that controls the construction fence around the USA Command Center. you'll need to copy the entire module (everything below it that has addition indenting, plus the "End" line at the end with the same amount of indenting) into your new building in order to get the fence to show up before and during construction.
UserPostedImage 
CommieDog: Because someone has to do your dirty work for you