Page 1 of 1

elevator model..

Posted: June 26th, 2006, 1:38 pm
by ownager
whats the moddel name of the elevator switch
or any switch
like the map made by luke:
ultra_gap_training
if its no model just tell me and how to make it

-----------------------------
found out why could not log in...
firefox did not let me log in so using internet explore again.

Posted: June 26th, 2006, 5:13 pm
by Drofder2004
Must be your firefox settings, delete your cookies/cache

----

I'm not 100% sure but a guess is...
xmodel/switch_objective_incomplete (Handle is up)
xmodel/switch_objective_complete (Handle is down)

If you want to make a working switch, create a trigger use and give it a targetname of trigger (or whatever)
And use "Script_model" (not misc_model). give the script_model a targetname of switch.

Code: Select all

main()
{
precacheModel("xmodel/switch_objective_complete");
precacheModel("xmodel/switch_objective_incomplete");
thread switch();
}

switch()
{
trig = getent("trigger","targetname");
switch = getent("switch","targetname");

while(1)
{
trigger waittill("trigger");
switch setModel ("xmodel/switch_objective_complete");
// Elevator or whatever you want to do with switch being on.

trigger waittill("trigger");
switch setModel ("xmodel/switch_objective_incomplete");
// Script for what you want to happen when switch is off.
}
}

Posted: June 26th, 2006, 5:21 pm
by bigboobs
well i am usless for Mapin i am just pro jumper :P

Posted: June 26th, 2006, 8:44 pm
by disciple1990
I use this mate, tells you how to make a elevator from scratch :wink:

http://www.modsonline.com/Tutorials-read-169.html

Posted: June 26th, 2006, 10:03 pm
by Guest
[quote="

----


If you want to make a working switch, create a trigger use and give it a targetname of trigger (or whatever)
And use "Script_model" (not misc_model). give the script_model a targetname of switch.

}
}
[/code][/quote]

u said make a trigger use and give it a targetname of trigger
and the script_model a targetname of switch
but what script_model?
the
xmodel/switch_objective_complete
xmodel/switch_objective_incomplete
?
or something else?

Posted: June 26th, 2006, 11:23 pm
by Drofder2004
Up to you.

Probably best to have it set to incomplete.