Jump to content

تحدي للمبرمجين (الفائز :الوحش + احمد فيف)ـ


7up2016

Recommended Posts

  • Replies 81
  • Created
  • Last Reply

Top Posters In This Topic

جرب انا مبتدأ والله ض
local spawnpoint 
  
  
  
addEventHandler("onResourceStart", resourceRoot, 
  
    function() 
  
        spawnpoint = getRandomSpawnPoint() 
  
        resetMapInfo() 
  
        for i,player in ipairs(getElementsByType("player")) do 
  
            spawn(player) 
  
        end 
  
    end 
  
) 
  
  
  
function spawn(player) 
  
    if not isElement(player) then return end 
  
    if get("spawnreset") == "onSpawn" then 
  
        spawnpoint = getRandomSpawnPoint() 
  
    end 
  
    exports.spawnmanager:spawnPlayerAtSpawnpoint(player,spawnpoint,false) 
  
    repeat until setElementModel(player,SkinID) 
  
    fadeCamera(player, true) 
  
    setCameraTarget(player, player) 
  
    showChat(player, true) 
  
end 
  
  
  
function getRandomSpawnPoint () 
  
    local spawnpoints = getElementsByType("spawnpoint") 
  
    return spawnpoints[math.random(1,#spawnpoints)] 
  
end 
  
  
  
addEventHandler("onPlayerJoin", root, 
  
    function() 
  
        spawn(source) 
  
    end 
  
) 
  
  
  
addEventHandler("onPlayerQuit",root, 
  
    function () 
  
        if getPlayerCount() == 1 and get("spawnreset") == "onServerEmpty" then 
  
            spawnpoint = getRandomSpawnPoint() 
  
        end 
  
    end 
  
) 
  
  
  
addEventHandler("onPlayerWasted", root, 
  
    function() 
  
        setTimer(spawn, 1800, 1, source) 
  
    end 
  
) 
  
  
  

شوف هاد مانفع بحاول اجرب اشياء غدآ ان شاء الله

قاعد تنسخ من الفري روم :lol:

فري روم ؟ هاد حق مستر برستيج الكود دة

Link to comment

https://wiki.multitheftauto.com/wiki/CreatePed

Issues :

Issue ID Description

#7970 Peds with weapons malfunction due to weird totalAmmo and ammoInClip values

#7371 Network troubled players can ruin ped sync

#6048 Ped weapon isn't synced on join

#5113 setPedControlState doesn't work on the control "enter_exit"

#6287 Sync distance of unoccupied vehicles and peds should match stream distance

#8790 Using setElementHealth on a dead ped makes it invincible

#5725 Ped fireing Projectiles doesn't work

#4921 Improve ped synchronization

#5840 ped position not synced to server after falling through the ground

#6682 Server doesnt update ped position after warping it to vehicle

#6506 Ped animation is only visible if it was set while player was in stream distance from source ped

#4596 Serverside peds have their animations not applied for joining players

#4504 Peds shooting incorrectly

#4008 Can't use giveWeapon() directly after createPed()

والقائمة تطول

:lol::mrgreen:

Link to comment
جرب انا مبتدأ والله ض
local spawnpoint 
  
  
  
addEventHandler("onResourceStart", resourceRoot, 
  
    function() 
  
        spawnpoint = getRandomSpawnPoint() 
  
        resetMapInfo() 
  
        for i,player in ipairs(getElementsByType("player")) do 
  
            spawn(player) 
  
        end 
  
    end 
  
) 
  
  
  
function spawn(player) 
  
    if not isElement(player) then return end 
  
    if get("spawnreset") == "onSpawn" then 
  
        spawnpoint = getRandomSpawnPoint() 
  
    end 
  
    exports.spawnmanager:spawnPlayerAtSpawnpoint(player,spawnpoint,false) 
  
    repeat until setElementModel(player,SkinID) 
  
    fadeCamera(player, true) 
  
    setCameraTarget(player, player) 
  
    showChat(player, true) 
  
end 
  
  
  
function getRandomSpawnPoint () 
  
    local spawnpoints = getElementsByType("spawnpoint") 
  
    return spawnpoints[math.random(1,#spawnpoints)] 
  
end 
  
  
  
addEventHandler("onPlayerJoin", root, 
  
    function() 
  
        spawn(source) 
  
    end 
  
) 
  
  
  
addEventHandler("onPlayerQuit",root, 
  
    function () 
  
        if getPlayerCount() == 1 and get("spawnreset") == "onServerEmpty" then 
  
            spawnpoint = getRandomSpawnPoint() 
  
        end 
  
    end 
  
) 
  
  
  
addEventHandler("onPlayerWasted", root, 
  
    function() 
  
        setTimer(spawn, 1800, 1, source) 
  
    end 
  
) 
  
  
  

شوف هاد مانفع بحاول اجرب اشياء غدآ ان شاء الله

قاعد تنسخ من الفري روم :lol:

فري روم ؟ هاد حق مستر برستيج الكود دة

وش دخل السباون ولما اللاعب يدخل ويخرج ويموت والماب :|

يعني تنسخ وتلصق وانت مو فاهم الموضوع والكود -_-

Link to comment
function consoleSetFightingStyle ( thePlayer, commandName, id ) 
    if thePlayer and id then                                                      
        local status = setPedFightingStyle ( thePlayer, tonumber(id) )        
        if not status then                                                    
            outputConsole ( "Failed to set fighting style.", thePlayer )  
        end 
    end 
end 
addCommandHandler ( "5",  consoleSetFightingStyle ) 

يااااااااااااااااااااااااااارب انجح

Link to comment
function consoleSetFightingStyle ( thePlayer, commandName, id ) 
    if thePlayer and id then                                                      
        local status = setPedFightingStyle ( thePlayer, tonumber(id) )        
        if not status then                                                    
            outputConsole ( "Failed to set fighting style.", thePlayer )  
        end 
    end 
end 
addCommandHandler ( "5",  consoleSetFightingStyle ) 

يااااااااااااااااااااااااااارب انجح

وش بك ناسخ مثال الويكي -_-

Link to comment
function consoleSetFightingStyle ( thePlayer, commandName, id ) 
    if thePlayer and id then                                                      
        local status = setPedFightingStyle ( thePlayer, tonumber(id) )        
        if not status then                                                    
            outputConsole ( "Failed to set fighting style.", thePlayer )  
        end 
    end 
end 
addCommandHandler ( "5",  consoleSetFightingStyle ) 

يااااااااااااااااااااااااااارب انجح

لا تنسخ وتلصق من امثلة الويكي :lol:

Link to comment
function consoleSetFightingStyle ( thePlayer, commandName, id ) 
    if thePlayer and id then                                                      
        local status = setPedFightingStyle ( thePlayer, tonumber(id) )        
        if not status then                                                    
            outputConsole ( "Failed to set fighting style.", thePlayer )  
        end 
    end 
end 
addCommandHandler ( "5",  consoleSetFightingStyle ) 

يااااااااااااااااااااااااااارب انجح

لا تنسخ وتلصق من امثلة الويكي :lol:

function consoleSetFightingStyle ( thePlayer, commandName, id ) 
    if thePlayer and id then                                                      
        local status = setPedFightingStyle ( thePlayer, tonumber(id) )        
        if not status then                                                    
            outputConsole ( "Failed to set fighting style.", thePlayer )  
        end 
    end 
end 
addCommandHandler ( "5",  consoleSetFightingStyle ) 

يااااااااااااااااااااااااااارب انجح

لا تنسخ وتلصق من امثلة الويكي :lol:

مم الويكي مو من مودات غيرنا :redhotevil:

Link to comment
هي ممكن تتفعل بالطريقة دي

onPlayerJoin

setPedFightingStyle

انت وحسب ابداعك ابدع يامبدع ض

وش دخل افنت اللاعب لما يدخل ؟

بالله لا تخبص

اذا تبي تساعد ساعد ماتبي خلاص اسكت وراقب ما اعرف وش الناس الى تحشر انفها في كل شي -_-"

Link to comment
هي ممكن تتفعل بالطريقة دي

onPlayerJoin

setPedFightingStyle

انت وحسب ابداعك ابدع يامبدع ض

وش دخل افنت اللاعب لما يدخل ؟

بالله لا تخبص

اذا تبي تساعد ساعد ماتبي خلاص اسكت وراقب ما اعرف وش الناس الى تحشر انفها في كل شي -_-"

قاعد تسخر من ادهم انه نسخ من الويكي ؟ اذا وش فايدة الويكي ؟

علي الاقل ما ينسخ مثل ناس تنسخ الكود وما تعرف وش بيسوي

علي الاقل احذف resetMapInfo من كودك مشان ما يبين انك ناسخ ولاصق :lol:

(سترونق علمتني القصف القوي :D )

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