i have problem with script mover my ski lift isnt going up and down just engines what should make it going this engines ar like circles and this crcles are making round from 1 edge of map to another…
problem wth script mover
Zipp3R_PL
(Zipp3R|PL)
#1
grizzlybear
(grizzlybear)
#2
???mmmmm…
if you want it to move all the time the map is running then use the spawn function to trigger the start of the script
ski_lift_1
{
spawn
{
wait 500 //need a delay on spawn or map will crash
trigger ski_lift_1 move // start move section
}
trigger move
{
gotomarker corner_1 50 wait
faceangles 0 0 90 gototime
gotomarker corner_2 50 wait
faceangles 0 0 180 gototime
gotomarker corner_3 50 wait
faceangles 0 0 270 gototime
gotomarker corner_4 50 wait
faceangles 0 0 0 gototime
trigger ski_lift_1 move // start the script again
}
}
hope this helps 
not to sure what engines are ???