Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
Offline R.I.P  
#1 Posted : Friday, August 21, 2015 6:18:49 PM(UTC)
R.I.P
Captain
Joined: 6/20/2015(UTC)
Posts: 77

Thanks: 18 times
Was thanked: 16 time(s) in 16 post(s)
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
thanksThumb Up
It's me your friendly modder ZOMBATAR!
Sponsor
Offline acidbrain  
#2 Posted : Friday, August 21, 2015 10:37:07 PM(UTC)
acidbrain
General
Joined: 12/30/2011(UTC)
Posts: 982

Thanks: 95 times
Was thanked: 574 time(s) in 364 post(s)
Check the construction-zone fence, under-construction scaffolding and being-constructed crane models with gmax/Renx to see the mechanics
Panem et kirkinses
Offline R.I.P  
#3 Posted : Saturday, August 22, 2015 6:34:11 AM(UTC)
R.I.P
Captain
Joined: 6/20/2015(UTC)
Posts: 77

Thanks: 18 times
Was thanked: 16 time(s) in 16 post(s)
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!
Offline AMGIntermission  
#4 Posted : Saturday, August 22, 2015 6:52:13 AM(UTC)
AMGIntermission
Major
Joined: 1/1/2010(UTC)
Posts: 143
Location: The European Community

Thanks: 3 times
Was thanked: 6 time(s) in 6 post(s)
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?

Quote:
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
thanks 1 user thanked AMGIntermission for this useful post.
R.I.P on 8/22/2015(UTC)
Offline R.I.P  
#5 Posted : Saturday, August 22, 2015 7:12:48 AM(UTC)
R.I.P
Captain
Joined: 6/20/2015(UTC)
Posts: 77

Thanks: 18 times
Was thanked: 16 time(s) in 16 post(s)
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!
Offline AMGIntermission  
#6 Posted : Saturday, August 22, 2015 8:00:41 AM(UTC)
AMGIntermission
Major
Joined: 1/1/2010(UTC)
Posts: 143
Location: The European Community

Thanks: 3 times
Was thanked: 6 time(s) in 6 post(s)
Originally Posted by: R.I.P Go to Quoted Post
could you just paste the code


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

Like a dowg!

UserPostedImage
Offline Zatsupachi  
#7 Posted : Saturday, August 22, 2015 11:45:48 AM(UTC)
Zatsupachi
Major
Joined: 3/27/2015(UTC)
Posts: 490

Thanks: 5 times
Was thanked: 213 time(s) in 155 post(s)
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

Code:

;---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


This is the code code for the being-constructed fence for the usa barracks
"It's precision_bomber."

Death Label HAS BEEN RELEASED(go get v0.99):
http://www.moddb.com/mod...oads/death-label-ver-099

Next Episode:
precision_bomber's Zero Hour SCIENCE!
thanks 2 users thanked Zatsupachi for this useful post.
R.I.P on 8/22/2015(UTC), CommieDog on 8/22/2015(UTC)
Offline R.I.P  
#8 Posted : Saturday, August 22, 2015 1:57:39 PM(UTC)
R.I.P
Captain
Joined: 6/20/2015(UTC)
Posts: 77

Thanks: 18 times
Was thanked: 16 time(s) in 16 post(s)
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
thanksSmile Smile Thumb Up
It's me your friendly modder ZOMBATAR!
Offline AMGIntermission  
#9 Posted : Saturday, August 22, 2015 6:59:48 PM(UTC)
AMGIntermission
Major
Joined: 1/1/2010(UTC)
Posts: 143
Location: The European Community

Thanks: 3 times
Was thanked: 6 time(s) in 6 post(s)
Very difficult to understand this?

Quote:
Ask your question on 'ONE LINE' only! not 2 but JUST one.....
UserPostedImage
Offline CommieDog  
#10 Posted : Saturday, August 22, 2015 9:13:07 PM(UTC)
CommieDog
Administrator
C&C Labs Staff: Labs Staff MemberThe Forgotten Staff: The Forgotten StaffRed Alert Staff: Red Alert Staff MemberAll Stars Staff: All Stars Staff
Joined: 8/3/2003(UTC)
Posts: 3,086
United States

Thanks: 445 times
Was thanked: 186 time(s) in 130 post(s)
Originally Posted by: R.I.P Go to Quoted Post
could you just paste the code and i will take it and put it in the building
thanks

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

Now look for this line:
Code:
  ; ------------ 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
Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.