Jump to content

marker nao reinicia do trabalho


Recommended Posts

dou /trabalhar e vou ate  o local do marker de trabalho digito /soldar ele funciona tudo mais quando eu dou

function Soldadortrabalhar ( source, cmd )
if not isElementWithinMarker(source, Markersoldador) then return end
if getElementData(source, "soldador", true) then
outputChatBox("#00FA9AVoçe ja esta trabalhando",source,255,255,255,true)
else
outputChatBox("#00FA9AVoçe iniciou o trabalho de soldador",source,255,255,255,true)
setElementData(source, "soldador", true)
setPedSkin(source, 45)

setElementVisibleTo(criartrampo, source, true)
setElementVisibleTo(criartrampo2, source, true)
	
                   setTimer( function ()
                        triggerEvent(eventorestart, root)
                end, 1000, 1)
				 end 
				  end

addCommandHandler("trabalhar", Soldadortrabalhar)



function Sair ( source )
	if getElementData(source, "soldador") == true then
		setElementData(source, "soldador", false)
		setPedSkin(source, 0)
		
setElementVisibleTo(criartrampo, source, false)
setElementVisibleTo(criartrampo2, source, false)
		outputChatBox("#00FA9AVoce saiu do emprego de soldador",source,255,255,255,true)
	else
		setTimer( function ()
			triggerEvent(eventorestart, root)
		end, 1000, 1)
	end 
end
addCommandHandler("sairemprego", Sair)

/sairemprego nao consigo iniciar novamente /trabalhar pois ele nao apareçe marker mais

Link to comment

Eu testei e funcionou corretamente. Aponte onde está o erro com uma print.


function Soldadortrabalhar ( source, cmd )
	if isElementWithinMarker(source, Markersoldador) then 
		if getElementData(source, "soldador") == true then
			outputChatBox("#00FA9AVoçe ja esta trabalhando",source,255,255,255,true)
		else
			setPedSkin(source, 45)
			setElementData(source, "soldador", true)
			setElementVisibleTo(criartrampo, source, true)
			setElementVisibleTo(criartrampo2, source, true)
			outputChatBox("#00FA9AVoçe iniciou o trabalho de soldador",source,255,255,255,true)
            setTimer( function ()
               -- triggerEvent(eventorestart, root)
			end, 1000, 1)
		end
	end 
end
addCommandHandler("trabalhar", Soldadortrabalhar)

function Sair (source)
	if getElementData(source, "soldador") == true then
		setPedSkin(source, 0)	
		setElementData(source, "soldador", false)
		setElementVisibleTo(criartrampo, source, false)
		setElementVisibleTo(criartrampo2, source, false)
		outputChatBox("#00FA9AVoce saiu do emprego de soldador",source,255,255,255,true)
	else
		setTimer( function ()
			--triggerEvent(eventorestart, root)
		end, 1000, 1)
	end 
end
addCommandHandler("sairemprego", Sair)


Código mais fácil para você ler '=

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...