Jump to content

#Mr.Rajo~,<

Members
  • Posts

    901
  • Joined

  • Last visited

Posts posted by #Mr.Rajo~,<

  1. On ٣١‏/١٢‏/٢٠١٦ at 3:42 AM, Kara said:

    هههههههههههههه منتدي يضححك

    للاسف تركت مضمون الموضوع ودققت على المنتدى

    ترا ماهو عيب اذا بدى من الصفر 

    فالنهايه مافي احد يولد من بطن امه فول اوبشن

     

    ======

    مشكور ياعصمان بالتوفيق لك في فعل الخير

     

    • Like 2
  2. اتوقع ذا صح؟؟

    انا عدلته شوفه

    function teamInfo ( source ) 
        local r, g, b 
        local playerTeam = getPlayerTeam( source ) 
        local text = getPlayerName ( source ) 
        if ( playerTeam ) then 
            text = text .. " is on " .. getTeamName ( playerTeam ) 
            255, 196, 0 = getTeamColor ( playerTeam ) 
            text = text .. " with team colors: " .. tostring(r) .. ", " .. tostring(g) .. ", " .. tostring(b) 
        else 
            text = text .. " is not on a team." 
        end 
        outputChatBox ( text ) 
    end 
    addCommandHandler ( "teamcolor", teamInfo ) 
      
      
      
    

    يب , رح جرب عدل اللي قدام getTeamColor

  3. function teamInfo ( source ) 
        local r, g, b 
        local playerTeam = getPlayerTeam( source ) 
      
        -- Make a string to print out the player's team information 
        local text = getPlayerName ( source ) 
      
        if ( playerTeam ) then -- If the player is on a team (team is not false) 
            -- Add the team name to the string 
            text = text .. " is on " .. getTeamName ( playerTeam ) 
      
            -- Get the red, green, and blue values of the team's color 
            r, g, b = getTeamColor ( playerTeam ) 
      
            -- Convert the colors to strings and add them to the string 
            text = text .. " with team colors: " .. tostring(r) .. ", " .. tostring(g) .. ", " .. tostring(b) 
        else                   -- if he's not on a team 
            text = text .. " is not on a team." 
        end 
      
        -- Print the string with the player's team information 
        outputChatBox ( text ) 
    end 
      
    -- Add console command to print out your team information 
    addCommandHandler ( "teamInfo", teamInfo ) 
    

    https://wiki.multitheftauto.com/wiki/GetTeamColor

  4. ياحبيبي انت شدخلك فيه اقدم ولا اجدد هو اللي فتحها واسسها قبلك

    لاتجي تتفلسف

    وصدقني اذا ماغيرت الاسم راح تعاني

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

    وتزرف ديلوكس وتقول وتشيل حرف اليو وتقول مو نفسها

    انت قلتها تنشهر على حساب غيرك ؟

  5. بالنسبه لكلام الاخ راجو

    من يوم قلت لميزو عالفيس بوك هبدٱ اتعلم من جديد بالبرمجه واهتم بيها ماخدش كود م الويكي وافضل اعدل و الهبل دة

    #بداية_من_جديد

    بالتوفيق

    ان شاء الله نشوفك من كبار المبرمجين

  6. GUIEditor = { 
        button = {}, 
        window = {}, 
        checkbox = {}, 
        label = {}, 
    } 
    addEventHandler("onClientResourceStart", resourceRoot, 
        function() 
            GUIEditor.window[1] = guiCreateWindow(511, 142, 398, 443, "", false) 
            guiWindowSetSizable(GUIEditor.window[1], false) 
            guiSetVisible(GUIEditor.window[1],false) 
      
            GUIEditor.button[1] = guiCreateButton(36, 150, 324, 112, "هنا", false, GUIEditor.window[1]) 
            guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFAAAAAA")     
      
      
      
            GUIEditor.window[2] = guiCreateWindow(520, 120, 406, 409, "", false) 
            guiSetVisible(GUIEditor.window[2],false) 
      
            guiWindowSetSizable(GUIEditor.window[2], false) 
            guiSetVisible (GUIEditor.window[2],false) 
      
            GUIEditor.checkbox[2] = guiCreateCheckBox(81, 260, 275, 15, "", false, false, GUIEditor.window[1]) 
            GUIEditor.label[2] = guiCreateLabel(113, 84, 243, 140, "مرحبا بك في السيررفر", false, GUIEditor.window[1])     
        end 
    ) 
      
    bindKey("f2" ,"down" , 
    function() 
    guiSetVisible(GUIEditor.window[1], not guiGetVisible(GUIEditor.window[1])) 
    showCursor(guiGetVisible(GUIEditor.window[1])) 
    end 
    ) 
    addEventHandler("onClientGUIClick",root, 
    function() 
    if (source == GUIEditor.button[1]) then 
    guiSetVisible(GUIEditor.window[2],true) 
    guiSetVisible(GUIEditor.window[1],false) 
    showCursor(true) 
    end 
    end) 
    

    f2 للفتح

  7. خلاص يخي اسحبو عليه

    ما بيسوي شيء

    بس احب اقولك

    لا تتفسلف كل شوي وتقول اقدر اسوي

    لاننا نعرف انك شغل نسخ لصق وما تعرف تسوي :fadein:

    ما في حل الا انك تتعلم جد ثم تسوي المود وتقصف كله ض

    تعقيبا على كلام اخوي وصديقي دابل

    ((ما في حل الا انك تتعلم جد ثم تسوي المود وتقصف كله ض))

    الاصح قول

    ((ما في حل الا انك تتعلم من جديد ثم تسوي المود وتقصف كله ض))

×
×
  • Create New...