Jump to content
Mr. Green Gaming

Harha's Maps


Harha

Recommended Posts

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-nightmare

nightmareg.th.png

Uploaded with ImageShack.us

Info: Dark themed map with dark music track. 32 Checkpoints.

Size: 2,76Mb

Map #2: race-samara

samara.th.png

Uploaded with ImageShack.us

Info: Dark themed map with dark music track. 65 Checkpoints. Pretty hard but not impossible jumps @ the end.

Size: 5,47Mb

race-nightmare.rar

race-samara.zip

Edited by Harha
Link to comment

Nice map, uploaded

Your 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")
end

function makeRadioStayOff()
setRadioChannel(0)
cancelEvent()
end

function 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)
end
end

addEventHandler("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 by BinSlayer
Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

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