Page 6 of 11

Posted: March 18th, 2006, 10:04 pm
by Soviet
not really, i just didn't work on it during the week due to school, and im making sure its not flawed as i make it (no clipping textures, no script errors, etc)

Posted: March 19th, 2006, 11:25 pm
by Soviet
is it possible to have 2 use buttons that do the exact same thing without having to rescript the new one well?

Posted: March 19th, 2006, 11:43 pm
by Nightmare
what are you trying to say soviet?

Posted: March 20th, 2006, 12:25 am
by Luke
Soviet wrote:is it possible to have 2 use buttons that do the exact same thing without having to rescript the new one well?
If you want the same trigger in more than one place to do the same thing, you should select all the trigger brushes, then make them a trigger_use...select any previos ones u made first and right click > ungroup entity first. coz u gotta make them into a trigger_use or w/e at the same time.

Posted: March 20th, 2006, 12:31 am
by Soviet
ok, thanks for your help luke, one more thing. Lets say i wanted a ladder to be a net. So i've made the ladder brush extending from the net, and i've made the net. But the net is causing you to see through the walls it is touching, what do i need to do to it to make it look right?

Posted: March 20th, 2006, 10:12 am
by Drofder2004
Soviet wrote:ok, thanks for your help luke, one more thing. Lets say i wanted a ladder to be a net. So i've made the ladder brush extending from the net, and i've made the net. But the net is causing you to see through the walls it is touching, what do i need to do to it to make it look right?
You make 3 sections of wall.

1st brush is ladder.
2nd brush is nodraw, and then texture only the front (the side you see as the net
3rd a wall.

The wall stops you from seeing through. (When I get home I may release something that will be helpful to you and many other people :))

Posted: March 22nd, 2006, 5:21 am
by Soviet
thanks for that...is there any existing list or accessible view of the models of call of duty that i can use in my map like tables, barrels, etc. I checked modsonline but i didn't see anything

Posted: March 22nd, 2006, 11:39 am
by Grom
There was one at modsonline.com before, but Im not sure if it´s there anymore though.
I got it on my machine, will upload it when I get home.. :wink:

Posted: March 22nd, 2006, 1:40 pm
by Luke
I found it on filefront: CoD models and textures list

Posted: March 22nd, 2006, 2:15 pm
by Drofder2004
xmodels folder tbh :P

Posted: March 22nd, 2006, 2:35 pm
by Luke
Drofder2004 wrote:xmodels folder tbh :P
This list shows pictures of them tho. good thing to have :wink:

Posted: March 22nd, 2006, 4:14 pm
by Drofder2004
Luke wrote:
Drofder2004 wrote:xmodels folder tbh :P
This list shows pictures of them tho. good thing to have :wink:
I got em, I just dont use them. The things I use are easy to find anyway :P

Posted: March 22nd, 2006, 9:51 pm
by Soviet
alright thanks, ill check it when i get home from school

Posted: March 23rd, 2006, 3:27 am
by Soviet
yep, it works great, thanks luke.

I've got a trapdoor opening by rotation at one end in my map. I made a brush for the door, an 8x8xsomewhere around 128 along the side and made it origin texture. Then i selected both and made them a script brush_model and named them trapdoor. then i made a button with trigger texture, and made targetname trapdoor_trigger. Then i proceeded to create a .gsc file which is as follows below:

Code: Select all

main()
{
trapdoor();

}

trapdoor()

{

//get all parts of the trapdoor

door = getent ("trapdoor","targetname"); //the door it self with the origin 
door_trigger = getent ("trapdoor_trigger","targetname"); // a trigger use to activte the door

//now lets make it move 

while(1)

	{
	door_trigger waittill ("trigger"); 
	door rotateto (110,1.5,0.5,0);	//  you can change values here to make it go open slower or faster or rotate further

	wait 4; // door waits 4 seconds then moves back

	door rotateto (-110,1.5,0.5,0); //firt value needs to be the opposit of the value in the irst rotate
	door waittill ("rotatedone");
	
	level thread trapdoor(); //so you can do it all over again
	}
}
then i added the command of recognition in my main .gsc file, compiled and put the map in my .pk3. When i go to test it i press the button and nothing happens though. Any suggestions on what i am doing wrong?

Posted: March 23rd, 2006, 3:59 am
by Nightmare
is the trigger correctly named?