VDMap
Neuankömmling
schon wieder ich...:-D
kann mir jemand sagen wie man den dwemer lever sich nur einmal bewegen lässt..., komm nich drauf..,
also einmal beim activaten und einmal wieder in die ausgangsstellung, wenn auch die bars wieder zurück fahren?
DANKE
kann mir jemand sagen wie man den dwemer lever sich nur einmal bewegen lässt..., komm nich drauf..,
also einmal beim activaten und einmal wieder in die ausgangsstellung, wenn auch die bars wieder zurück fahren?
Code:
begin _vdm_tomb_bars_lever
;this one moves the tomb metalbars aside.
;VDM TOMB LEVER
short State
float timer
if ( MenuMode == 1 )
return
endif
if ( OnActivate == 1 )
if ( "_vdm_tomb_bars" == 0 )
MessageBox, "You pull the lever and the metalbars nearby moves away."
PlaySound "Door Stone Open"
set State to 10
endif
endif
if ( State >= 10 )
set timer to ( timer + GetSecondsPassed )
if ( timer < 5 )
"_vdm_metal_bars_01"->MoveWorld y 78
playgroup "idle2"
elseif ( timer > 15 )
"_vdm_metal_bars_01"->SetAtStart
set State to 0
set timer to 0
elseif ( timer > 10 )
"_vdm_metal_bars_01"->MoveWorld y -78
playgroup "idle3"
endif
endif
End
DANKE