Jump to content

مشكله بالكود


Recommended Posts

السلام عليكم

انا سويت الكود تجميد

ومادري صح ولالا وابيك انزله لكم

function ( Player ) 
if  ( if ( source ==  GUIEditor_Button[] ) then ) then 
getPlayerOccupiedVehicle ( Player )  
isElementFrozen ( playerVehicle )  
    end 
end 
getElementsByType ( "player" ) 
for i, aPlayer in ipairs(connectedPlayers) do 
    bindKey ( aPlayer, "p", "down", "Toggle freeze status", toggleFreezeStatus ) 
end  

لوكان خطأ قولو لي وساعدوني في تصحيه

Link to comment
السلام عليكم

انا سويت الكود تجميد

ومادري صح ولالا وابيك انزله لكم

function ( Player ) 
if  ( if ( source ==  GUIEditor_Button[] ) then ) then 
getPlayerOccupiedVehicle ( Player )  
isElementFrozen ( playerVehicle )  
    end 
end 
getElementsByType ( "player" ) 
for i, aPlayer in ipairs(connectedPlayers) do 
    bindKey ( aPlayer, "p", "down", "Toggle freeze status", toggleFreezeStatus ) 
end  

لوكان خطأ قولو لي وساعدوني في تصحيه

-- this function freezes or unfreezes the specified player's vehicle, if he's in one 
function toggleFreezeStatus ( thePlayer ) 
    -- get the vehicle element 
    local playerVehicle = getPlayerOccupiedVehicle ( thePlayer ) 
  
    if playerVehicle then 
        -- get the current freeze status 
        local currentFreezeStatus = isElementFrozen ( playerVehicle ) 
        -- get the new freeze status (the opposite of the previous) 
        local newFreezeStatus = not currentFreezeStatus 
        -- set the new freeze status 
        setElementFrozen ( playerVehicle, newFreezeStatus ) 
    end 
end 
  
-- now make this function available as key bind to all players. 
-- first, get the list of players 
local connectedPlayers = getElementsByType ( "player" ) 
-- for each one in it, 
for i, aPlayer in ipairs(connectedPlayers) do 
    -- bind the player's "p" key to the toggleFreezeStatus function 
    bindKey ( aPlayer, "p", "down", "Toggle freeze status", toggleFreezeStatus ) 
end 

هو صح يوم جبته من الويكي ليه تغير فيه ؟

Link to comment

في كود سويته مادري صح ولالا

function loginPlayer ( thePlayer, command, username, password ) 
getAccount ( username, password ) 
if ( account ~= false ) then 
logIn ( Player, account, password ) 
  
        else 
outputChatBox ( "Wrong username or password!", thePlayer, 255, 255, 0 ) 
        end 
end 
addCommandHandler ( "log-in", loginPlayer ) 

صح ولالالالالالالالالالا

Link to comment
كيف يعني انسخه واحطه مثل ماهو ولا كيف؟؟

وانت ليه تجيب الاكواد من الويكي وتقول صح ولا خطأ ؟

ايه اكيد صحيحة 100 % بس انت استخدمها وتعلم منها

مهوب تجي المنتدى وتنزل موضوع مايحتاج

Link to comment
في كود سويته مادري صح ولالا
function loginPlayer ( thePlayer, command, username, password ) 
getAccount ( username, password ) 
if ( account ~= false ) then 
logIn ( Player, account, password ) 
  
        else 
outputChatBox ( "Wrong username or password!", thePlayer, 255, 255, 0 ) 
        end 
end 
addCommandHandler ( "log-in", loginPlayer ) 

صح ولالالالالالالالالالا

ابسألك سؤآل

وش فائدة الكود العظيم الي مسويه ؟

Link to comment
-----------  
function loginPlayer ( thePlayer, command, username, password ) 
getAccount ( username, password ) 
if ( GUIEditor_Label[13] ~= false ) then 
login ( Player, account, password ) 
  
        else 
outputChatBox ( "Wrong username or password!", thePlayer, 255, 255, 0 ) 
        end 
end 
addCommandHandler ( "login", loginPlayer ) 

ركبته مثل كذا

Link to comment
-----------  
function loginPlayer ( thePlayer, command, username, password ) 
getAccount ( username, password ) 
if ( GUIEditor_Label[13] ~= false ) then 
login ( Player, account, password ) 
  
        else 
outputChatBox ( "Wrong username or password!", thePlayer, 255, 255, 0 ) 
        end 
end 
addCommandHandler ( "login", loginPlayer ) 

ركبته مثل كذا

if ( GUIEditor_Label[13] ~= false ) then 

ليه تحط ذاه ؟

Link to comment
يعني امسحه وانا باعرف اركبه فين في السيرفر ولا كلنت

شف المثال الي في الويكي

getAccount 

اللون برتقالي يعني سيرفر

guiSetText 

اللون احمر كلنت بس

setElementData 

اللون الازرق يصلح في الكل كلنت وسيرفر

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

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