PoweRPW Posted June 23, 2011 Share Posted June 23, 2011 ola pessoal nao intendo gringo e nao consegui achar o script pra colokar musica no mapa auguem pode me passar e me dar um breve tuto de como colokar ?? vlw Link to comment
diegofkda Posted June 25, 2011 Share Posted June 25, 2011 Oi! O script correto é: Cria 2 arquivos: client.lua function playAudio() playSound ( "song.mp3" ) end addEventHandler ( "onClientResourceStart", resourceRoot, playAudio ) meta.xml <meta> <file src="song.mp3" /> <script src="client.lua" type="client" /> </meta> Vc tem que renomear o arquivo de musica song.mp3 Link to comment
PoweRPW Posted June 25, 2011 Author Share Posted June 25, 2011 hmm obrigado esse problema ja foi resolvido mais poderia me diser agora como eu coloko textura em serto objeto ?? obrigado. Link to comment
diegofkda Posted June 25, 2011 Share Posted June 25, 2011 Este problema é muito mais complexa, você sabe que é um arquivo TXD? Link to comment
PoweRPW Posted June 26, 2011 Author Share Posted June 26, 2011 sim sim eu sei inclusive ja editei o arquivo .txd do objeto que eu quero mais nao sei colokar no mapa pode me ajudar ?? Link to comment
diegofkda Posted June 27, 2011 Share Posted June 27, 2011 txd.lua txd = engineLoadTXD ( "data/euros.txd" ) engineImportTXD ( txd, 587 ) --VC TEM Q PONER É ID DO OBJETO!!! meta.xml <meta> <script src="client.lua" type="client" /> <file src="txdarquivo.txd" /> </meta> Link to comment
FatalTerror Posted August 1, 2011 Share Posted August 1, 2011 Eh melhor de fazer un codigo mais limpo addEventHandler("onClientResourceStart", getResourceRootElement(getThisResource()), function() txd = engineLoadTXD ( "texture.txd" ) engineImportTXD ( txd, 500 ) -- O id do seu objeto end) Asim e melhor ... 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