Jump to page content
English English   Polish Polish   Dutch Dutch   Russian Russian   German German   Hungarian Hungarian   Norwegian Norwegian   Swedish Swedish   Finnish Finnish   Romanian Romanian   Spanish Spanish   Portuguese Portuguese   Latvian Latvian  
Homepage
Home
Register
Login

Resources
Forum
Wiki
Servers

rssmwrpanel

Category:script
Author(s):yusufix
Downloads:292
Rate:You need to be logged in to vote
Rating:3 (2 Votes)
Description:
Race Rank, Stats, Scores and Winning Streak System

Add Your Acl.xml in admin Group

Race Rank, Stats, Scores and Winning Streak System

### players need Login ####

F3 Show Cursor

Toptime 1 Sound

Winning streak Sounds

Store

[MWR]Mim

Fixed Any errors

you need FOR BUY NEXT MAP

mods\deathmatch\resources\[gamemodes]\[race]

in race.zip

racevoting_server.lua

add this line


addCommandHandler('mapSatinAl',
function( player, command, ... )
local query = #{...}>0 and table.concat({...},' ') or nil
if not query then
if g_ForcedNextMap then
outputRace( 'Next map is ' .. getMapName( g_ForcedNextMap ), player )
else
outputRace( 'Next map is not set', player )
end
return
end
local map, errormsg = findMap( query )
if not map then
outputRace( errormsg, player )
return
end
if g_ForcedNextMap == map then
outputRace( 'Next map is already set to ' .. getMapName( g_ForcedNextMap ), player )
return
end
g_ForcedNextMap = map
outputChatBox('['..getPlayerName( player )..'] Next Map Set to : ' .. getMapName( g_ForcedNextMap ), g_Root, 255,127,36)
end
)

addCommandHandler('nextmap',
function( player, command, ... )
local query = #{...}>0 and table.concat({...},' ') or nil
if not query then
if g_ForcedNextMap then
outputRace( 'Next map is ' .. getMapName( g_ForcedNextMap ), player )
else
outputRace( 'Next map is not set', player )
end
return
end
if not _TESTING and not isPlayerInACLGroup(player, g_GameOptions.admingroup) then
return
end
local map, errormsg = findMap( query )
if not map then
outputRace( errormsg, player )
return
end
if g_ForcedNextMap == map then
outputRace( 'Next map is already set to ' .. getMapName( g_ForcedNextMap ), player )
return
end
g_ForcedNextMap = map
outputChatBox('Next map set to ' .. getMapName( g_ForcedNextMap ) .. ' by ' .. getPlayerName( player ), g_Root, 0, 240, 0)
end
)
...

(more)

Download latest version | Report

Version history

Version Publish Date Changes
2.0.0 2016-04-14 17:07:30 store tab added
buy somthings

and any errors fixed

symbols
Download
1.0.0 2015-11-05 19:55:53 First public release Download