NodZen Posted May 7, 2012 Share Posted May 7, 2012 Hola amigos , necesito de sus conocimientos para este script que no funciona. Bueno la idea era bloquear el "rhino" para el team "sobreviviente" pero a la hora de correrlo no cumple su ffuncion.. function rhinolock ( player, seat, jacked ) local equipo = getPlayerTeam ( source ) if (equipo ~= "Sobreviviente" )then cancelEvent() outputChatBox ( "Debes estar Vivo para Conducir", player ) end end addEventHandler ( "onVehicleStartEnter", getRootElement(), rhinolock ) Puede ser porque algunas palabras esten en español y no en "ingles"??' Nota - Ya intente con un server side , pero nada funciona Link to comment
Alexs Posted May 8, 2012 Share Posted May 8, 2012 function rhinolock ( player, seat, jacked ) local equipo = getPlayerTeam ( player ) if (equipo ~= "Sobreviviente" )then cancelEvent() outputChatBox ( "Debes estar Vivo para Conducir", player ) end end addEventHandler ( "onVehicleStartEnter", getRootElement(), rhinolock ) aunque bloquea todos los autos no solo un rhino, el problema era que el source de este evento es el vehiculo y no el jugador, prueba asi... Link to comment
Edikosh998 Posted May 8, 2012 Share Posted May 8, 2012 Va a seguir estando mal porque el getPlayerTeam devuelve un valor "TEAM" y no un valor "STRING" function rhinolock ( player, seat, jacked ) local equipo = getPlayerTeam ( player ) local equipoNombre = getTeamName(equipo) if (equipoNombre ~= "Sobreviviente" )then cancelEvent() outputChatBox ( "Debes estar Vivo para Conducir", player ) end end addEventHandler ( "onVehicleStartEnter", getRootElement(), rhinolock ) Link to comment
Recommended Posts