Harha Posted January 26, 2011 Share Posted January 26, 2011 (edited) Well I've played alot MTA on the Mr Green servers lately and now I started mapping race maps for fun.So I currently have only 1 map finished but I will probably make more and update this thread with the maps as they get finished.Map #1: race-nightmareUploaded with ImageShack.usInfo: Dark themed map with dark music track. 32 Checkpoints.Size: 2,76MbMap #2: race-samaraUploaded with ImageShack.usInfo: Dark themed map with dark music track. 65 Checkpoints. Pretty hard but not impossible jumps @ the end.Size: 5,47Mbrace-nightmare.rarrace-samara.zip Edited January 27, 2011 by Harha Quote Link to comment
BinSlayer Posted January 26, 2011 Share Posted January 26, 2011 (edited) Nice map, uploadedYour archive must be *.zip (not .rar) and inside the zip archive there should only be the map files (not another folder)From now on, use this script for music maps:function startMusic() setRadioChannel(0) song = playSound("music.mp3",true) outputChatBox("Toggle music on/off using M")endfunction makeRadioStayOff() setRadioChannel(0) cancelEvent()endfunction toggleSong() if not songOff then setSoundVolume(song,0) songOff = true removeEventHandler("onClientPlayerRadioSwitch",getRootElement(),makeRadioStayOff) else setSoundVolume(song,1) songOff = false setRadioChannel(0) addEventHandler("onClientPlayerRadioSwitch",getRootElement(),makeRadioStayOff) endendaddEventHandler("onClientResourceStart",getResourceRootElement(getThisResource()),startMusic)addEventHandler("onClientPlayerRadioSwitch",getRootElement(),makeRadioStayOff)addEventHandler("onClientPlayerVehicleEnter",getRootElement(),makeRadioStayOff)addCommandHandler("mkmap1_racetheme",toggleSong)bindKey("m","down","mkmap1_racetheme")Follow the above for your future maps as I've already fixed your current map Edited January 26, 2011 by BinSlayer Quote Link to comment
Harha Posted January 26, 2011 Author Share Posted January 26, 2011 Thanks, will do! I couldn't find a proper .lua script for playing mp3's so I had to make it myself... Quote Link to comment
Harha Posted January 27, 2011 Author Share Posted January 27, 2011 Added 1 new map! Download link and info in the first post. Quote Link to comment
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.