Jump to content

حل لمشكلة الصورة في القيم مود


Recommended Posts

ياخي وش بكم

انا طرحت لكم محاولتي وابيكم تعدلولي الكود وش بكم

انا سويت كود

      
        local sm = {}
        sm.moov = 0
        sm.object1, sm.object2 = nil, nil
         
        local function removeCamHandler ()
            if(sm.moov == 1) then
                sm.moov = 0
                removeEventHandler ( "onClientPreRender", root, camRender )
            end
        end
         
        function camRender ()
            if sm.object1 and isElement(sm.object1) then
                local x1, y1, z1 = getElementPosition ( sm.object1 )
                local x2, y2, z2 = getElementPosition ( sm.object2 )
                setCameraMatrix ( x1, y1, z1, x2, y2, z2 )
            end
        end
         
        function smoothMoveCamera ( x1, y1, z1, x1t, y1t, z1t, x2, y2, z2, x2t, y2t, z2t, time )
            if(sm.moov == 1) then return false end
            sm.object1 = createObject ( 1337, x1, y1, z1 )
            sm.object2 = createObject ( 1337, x1t, y1t, z1t )
            setElementAlpha ( sm.object1, 0 )
            setElementAlpha ( sm.object2, 0 )
            setObjectScale(sm.object1, 0.01)
            setObjectScale(sm.object2, 0.01)
            moveObject ( sm.object1, time, x2, y2, z2, 0, 0, 0, "InOutQuad" )
            moveObject ( sm.object2, time, x2t, y2t, z2t, 0, 0, 0, "InOutQuad" )
         
            addEventHandler ( "onClientPreRender", root, camRender )
            sm.moov = 1
            setTimer ( removeCamHandler, time, 1 )
            setTimer ( destroyElement, time, 1, sm.object1 )
            setTimer ( destroyElement, time, 1, sm.object2 )
            return true
        end
     
        function centerWindow(center_window)
            local screenW,screenH=guiGetScreenSize()
            local windowW,windowH=guiGetSize(center_window,false)
            local x,y = (screenW-windowW)/2,(screenH-windowH)/2
            guiSetPosition(center_window,x,y,false)
        end
     
    rot = 0
    function dxDrawLoading()
     
     
    setTimer(function ()
     
     
    rot = rot + 1
    if rot > 360 then rot = 0 end
     
    dxDrawText("Welcome To Server | GameMod By : momar5600", 418 - 1, 178 - 1, 948 - 1, 208 - 1, tocolor(0, 0, 0, 255), 2.00, "default-bold", "center", "top", false, false, false, false, false)
     
    dxDrawText("Welcome To Server | GameMod By : momar5600", 418 + 1, 178 - 1, 948 + 1, 208 - 1, tocolor(0, 0, 0, 255), 2.00, "default-bold", "center", "top", false, false, false, false, false)
     
    dxDrawText("Welcome To Server | GameMod By : momar5600", 418 - 1, 178 + 1, 948 - 1, 208 + 1, tocolor(0, 0, 0, 255), 2.00, "default-bold", "center", "top", false, false, false, false, false)
     
    dxDrawText("Welcome To Server | GameMod By : momar5600", 418 + 1, 178 + 1, 948 + 1, 208 + 1, tocolor(0, 0, 0, 255), 2.00, "default-bold", "center", "top", false, false, false, false, false)
     
    dxDrawText("Welcome To Server | GameMod By : momar5600", 418, 178, 948, 208, tocolor(255, 255, 255, 255), 2.00, "default-bold", "center", "top", false, false, false, false, false)
     
    dxDrawImage(621, 372, 125, 125, "load.png", rot)
     
    dxDrawText("Loading ....", 583, 342, 783, 362, tocolor(255, 255, 255, 255), 1.20, "default-bold", "center", "top", false, false, false, false, false)
        end,100,1)
    end
     
     
    addEventHandler("onClientRender", root, dxDrawLoading);
    setTimer(
    function ()
     
    removeEventHandler("onClientRender", root, dxDrawLoading);
     
    if isPedInVehicle(localPlayer) then destroyElement(getPedOccupiedVehicle(localPlayer)) end
     
    dx = true    
     
    setCameraMatrix(-2684.654296875,1933.3981933594,185.04570007324,-2684.6457519531,1932.5715332031,184.48304748535)
     
    sound = playSound ("ss.mp3",true)
     
    setTime(1,0)
     
    showCursor(true)
     
    guiSetInputEnabled(true)
     
    fadeCamera(true)
     
    showChat(false)
     
    setElementDimension(localPlayer,0)
     
    setElementData(localPlayer,"new",false)
     
    outputChatBox("#0069c7 ## #ff0000 GameMode By #0069c7[#ff0000MR~#0069c7Mos.[T].aّّّfA~#ff0000] #0069c7##",255,0,0,true)
     
    end,500,1)
     
     
     
     
         
        wnd = guiCreateStaticImage(0,-268,389,268,"abed.png",false)
        english = guiCreateButton(0.0231,0.0284,0.0566,0.1082,"En",true,wnd)
        guiSetFont(english,"default-bold-small")
        setTimer(function()
        guiSetProperty(english, 'NormalTextColour', string.format("%.2X%.2X%.2X%.2X", 255, math.random(255), math.random(255), math.random(255)))
            end, 1000, 0)
        arabic = guiCreateButton(0.0848,0.0284,0.0566,0.1082,"Ar",true,wnd)
        guiSetFont(arabic,"default-bold-small")
        setTimer(function()
        guiSetProperty(arabic, 'NormalTextColour', string.format("%.2X%.2X%.2X%.2X", 255, math.random(255), math.random(255), math.random(255)))
            end, 1000, 0)
        user_l = guiCreateLabel(0.0206,0.1903,0.9614,0.0784,"Username",true,wnd)
        function Color ( )
        guiLabelSetColor (user_l, math.random(0, 255), math.random(0, 255), math.random(0, 255) )
        end
        setTimer ( Color, 1000, 0 )
        guiLabelSetHorizontalAlign(user_l,"center",false)
        guiSetFont(user_l,"default-bold-small")
        user = guiCreateEdit(0.0231,0.2724,0.9537,0.1306,"",true,wnd)
        setTimer(function()
        guiSetProperty(user, 'NormalTextColour', string.format("%.2X%.2X%.2X%.2X", 255, math.random(255), math.random(255), math.random(255)))
            end, 1000, 0)
        pass_l = guiCreateLabel(0.0206,0.4216,0.9614,0.0784,"Password",true,wnd)
        function Color ( )
        guiLabelSetColor (pass_l, math.random(0, 255), math.random(0, 255), math.random(0, 255) )
        end
        setTimer ( Color, 1000, 0 )
        guiLabelSetHorizontalAlign(pass_l,"center",false)
        guiSetFont(pass_l,"default-bold-small")
        pass = guiCreateEdit(0.0231,0.5187,0.9537,0.1306,"",true,wnd)
        setTimer(function()
        guiSetProperty(pass, 'NormalTextColour', string.format("%.2X%.2X%.2X%.2X", 255, math.random(255), math.random(255), math.random(255)))
            end, 100, 0)
        guiEditSetMasked(pass,true)
        remember = guiCreateCheckBox(0.0231,0.6642,0.3728,0.0746,"Remember Me !!",false,true,wnd)
        guiSetFont(remember,"default-bold-small")
        setTimer(function()
        guiSetProperty(remember, 'NormalTextColour', string.format("%.2X%.2X%.2X%.2X", 255, math.random(255), math.random(255), math.random(255)))
            end, 1000, 0)
        reg = guiCreateButton(0.5244,0.7724,0.3239,0.153,"Register",true,wnd)
        guiSetFont(reg,"default-bold-small")
        setTimer(function()
        guiSetProperty(reg, 'NormalTextColour', string.format("%.2X%.2X%.2X%.2X", 255, math.random(255), math.random(255), math.random(255)))
            end, 1000, 0)
        login = guiCreateButton(0.144,0.7724,0.3239,0.153,"Login",true,wnd)
        guiSetFont(login,"default-bold-small")
        setTimer(function()
        guiSetProperty(login, 'NormalTextColour', string.format("%.2X%.2X%.2X%.2X", 255, math.random(255), math.random(255), math.random(255)))
            end, 1000, 0)
        centerWindow(wnd)
        triggerServerEvent("onGetSave",localPlayer)
         
        addEvent("onPutSave",true)
        addEventHandler("onPutSave",root,
            function (puser,ppass)
                guiSetText(user,puser)
                guiSetText(pass,ppass)
            end
        )
         
        addEventHandler("onClientGUIClick",root,
            function ()
                if ( source == ex ) then
                    guiSetVisible(wnd,false)
                    showCursor(false)
                    guiSetInputEnabled(false)
                    Show()
                elseif ( source == english ) then
                    guiSetText(user_l,"Username")
                    guiSetText(pass_l,"Password")
                    guiSetText(login,"Login")
                    guiSetText(reg,"Register")
                    guiSetText(remember,"Remember Me !!")
                elseif ( source == arabic ) then
                    guiSetText(user_l,"اسم المستخدم")
                    guiSetText(pass_l,"كلمه المرور")
                    guiSetText(login,"تسجيل الدخول")
                    guiSetText(reg,"حساب جديد")
                    guiSetText(remember,"تذكرني")
                end
            end
        )
         
        addEventHandler("onClientGUIClick",root,
            function ()
                local user = guiGetText(user)
                local pass = guiGetText(pass)
                if ( source == login ) then
                    if user ~= "" and pass ~= "" then
                        if guiCheckBoxGetSelected(remember) then
                            triggerServerEvent("onLoginWith",localPlayer,user,pass)
                        else
                            triggerServerEvent("onLogin",localPlayer,user,pass)
                        end
                    else
                        outputChatBox("* You Must Write Username Or Password",255,0,0)
                    end
                elseif ( source == reg ) then
                    if user ~= "" and pass ~= "" then
                        triggerServerEvent("onReg",localPlayer,user,pass)
                    else
                        outputChatBox("* You Must Write Username Or Password",255,0,0)
                    end
                end
            end
        )
         
        addEvent("onCl",true)
        addEventHandler("onCl",root,
            function ()
                guiSetVisible(wnd,false)
                showCursor(false)
                guiSetInputEnabled(false)
                Show()
            end
        )
         
        function setPlayerXYZ(x,y,z)
            local player = getLocalPlayer()
            setElementData(player,"x",x)
            setElementData(player,"y",y)
            setElementData(player,"z",z)
        end
         
        text = ".:[حياكم الله بسيرفر جراند العرب]:."
        dx = false
        skin = {{46,"ثوب ابيض"},{0,"cj"},{217,"شخصية الادمن"},{266,"شخصية الجوكر"}}
        num = 1
        place = {
            {"النخيل",2021.6854248047,1441.3870849609,40.58459854126,2022.5858154297,1441.0551757813,40.303291320801,2119.56250,1396.94238,10.81252},
            {"الدائري",1869.2296142578,1426.2882080078,74.245399475098,1868.2775878906,1426.3618164063,73.948387145996,1686.27844,1400.07080,10.74839},
            {"ساحة القتال",414.17388916016,2046.4881591797,61.682598114014,413.30380249023,2046.0771484375,61.410533905029,277.93359,1988.82581,17.64063},
            {"البداية",7968.8471679688,-3036.4885253906,32.74340057373,7968.00390625,-3036.0454101563,32.439910888672,7955.44043,-3000.18726,5.40781},
            {"الطعس",-2750.5700683594,-2616.154296875,26.364200592041,-2750.1618652344,-2615.2575683594,26.193408966064,-2682.37036,-2549.38403,3.23208},
        }
     
        function Show()
            smoothMoveCamera(7861.3447265625,-2983.4196777344,27.067300796509,7861.7626953125,-2984.2622070313,26.727567672729,7892.251953125,-3044.7609863281,8.2206001281738,7892.4155273438,-3045.7424316406,8.1202297210693,2000)
            ped = createPed(skin[1][1],7893.16943,-3050.25659,7.05853)
            bindKey("arrow_l","down",left)
            bindKey("arrow_r","down",right)
           
Link to comment
اول شيء موضوع حج صحبي

ثاني شيء كود انا الي سويته وخليته يعضيكم اياه

ثالث شيء ماحد رد

والحين طيب نبيكم تساعدونا هنا لو سمحتم

صفحتين وماحد رد ؟

+

وش تبي تسوى بالضبط عشان نقدر نساعدك

Link to comment

ياخي وش بكم

100 مرة قلت لكم ابيكم تعدلونه

شف بعضيك رابط تحميله علشان تعرف مشكلة بنفسك

http://up.top4top.net/downloadf-top4top ... 1-zip.html

حملة وشوف وش يجيك

يجك تحميل جم لوحة تسجيل

وانا مابيها كدا انا ابي تحميل يجي قبل لوحة تسجيل فهمت اتمناء تساعدوني

لو سمحتم

:):) :) :):):):):):):):):):):):) --skype:momar5600

Link to comment
شفتوووووووووووووووووو

ماحد يرددددددددددددددددددددددددددددددددددددددددددددددددددددددددد

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

  
     
    function centerWindow(center_window)
        local screenW,screenH=guiGetScreenSize()
        local windowW,windowH=guiGetSize(center_window,false)
        local x,y = (screenW-windowW)/2,(screenH-windowH)/2
        guiSetPosition(center_window,x,y,false)
    end    
     
    local sm = {}
    sm.moov = 0
    sm.object1, sm.object2 = nil, nil
     
    local function removeCamHandler ()
        if(sm.moov == 1) then
            sm.moov = 0
            removeEventHandler ( "onClientPreRender", getRootElement(), camRender )
        end
    end
     
    function camRender ()
        if sm.object1 and isElement(sm.object1) then
            local x1, y1, z1 = getElementPosition ( sm.object1 )
            local x2, y2, z2 = getElementPosition ( sm.object2 )
            setCameraMatrix ( x1, y1, z1, x2, y2, z2 )
        end
    end
     
    function smoothMoveCamera ( x1, y1, z1, x1t, y1t, z1t, x2, y2, z2, x2t, y2t, z2t, time )
        if(sm.moov == 1) then return false end
        sm.object1 = createObject ( 1337, x1, y1, z1 )
        sm.object2 = createObject ( 1337, x1t, y1t, z1t )
        setElementAlpha ( sm.object1, 0 )
        setElementAlpha ( sm.object2, 0 )
        setObjectScale(sm.object1, 0.01)
        setObjectScale(sm.object2, 0.01)
        moveObject ( sm.object1, time, x2, y2, z2, 0, 0, 0, "InOutQuad" )
        moveObject ( sm.object2, time, x2t, y2t, z2t, 0, 0, 0, "InOutQuad" )
     
        addEventHandler ( "onClientPreRender", getRootElement(), camRender )
        sm.moov = 1
        setTimer ( removeCamHandler, time, 1 )
        setTimer ( destroyElement, time, 1, sm.object1 )
        setTimer ( destroyElement, time, 1, sm.object2 )
        return true
    end
rot = 0
function dxDrawLoading()
 
 
setTimer(function ()
 
 
rot = rot + 1
if rot > 360 then rot = 0 end
 
dxDrawText("Welcome To Server | GameMod By : momar5600", 418 - 1, 178 - 1, 948 - 1, 208 - 1, tocolor(0, 0, 0, 255), 2.00, "default-bold", "center", "top", false, false, false, false, false)
 
dxDrawText("Welcome To Server | GameMod By : momar5600", 418 + 1, 178 - 1, 948 + 1, 208 - 1, tocolor(0, 0, 0, 255), 2.00, "default-bold", "center", "top", false, false, false, false, false)
 
dxDrawText("Welcome To Server | GameMod By : momar5600", 418 - 1, 178 + 1, 948 - 1, 208 + 1, tocolor(0, 0, 0, 255), 2.00, "default-bold", "center", "top", false, false, false, false, false)
 
dxDrawText("Welcome To Server | GameMod By : momar5600", 418 + 1, 178 + 1, 948 + 1, 208 + 1, tocolor(0, 0, 0, 255), 2.00, "default-bold", "center", "top", false, false, false, false, false)
 
dxDrawText("Welcome To Server | GameMod By : momar5600", 418, 178, 948, 208, tocolor(255, 255, 255, 255), 2.00, "default-bold", "center", "top", false, false, false, false, false)
 
dxDrawImage(621, 372, 125, 125, "load.png", rot)
 
dxDrawText("Loading ....", 583, 342, 783, 362, tocolor(255, 255, 255, 255), 1.20, "default-bold", "center", "top", false, false, false, false, false)
    end,100,1)
end
 
 
addEventHandler("onClientRender", root, dxDrawLoading);
setTimer(
function ()
 
removeEventHandler("onClientRender", root, dxDrawLoading);
 
if isPedInVehicle(localPlayer) then destroyElement(getPedOccupiedVehicle(localPlayer)) end
 
dx = true    
fadeCamera(true);
setCameraMatrix(-2684.654296875,1933.3981933594,185.04570007324,-2684.6457519531,1932.5715332031,184.48304748535)
 
sound = playSound ("ss.mp3",true)
 
setTime(1,0)
 
showCursor(true)
 
guiSetInputEnabled(true)
 
fadeCamera(true)
 
showChat(false)
 
setElementDimension(localPlayer,0)
 
setElementData(localPlayer,"new",false)
 
outputChatBox("#0069c7 ## #ff0000 GameMode By #0069c7[#ff0000MR~#0069c7Mos.[T].aّّّfA~#ff0000] #0069c7##",255,0,0,true)
 
end,500,1)
 
 
 
 
     
    wnd = guiCreateStaticImage(0,-268,389,268,"abed.png",false)
    english = guiCreateButton(0.0231,0.0284,0.0566,0.1082,"En",true,wnd)
    guiSetFont(english,"default-bold-small")
    setTimer(function()
    guiSetProperty(english, 'NormalTextColour', string.format("%.2X%.2X%.2X%.2X", 255, math.random(255), math.random(255), math.random(255)))
        end, 1000, 0)
    arabic = guiCreateButton(0.0848,0.0284,0.0566,0.1082,"Ar",true,wnd)
    guiSetFont(arabic,"default-bold-small")
    setTimer(function()
    guiSetProperty(arabic, 'NormalTextColour', string.format("%.2X%.2X%.2X%.2X", 255, math.random(255), math.random(255), math.random(255)))
        end, 1000, 0)
    user_l = guiCreateLabel(0.0206,0.1903,0.9614,0.0784,"Username",true,wnd)
    function Color ( )
    guiLabelSetColor (user_l, math.random(0, 255), math.random(0, 255), math.random(0, 255) )
    end
    setTimer ( Color, 1000, 0 )
    guiLabelSetHorizontalAlign(user_l,"center",false)
    guiSetFont(user_l,"default-bold-small")
    user = guiCreateEdit(0.0231,0.2724,0.9537,0.1306,"",true,wnd)
    setTimer(function()
    guiSetProperty(user, 'NormalTextColour', string.format("%.2X%.2X%.2X%.2X", 255, math.random(255), math.random(255), math.random(255)))
        end, 1000, 0)
    pass_l = guiCreateLabel(0.0206,0.4216,0.9614,0.0784,"Password",true,wnd)
    function Color ( )
    guiLabelSetColor (pass_l, math.random(0, 255), math.random(0, 255), math.random(0, 255) )
    end
    setTimer ( Color, 1000, 0 )
    guiLabelSetHorizontalAlign(pass_l,"center",false)
    guiSetFont(pass_l,"default-bold-small")
    pass = guiCreateEdit(0.0231,0.5187,0.9537,0.1306,"",true,wnd)
    setTimer(function()
    guiSetProperty(pass, 'NormalTextColour', string.format("%.2X%.2X%.2X%.2X", 255, math.random(255), math.random(255), math.random(255)))
        end, 100, 0)
    guiEditSetMasked(pass,true)
    remember = guiCreateCheckBox(0.0231,0.6642,0.3728,0.0746,"Remember Me !!",false,true,wnd)
    guiSetFont(remember,"default-bold-small")
    setTimer(function()
    guiSetProperty(remember, 'NormalTextColour', string.format("%.2X%.2X%.2X%.2X", 255, math.random(255), math.random(255), math.random(255)))
        end, 1000, 0)
    reg = guiCreateButton(0.5244,0.7724,0.3239,0.153,"Register",true,wnd)
    guiSetFont(reg,"default-bold-small")
    setTimer(function()
    guiSetProperty(reg, 'NormalTextColour', string.format("%.2X%.2X%.2X%.2X", 255, math.random(255), math.random(255), math.random(255)))
        end, 1000, 0)
    login = guiCreateButton(0.144,0.7724,0.3239,0.153,"Login",true,wnd)
    guiSetFont(login,"default-bold-small")
    setTimer(function()
    guiSetProperty(login, 'NormalTextColour', string.format("%.2X%.2X%.2X%.2X", 255, math.random(255), math.random(255), math.random(255)))
        end, 1000, 0)
    centerWindow(wnd)
    triggerServerEvent("onGetSave",localPlayer)
     
    addEvent("onPutSave",true)
    addEventHandler("onPutSave",root,
        function (puser,ppass)
            guiSetText(user,puser)
            guiSetText(pass,ppass)
        end
    )
     
    addEventHandler("onClientGUIClick",root,
        function ()
            if ( source == ex ) then
                guiSetVisible(wnd,false)
                showCursor(false)
                guiSetInputEnabled(false)
                Show()
            elseif ( source == english ) then
                guiSetText(user_l,"Username")
                guiSetText(pass_l,"Password")
                guiSetText(login,"Login")
                guiSetText(reg,"Register")
                guiSetText(remember,"Remember Me !!")
            elseif ( source == arabic ) then
                guiSetText(user_l,"اسم المستخدم")
                guiSetText(pass_l,"كلمه المرور")
                guiSetText(login,"تسجيل الدخول")
                guiSetText(reg,"حساب جديد")
                guiSetText(remember,"تذكرني")
            end
        end
    )
     
    addEventHandler("onClientGUIClick",root,
        function ()
            local user = guiGetText(user)
            local pass = guiGetText(pass)
            if ( source == login ) then
                if user ~= "" and pass ~= "" then
                    if guiCheckBoxGetSelected(remember) then
                        triggerServerEvent("onLoginWith",localPlayer,user,pass)
                    else
                        triggerServerEvent("onLogin",localPlayer,user,pass)
                    end
                else
                    outputChatBox("* You Must Write Username Or Password",255,0,0)
                end
            elseif ( source == reg ) then
                if user ~= "" and pass ~= "" then
                    triggerServerEvent("onReg",localPlayer,user,pass)
                else
                    outputChatBox("* You Must Write Username Or Password",255,0,0)
                end
            end
        end
    )
     
    addEvent("onCl",true)
    addEventHandler("onCl",root,
        function ()
            guiSetVisible(wnd,false)
            showCursor(false)
            guiSetInputEnabled(false)
            Show()
        end
    )
     
    function setPlayerXYZ(x,y,z)
        local player = getLocalPlayer()
        setElementData(player,"x",x)
        setElementData(player,"y",y)
        setElementData(player,"z",z)
    end
     
    text = ".:[حياكم الله بسيرفر جراند العرب]:."
    dx = false
    skin = {{46,"ثوب ابيض"},{0,"cj"},{217,"شخصية الادمن"},{266,"شخصية الجوكر"}}
    num = 1
    place = {
        {"النخيل",2021.6854248047,1441.3870849609,40.58459854126,2022.5858154297,1441.0551757813,40.303291320801,2119.56250,1396.94238,10.81252},
        {"الدائري",1869.2296142578,1426.2882080078,74.245399475098,1868.2775878906,1426.3618164063,73.948387145996,1686.27844,1400.07080,10.74839},
        {"ساحة القتال",414.17388916016,2046.4881591797,61.682598114014,413.30380249023,2046.0771484375,61.410533905029,277.93359,1988.82581,17.64063},
        {"البداية",7968.8471679688,-3036.4885253906,32.74340057373,7968.00390625,-3036.0454101563,32.439910888672,7955.44043,-3000.18726,5.40781},
        {"الطعس",-2750.5700683594,-2616.154296875,26.364200592041,-2750.1618652344,-2615.2575683594,26.193408966064,-2682.37036,-2549.38403,3.23208},
    }
 
    function Show()
        smoothMoveCamera(7861.3447265625,-2983.4196777344,27.067300796509,7861.7626953125,-2984.2622070313,26.727567672729,7892.251953125,-3044.7609863281,8.2206001281738,7892.4155273438,-3045.7424316406,8.1202297210693,2000)
        ped = createPed(skin[1][1],7893.16943,-3050.25659,7.05853)
        bindKey("arrow_l","down",left)
        bindKey("arrow_r","down",right)
       
Link to comment
ههههههههههههههههههههههههههههههههههههههههههههههههههههههههه

انت وش سويت نفس المشكلة ماسويت شيء

انا مجربه وشغال تمام

مدرى وش مشكلتك بس عندى مافى اى مشاكل او اخطاء بالدى بق

Link to comment

طيب ارفع الي عندك علي اي موقع وارسلوه لي كامل

ياخي نسخت كودك

وفعلا يجي تحميل بس مشكله هب

شفت لوحة تسجيل يجي جمبها بظبط تحميل

انا مابيها كدا

ابيه اول ماتدخل سيرفر يجيك الشاشة سوداء وبعديت تجيل تحميل السي هي صورة تدور وبعد مايخلص تحميل

يجي لوحة تسجيل .........................ز

فهمتووووووووووووووووووووووووووووووووووووو

Link to comment

عندي مشكلة وهي اخري طلب ومشكلة لها فياريت تساعدوني

لو سمحتم

اابي صورة والكلمات الي تيجي فوق صورة في نصف شاشة ممكن لو سمحتم

ده اخري طلب ساعدوني

لانها جاي جم شاشة

:) لو سمحتم اخري طلب.....

:):):):):) __________________________________________

عندي مشكلة وهي اخري طلب ومشكلة لها فياريت تساعدوني

لو سمحتم

اابي صورة والكلمات الي تيجي فوق صورة في نصف شاشة ممكن لو سمحتم

ده اخري طلب ساعدوني

لانها جاي جم شاشة

لو سمحتم اخري طلب.....

شف صورة شلون جاية

i_702db378361.png

انا مابيها كدا ابيها مثل ده

i_83e4bf59951.png

فهمتو اتمنا تساعدوني في اقرب وقت

كلنت

      
         
        function centerWindow(center_window)
            local screenW,screenH=guiGetScreenSize()
            local windowW,windowH=guiGetSize(center_window,false)
            local x,y = (screenW-windowW)/2,(screenH-windowH)/2
            guiSetPosition(center_window,x,y,false)
        end    
         
        local sm = {}
        sm.moov = 0
        sm.object1, sm.object2 = nil, nil
         
        local function removeCamHandler ()
            if(sm.moov == 1) then
                sm.moov = 0
                removeEventHandler ( "onClientPreRender", getRootElement(), camRender )
            end
        end
         
        function camRender ()
            if sm.object1 and isElement(sm.object1) then
                local x1, y1, z1 = getElementPosition ( sm.object1 )
                local x2, y2, z2 = getElementPosition ( sm.object2 )
                setCameraMatrix ( x1, y1, z1, x2, y2, z2 )
            end
        end
         
        function smoothMoveCamera ( x1, y1, z1, x1t, y1t, z1t, x2, y2, z2, x2t, y2t, z2t, time )
            if(sm.moov == 1) then return false end
            sm.object1 = createObject ( 1337, x1, y1, z1 )
            sm.object2 = createObject ( 1337, x1t, y1t, z1t )
            setElementAlpha ( sm.object1, 0 )
            setElementAlpha ( sm.object2, 0 )
            setObjectScale(sm.object1, 0.01)
            setObjectScale(sm.object2, 0.01)
            moveObject ( sm.object1, time, x2, y2, z2, 0, 0, 0, "InOutQuad" )
            moveObject ( sm.object2, time, x2t, y2t, z2t, 0, 0, 0, "InOutQuad" )
           
            addEventHandler ( "onClientPreRender", getRootElement(), camRender )
            sm.moov = 1
            setTimer ( removeCamHandler, time, 1 )
            setTimer ( destroyElement, time, 1, sm.object1 )
            setTimer ( destroyElement, time, 1, sm.object2 )
            return true
        end
 
        wnd = guiCreateStaticImage(0,-268,389,268,"abed.png",false)
        english = guiCreateButton(0.0231,0.0284,0.0566,0.1082,"En",true,wnd)
        guiSetFont(english,"default-bold-small")
guiSetVisible(wnd,false)
        setTimer(function()
        guiSetProperty(english, 'NormalTextColour', string.format("%.2X%.2X%.2X%.2X", 255, math.random(255), math.random(255), math.random(255)))
            end, 1000, 0)
        arabic = guiCreateButton(0.0848,0.0284,0.0566,0.1082,"Ar",true,wnd)
        guiSetFont(arabic,"default-bold-small")
        setTimer(function()
        guiSetProperty(arabic, 'NormalTextColour', string.format("%.2X%.2X%.2X%.2X", 255, math.random(255), math.random(255), math.random(255)))
            end, 1000, 0)
        user_l = guiCreateLabel(0.0206,0.1903,0.9614,0.0784,"Username",true,wnd)
        function Color ( )
        guiLabelSetColor (user_l, math.random(0, 255), math.random(0, 255), math.random(0, 255) )
        end
        setTimer ( Color, 1000, 0 )
        guiLabelSetHorizontalAlign(user_l,"center",false)
        guiSetFont(user_l,"default-bold-small")
        user = guiCreateEdit(0.0231,0.2724,0.9537,0.1306,"",true,wnd)
        setTimer(function()
        guiSetProperty(user, 'NormalTextColour', string.format("%.2X%.2X%.2X%.2X", 255, math.random(255), math.random(255), math.random(255)))
            end, 1000, 0)
        pass_l = guiCreateLabel(0.0206,0.4216,0.9614,0.0784,"Password",true,wnd)
        function Color ( )
        guiLabelSetColor (pass_l, math.random(0, 255), math.random(0, 255), math.random(0, 255) )
        end
        setTimer ( Color, 1000, 0 )
        guiLabelSetHorizontalAlign(pass_l,"center",false)
        guiSetFont(pass_l,"default-bold-small")
        pass = guiCreateEdit(0.0231,0.5187,0.9537,0.1306,"",true,wnd)
        setTimer(function()
        guiSetProperty(pass, 'NormalTextColour', string.format("%.2X%.2X%.2X%.2X", 255, math.random(255), math.random(255), math.random(255)))
            end, 100, 0)
        guiEditSetMasked(pass,true)
        remember = guiCreateCheckBox(0.0231,0.6642,0.3728,0.0746,"Remember Me !!",false,true,wnd)
        guiSetFont(remember,"default-bold-small")
        setTimer(function()
        guiSetProperty(remember, 'NormalTextColour', string.format("%.2X%.2X%.2X%.2X", 255, math.random(255), math.random(255), math.random(255)))
            end, 1000, 0)
        reg = guiCreateButton(0.5244,0.7724,0.3239,0.153,"Register",true,wnd)
        guiSetFont(reg,"default-bold-small")
        setTimer(function()
        guiSetProperty(reg, 'NormalTextColour', string.format("%.2X%.2X%.2X%.2X", 255, math.random(255), math.random(255), math.random(255)))
            end, 1000, 0)
        login = guiCreateButton(0.144,0.7724,0.3239,0.153,"Login",true,wnd)
        guiSetFont(login,"default-bold-small")
        setTimer(function()
        guiSetProperty(login, 'NormalTextColour', string.format("%.2X%.2X%.2X%.2X", 255, math.random(255), math.random(255), math.random(255)))
            end, 1000, 0)
addEventHandler("onClientResourceStart", resourceRoot,
    function()
 
    showChat(false)
    fadeCamera(false);
end)
    local rot = 9
    function dxDrawLoading()
 
 
    rot = rot + 2
    if rot > 360 then rot = 0 end
   
    dxDrawText("Welcome To Server | GameMod By : MR.CR[A]SH", 418 - 1, 178 - 1, 948 - 1, 208 - 1, tocolor(0, 0, 0, 255), 2.00, "default-bold", "center", "top", false, false, false, false, false)
   
    dxDrawText("Welcome To Server | GameMod By : MR.CR[A]SH", 418 + 1, 178 - 1, 948 + 1, 208 - 1, tocolor(0, 0, 0, 255), 2.00, "default-bold", "center", "top", false, false, false, false, false)
   
    dxDrawText("Welcome To Server | GameMod By : MR.CR[A]SH", 418 - 1, 178 + 1, 948 - 1, 208 + 1, tocolor(0, 0, 0, 255), 2.00, "default-bold", "center", "top", false, false, false, false, false)
   
    dxDrawText("Welcome To Server | GameMod By : MR.CR[A]SH", 418 + 1, 178 + 1, 948 + 1, 208 + 1, tocolor(0, 0, 0, 255), 2.00, "default-bold", "center", "top", false, false, false, false, false)
   
    dxDrawText("Welcome To Server | GameMod By : MR.CR[A]SH", 418, 178, 948, 208, tocolor(255, 255, 255, 255), 2.00, "default-bold", "center", "top", false, false, false, false, false)
 
    dxDrawImage(621, 372, 125, 125, "load.png", rot)
   
    dxDrawText("Loading ....", 583, 342, 783, 362, tocolor(255, 255, 255, 255), 1.20, "default-bold", "center", "top", false, false, false, false, false)
    end
     
 
    addEventHandler("onClientRender", root, dxDrawLoading);
    setTimer(
    function ()
 
    removeEventHandler("onClientRender", root, dxDrawLoading);
 
    if isPedInVehicle(localPlayer) then destroyElement(getPedOccupiedVehicle(localPlayer)) end
 
    dx = true    
    fadeCamera(true);
    setCameraMatrix(-2684.654296875,1933.3981933594,185.04570007324,-2684.6457519531,1932.5715332031,184.48304748535)
 
    sound = playSound ("ss.mp3",true)
 
 
 
 
    showChat(true)
guiSetVisible(wnd,true)
    showCursor(true)
 
    guiSetInputEnabled(true)
 
    setElementDimension(localPlayer,0)
 
    setElementData(localPlayer,"new",false)
 
    outputChatBox("#0069c7 ## #ff0000 GameMode By #0069c7[#ff0000MR~#0069c7Mos.[T].aّّّfA~#ff0000] #0069c7##",255,0,0,true)
 
    end,6000,1)
 
        centerWindow(wnd)
        triggerServerEvent("onGetSave",localPlayer)
 
        addEvent("onPutSave",true)
        addEventHandler("onPutSave",root,
            function (puser,ppass)
                guiSetText(user,puser)
                guiSetText(pass,ppass)
            end
        )
         
        addEventHandler("onClientGUIClick",root,
            function ()
                if ( source == ex ) then
                    guiSetVisible(wnd,false)
                    showCursor(false)
                    guiSetInputEnabled(false)
                    Show()
                elseif ( source == english ) then
                    guiSetText(user_l,"Username")
                    guiSetText(pass_l,"Password")
                    guiSetText(login,"Login")
                    guiSetText(reg,"Register")
                    guiSetText(remember,"Remember Me !!")
                elseif ( source == arabic ) then
                    guiSetText(user_l,"اسم المستخدم")
                    guiSetText(pass_l,"كلمه المرور")
                    guiSetText(login,"تسجيل الدخول")
                    guiSetText(reg,"حساب جديد")
                    guiSetText(remember,"تذكرني")
                end
            end
        )
         
        addEventHandler("onClientGUIClick",root,
            function ()
                local user = guiGetText(user)
                local pass = guiGetText(pass)
                if ( source == login ) then
                    if user ~= "" and pass ~= "" then
                        if guiCheckBoxGetSelected(remember) then
                            triggerServerEvent("onLoginWith",localPlayer,user,pass)
                        else
                            triggerServerEvent("onLogin",localPlayer,user,pass)
                        end
                    else
                        outputChatBox("* You Must Write Username Or Password",255,0,0)
                    end
                elseif ( source == reg ) then
                    if user ~= "" and pass ~= "" then
                        triggerServerEvent("onReg",localPlayer,user,pass)
                    else
                        outputChatBox("* You Must Write Username Or Password",255,0,0)
                    end
                end
            end
        )
         
        addEvent("onCl",true)
        addEventHandler("onCl",root,
            function ()
                guiSetVisible(wnd,false)
                showCursor(false)
                showChat(false)
fadeCamera(true);
                guiSetInputEnabled(false)
                Show()
            end
        )
         
        function setPlayerXYZ(x,y,z)
            local player = getLocalPlayer()
            setElementData(player,"x",x)
            setElementData(player,"y",y)
            setElementData(player,"z",z)
        end
         
        text = ".:[حياكم الله بسيرفر جراند العرب]:."
        dx = false
        skin = {{46,"ثوب ابيض"},{0,"cj"},{217,"شخصية الادمن"},{266,"شخصية الجوكر"}}
        num = 1
        place = {
            {"النخيل",2021.6854248047,1441.3870849609,40.58459854126,2022.5858154297,1441.0551757813,40.303291320801,2119.56250,1396.94238,10.81252},
            {"الدائري",1869.2296142578,1426.2882080078,74.245399475098,1868.2775878906,1426.3618164063,73.948387145996,1686.27844,1400.07080,10.74839},
            {"ساحة القتال",414.17388916016,2046.4881591797,61.682598114014,413.30380249023,2046.0771484375,61.410533905029,277.93359,1988.82581,17.64063},
            {"البداية",7968.8471679688,-3036.4885253906,32.74340057373,7968.00390625,-3036.0454101563,32.439910888672,7955.44043,-3000.18726,5.40781},
            {"الطعس",-2750.5700683594,-2616.154296875,26.364200592041,-2750.1618652344,-2615.2575683594,26.193408966064,-2682.37036,-2549.38403,3.23208},
        }
     
        function Show()
            smoothMoveCamera(7861.3447265625,-2983.4196777344,27.067300796509,7861.7626953125,-2984.2622070313,26.727567672729,7892.251953125,-3044.7609863281,8.2206001281738,7892.4155273438,-3045.7424316406,8.1202297210693,2000)
            ped = createPed(skin[1][1],7893.16943,-3050.25659,7.05853)
            bindKey("arrow_l","down",left)
           
Link to comment
طيب ليه كدا ماحد رد

انا قلت بلقي اكثر من 3 ردو

طلبي صعب

؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟

ساعدتك بما فيه الكفايه حتى شكرا ماقلتها

المهم ان شاء الله تلاقى اللى يساعدك فى طلبك

بالتوفيق

Link to comment

تراه مجرد تغير ارقام احداثيات

إذا ما تقدر تغير ارقام احداثيات صورة و ذا شي بسيط جداً فأنصحك لا تفتح سيرفر

و اضافة إلى ذا خلي مشاركاتك مهذبه بمعنى آخر لا تكرر الحروف ولا تحط اكثر من مشاركة ورا بعض

محد مجبور يساعدك، الي يساعدون مجرد متطوعين

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