magicplayerc Posted February 12, 2019 Share Posted February 12, 2019 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
#DaNiLiN Posted February 12, 2019 Share Posted February 12, 2019 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
Tommy. Posted February 12, 2019 Share Posted February 12, 2019 (edited) Aparentemente o seu código está tudo certo, da algum erro no /debugscript 3 ? Crie apenas um tópico com o mesmo assunto! Edited February 12, 2019 by Tommy. Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now