BATLESHIP Posted July 3, 2012 Share Posted July 3, 2012 Bueno tengo esto: function onstartup () gate = createObject ( 3885, -1498.2347412109, 805.29083251953, 5.7079048156738, 0, 0, 74.915008544922) end addEventHandler ( "onResourceStart", getRootElement(), onstartup ) function move () moveObject ( gate, 2200, -1497.6064453125, 805.119140625, 50.178058624268) end addCommandHandler("1", move) function move () moveObject ( gate, 2450, -1498.2347412109, 805.29083251953, 5.7079048156738) end addCommandHandler("2", move) pero no sé ke es lo que esta subrayado , cuando le pongo un numero me manda el elevador al mar super rapido Porfavor Ayuda Donde dice : gate , 2200 y gate , 2450 Link to comment
Jaysds1 Posted July 4, 2012 Share Posted July 4, 2012 Those are both triggering the same function, try this: function onstartup () gate = createObject ( 3885, -1498.2347412109, 805.29083251953, 5.7079048156738, 0, 0, 74.915008544922) end addEventHandler ( "onResourceStart", getRootElement(), onstartup ) function move(_,cmd) if cmd=="1" then moveObject ( gate, 2200, -1497.6064453125, 805.119140625, 50.178058624268) elseif cmd=="2" then moveObject ( gate, 2450, -1498.2347412109, 805.29083251953, 5.7079048156738) end end addCommandHandler("1", move) addCommandHandler("2", move) Link to comment
BATLESHIP Posted July 4, 2012 Author Share Posted July 4, 2012 the problem is: this number is? ----------▼ (2200) ( gate, 2200, -1497.6064453125, 805.119140625, 50.178058624268) this number is? -----------▼ ( gate, 2450, -1498.2347412109, 805.29083251953, 5.7079048156738) time? , Height? , or what is? please help Link to comment
Alexs Posted July 4, 2012 Share Posted July 4, 2012 Les aviso, si quieren hablar en ingles, se equivocaron de subforo Link to comment
Jaysds1 Posted July 5, 2012 Share Posted July 5, 2012 the problem is:this number is? ----------▼ (2200) ( gate, 2200, -1497.6064453125, 805.119140625, 50.178058624268) this number is? -----------▼ ( gate, 2450, -1498.2347412109, 805.29083251953, 5.7079048156738) time? , Height? , or what is? please help That's the time. Link to comment
Recommended Posts