Jump to content

x[ طلب ]x طلب كود تغير الماب تلقائي


Recommended Posts

كـ مثال :

addCommandHandler ( 'newMap', function () 
    if #getDeadPlayers() == getPlayerCount() then 
        -- etc. 
    end 
end) 

وانت مثلا سوي جدول لأسماء المابات وخليه يشتغل ماب عشوائي اذا تبي زي كذا .

Link to comment

ولكمو Mr.Sha67

--

--

شف اخي انا مأعرف في الجداول بس حاولت وشف ذا صح او غلط؟

Map1 = { 
    Note = {} 
} 
Map1  = { 
    Map1  = {} 
} 
Map16  = {} 
Map16 = { 
    Map16 = {} 
} 
Map19 = { 
    Map19 = {} 
} 
Map90 = { 
    Map90 = {} 
} 
Map191 = { 
    Map191 = {} 
} 
Map166 = { 
    Map166 = {} 
} 

Link to comment

حط اسم الماب اللي تبيه مثلاً كذا :

اذا تبيه بالترتيب :

local Maps, count = { 'Fallout', 'Hay', 'play', 'deathmtach' }, {} 
  
addCommandHandler ( 'newMap', function ( plr ) 
    if #getDeadPlayers() == getPlayerCount() then 
        if not count [ plr ] then count [ plr ] = 0; end 
            if count [ plr ] == #Maps then count [ plr ] = 0; end 
                count [ plr ] = count [ plr ] + 1 
                    local r = Maps [ count [ plr ] ] 
                        outputChatBox ( r, plr ) 
    end 
end) 

اما اذا تبيه عشوائي :

local Maps = { 'Fallout', 'Hay', 'play', 'deathmtach' }  
  
addCommandHandler ( 'newMap', function ( plr ) 
    if #getDeadPlayers() == getPlayerCount() then 
        local r = Maps [ math.random ( #Maps )] 
            outputChatBox ( r, plr ) 
    end 
end) 
Link to comment

ما ظبط؟ ---

    local Maps = { 'Fallout', 'Hay', 'play', 'deathmtach' } 
      
    addCommandHandler ( 'newMap', function ( plr ) 
        if #getDeadPlayers() == getPlayerCount() then 
            local r = Maps [ math.random ( #Maps )] 
                outputChatBox ( r, plr ) 
        end 
    end) 

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

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