Sziasztok elkészítettem a 10. saját alkotásomat!
Igaz nem nagy dolog az elkészítése összesen 10 percet vett igénybe!
meta fájl:
<meta>
<info author=\"ηαte\" type=\"script\" description=\"Csatlakozás zene\"/>
<script src=\"c_csatlakozas.lua\" type=\"client\"/>
</meta>
lua fájl:
Urlz = {
\"http://weboldalad.hu/zene.mp3\",
\"http://weboldalad.hu/zene.mp3\",
\"http://weboldalad.hu/zene2.mp3\",
}
function randomcsatlakozaszene()
if ( Urlz and #Urlz ~= 0 ) then
local randomUrl = Urlz[math.random(#Urlz)]
if tostring(randomUrl) then
theURL = playSound(tostring(randomUrl))
end
end
end
addEventHandler(\"onClientResourceStart\",resourceRoot,randomcsatlakozaszene)