Jump to content

oPIXz

Members
  • Posts

    56
  • Joined

  • Last visited

Everything posted by oPIXz

  1. local Rank = exports["race"]:getPlayerRank(player) هل هو صحيح بس سيرفر؟
  2. السلام عليكم شباب فالكود هذا أبي الرانك حق اللاعب يطلع بعد النك بس مو راضي ؟ if localPlayerDistance == g_TotalDistance then return end local fontColor = getColor("font2") local backgroundColor = getColor("background2") local width, height = guiGetScreenSize() dxDrawRectangle(x - 10,localPlayerLevel,21,2,fontColor) if showLocalPlayer then local textWidth = dxGetTextWidth(localPlayerName,fontScale,font) local leftX = x - textWidth - 25 local topY = localPlayerLevel - fontHeight / 2 local Rank = exports["race"]:getPlayerRank(player) drawText(localPlayerName .."*" ..Rank,leftX,topY,fontColor,backgroundColor) كيف أخليه يعطيني الرانك ؟؟ الكود مو كامل بس المشكلة هنا بدون أضافة الرانك يشتغل %100
  3. oPIXz

    DM server.

    race_client.lua this line ranknum = dxText:create('1', screenWidth - 60, screenHeight - 95, false, 'bankgothic', 2, 'right'), ranksuffix = dxText:create('st', screenWidth - 40, screenHeight - 86, false, 'bankgothic', 1), remove this 2 dxtext
  4. dm maps has [DM] in the full name my race maps has [RC] in the full name
  5. Hi guys, function startNextMapVote() exports.votemanager:stopPoll() if maybeApplyForcedNextMap() then return end local compatibleMaps = exports.mapmanager:getMapsCompatibleWithGamemode(getThisResource()) if #compatibleMaps > 9 then math.randomseed(getTickCount()) repeat table.remove(compatibleMaps, math.random(1, #compatibleMaps)) until #compatibleMaps == 9 elseif #compatibleMaps < 2 then return false, errorCode.onlyOneCompatibleMap end for i,map in ipairs(compatibleMaps) do local swapWith = math.random(1, #compatibleMaps) local temp = compatibleMaps[i] compatibleMaps[i] = compatibleMaps[swapWith] compatibleMaps[swapWith] = temp end local poll = { title="Choose the next map:", visibleTo=getRootElement(), percentage=51, timeout=15, allowchange=true; } for index, map in ipairs(compatibleMaps) do local mapName = getResourceInfo(map, "name") or getResourceName(map) table.insert(poll, {mapName, 'nextMapVoteResult', getRootElement(), map}) end local currentMap = exports.mapmanager:getRunningGamemodeMap() if currentMap then table.insert(poll, {"Play again", 'nextMapVoteResult', getRootElement(), currentMap}) end This code to start vote for next map when map ended in race gm How i can change it to be like this example? E.g : http://www.m5zn.com/newuploads/2013/09/ ... 6ba140.png ?
  6. معقوله مافيه احد؟
  7. function startNextMapVote() exports.votemanager:stopPoll() -- Handle forced nextmap setting if maybeApplyForcedNextMap() then return end -- Get all maps local compatibleMaps = exports.mapmanager:getMapsCompatibleWithGamemode(getThisResource()) -- limit it to eight random maps if #compatibleMaps > 8 then math.randomseed(getTickCount()) repeat table.remove(compatibleMaps, math.random(1, #compatibleMaps)) until #compatibleMaps == 8 elseif #compatibleMaps < 2 then return false, errorCode.onlyOneCompatibleMap end -- mix up the list order for i,map in ipairs(compatibleMaps) do local swapWith = math.random(1, #compatibleMaps) local temp = compatibleMaps[i] compatibleMaps[i] = compatibleMaps[swapWith] compatibleMaps[swapWith] = temp end local poll = { title="Choose the next map:", visibleTo=getRootElement(), percentage=51, timeout=15, allowchange=true; } for index, map in ipairs(compatibleMaps) do local mapName = getResourceInfo(map, "name") or getResourceName(map) table.insert(poll, {mapName, 'nextMapVoteResult', getRootElement(), map}) end local currentMap = exports.mapmanager:getRunningGamemodeMap() if currentMap then table.insert(poll, {"Play again", 'nextMapVoteResult', getRootElement(), currentMap}) end edit : انت مافهمت شوف الصورة توضيح http://www.m5zn.com/newuploads/2013/09/ ... 6ba140.png
  8. السلام عليكم شباب ابي اسوي فكرة اتمنى احد يساعدني فيها ابي اعدل على قيم مود الريس , اذا انتهى الماب يشتغل التصويت قسمين قسم مابات ريس عاديه وقسم مابات ريس دي ام ( ديث ماتش ) يعني من 1-6 مابات ريس و 4 مابات دي ام حاولت اعدل بملف racevote_server بس خرب القيم مود ياليت احد يساعدني واللي بيرد يقول رح للويكي لا يرد لاهنتم لكل شخص ميول للغة وشي معين لا تجبر غيرك 10% فالبرمجة يعني تعديلات بسيطة والباقي مافهم منه ابي توضيح كيف اعدل عالملف ويطلع مقسم racevote_server
×
×
  • Create New...