Jump to content

موضوع للجميع انا زهقت قسسم


Recommended Posts

  • Replies 369
  • Created
  • Last Reply

Top Posters In This Topic

function  
someguy = getPlayerFromName ( "someGuy" ) 
if source == GUIEditor.button[1] then 
   outputChatBox ( "It seems Someguy can't speak." ) 
end 
setPlayerMuted(victim, true) 
if source == GUIEditor.button[2] then 
local victim = getPlayerFromName(victimName) 
if source == GUIEditor.button[2] then 
addEventHandler ( "onResourceStart", getRootElement(), displayLoadedRes ) 

او

function  
  
someguy = getPlayerFromName ( "someGuy" ) 
if source == GUIEditor.button[1] then 
   outputChatBox ( "It seems Someguy can't speak." ) 
end 
    if getElementType(hittingElement) == "vehicle" then 
local gas_left = getElementData(theGasStation, "amount") 
local gas_speed = getElementData(theGasStation, "speed") 
end 
setPlayerMuted(victim, true) 
if source == GUIEditor.button[2] then 
local victim = getPlayerFromName(victimName) 
if source == GUIEditor.button[2] then 
addEventHandler ( "onResourceStart", getRootElement(), displayLoadedRes ) 

Edited by Guest
Link to comment

addEventHandler("onResourceStart",resourceRoot, 
function() 
    for i,v in ipairs(getElementsByType('player')) do 
        if not isPlayerMuted(v) then 
        setPlayerMuted(v,true) 
        if isPlayerMuted(v) then 
        setPlayerMuted(v,false) 
                end 
            end 
        end 
    end 
) 
Link to comment
addEventHandler("onResourceStart",resourceRoot, 
function() 
    for i,v in ipairs(getElementsByType('player')) do 
        if not isPlayerMuted(v) then 
        setPlayerMuted(v,true) 
        if isPlayerMuted(v) then 
        setPlayerMuted(v,false) 
                end 
            end 
        end 
    end 
) 

حقي مرره

غلط

طيب علمني كيف اذا فتحت الويكي

وش اقتبس من الاكواد

Link to comment

روح الويكي,

isPlayerMuted  

Syntax :

bool isPlayerMuted ( player thePlayer ) 

thePlayer = يعني اللاعب هو الي تتحقق منه

وبعدين تروح لـ ,

setPlayerMuted 

Syntax :

bool setPlayerMuted ( player thePlayer, bool state ) 

thePlayer = يعني اللاعب ,

state = الحاله - true or false,

true = تعطيه ميوت,

false = تفك الميوت ,

نشوف اللوب ,

for i,v in ipairs(getElementsByType('player')) do 

انا جبت كل اللاعبين وحطيت لهم قيمه الي هي ( v )

وسويت الشروط الباقيه

Link to comment
روح الويكي,
isPlayerMuted  

Syntax :

bool isPlayerMuted ( player thePlayer ) 

thePlayer = يعني اللاعب هو الي تتحقق منه

وبعدين تروح لـ ,

setPlayerMuted 

Syntax :

bool setPlayerMuted ( player thePlayer, bool state ) 

thePlayer = يعني اللاعب ,

state = الحاله - true or false,

true = تعطيه ميوت,

false = تفك الميوت ,

نشوف اللوب ,

for i,v in ipairs(getElementsByType('player')) do 

انا جبت كل اللاعبين وحطيت لهم قيمه الي هي ( v )

وسويت الشروط الباقيه

فهمت شي كثير منك ماكنت اعرفه جدا :mrgreen:

Link to comment
ابيك تتحقق اذا اللاعبين ماعندهم ميوت وتعطيهم ميوت ,

واذا كان لاعب عنده ميوت تفكه ,

استخدم ,

onResourceStart

getElementsByType 
isPlayerMuted 
setPlayerMuted 

الولد توه جديد في البرمجه وانت معطيه ذا الكود..؟

وبعدين راح يطر يضيفه لقروب له صلاحيات والشاب لسه عنده مشكل مع الافينت و الدمج..

راح يحسب المود خربان اذا جربه بدون لا يضيفه لقروب له الصلاحيات باعطاء ميوت

Edit:

addEventHandler("onResourceStart",resourceRoot, 
function() 
    for i,v in ipairs(getElementsByType('player')) do 
        if not isPlayerMuted(v) then 
        setPlayerMuted(v,true) 
        if isPlayerMuted(v) then 
        setPlayerMuted(v,false) 
                end 
            end 
        end 
    end 
) 

وكودك ناقصه

else 

Edited by Guest
Link to comment
addEventHandler("onPlayerWasted", root, 
    function() 
    setTimer( spawnPlayer, 5000, 1, source, 0, 0, 3 ) 
    outputChatBox(" ") 
    outputChatBox(" ") 
    outputChatBox(" ") 
    outputChatBox(" ") 
    outputChatBox(" ") 
    end 
    ) 

في بعض الاكواد لقطها

ووانا مابغى :oops:

لااني

حطيت

اول شي

كذا

addEventHandler( "onPlayerWasted", getRootElement( ), 

بعدين شفت كود مثل كذا وحطيته

addEventHandler("onPlayerWasted", root, 

Link to comment
كيف يعني

outputChatBox ( "Delayed text: " .. text )

؟

كودك الي فوق صحيح ,

+ root = اختصار لـ - getRootElement()

مثل, localPlayer = اختصار لـ - getLocalPlayer()

+

outputChatBox ( "Delayed text: " .. text ) 

^ هذي وظيفه للشات وما تسوي اي شيء ,

+ المتغير text = مو معرف , يعني بيجيك خطأ بالديبوق ,

Link to comment
addEventHandler("onResourceStart",resourceRoot, 
function() 
    for i,v in ipairs(getElementsByType('player')) do 
        if not isPlayerMuted(v) then 
        setPlayerMuted(v,true) 
        if isPlayerMuted(v) then 
        setPlayerMuted(v,false) 
                end 
            end 
        end 
    end 
) 

كودكـ غلط، ومكبر السالفة وهي بسيطة ..

addEventHandler ( "onResourceStart",resourceRoot, 
    function ( ) 
        for _, v in ipairs ( getElementsByType ( "player" ) ) do 
                setPlayerMuted ( v, not isPlayerMuted ( v ) ) 
        end 
    end 
) 

Link to comment
Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.

×
×
  • Create New...