ironKazer Posted April 30, 2015 Share Posted April 30, 2015 Bueno tengo un error en mi guión: addEventHandler( "onMarkerHit", marcadorTiendaDeVehiculos, function () if (marcadorTiendaDeVehiculosActivo == true) then triggerClientEvent ( "chocoElMarcadorTiendaVeh", playerSource); marcadorTiendaDeVehiculosActivo = false ; end end ); En el cmd me sale lo siguiente: tVeh_sv.lua:8: Bad argument@ 'triggerClientEvent' [Expected element at argument 2, got nil] Por favor quiero saber que es lo que estoy haciendo mal. Gracias Link to comment
Tomas Posted April 30, 2015 Share Posted April 30, 2015 No definiste playerSource addEventHandler( "onMarkerHit", marcadorTiendaDeVehiculos, function (playerSource) if (marcadorTiendaDeVehiculosActivo == true) then triggerClientEvent ( "chocoElMarcadorTiendaVeh", playerSource); marcadorTiendaDeVehiculosActivo = false ; end end ); Link to comment
Recommended Posts