Jump to content

طلب مساعدة


Recommended Posts

السلام عليكم و رحمة الله و بركاته

سويت مود و بدى مساعدتكم ببعض الاشياء مع شرحها لو سمحتم

هو مود معرض , بدى لما اختار سيارة و اضغط على الزر يحطها بقريد ليست تانية فى لوحة تانية

Link to comment
هو غلط مابتحتاجها ..
بدى لما اختار سيارة و اضغط على الزر يحطها بقريد ليست تانية فى لوحة تانية

فنكشناتي صح

بس حسبته عايز ينقل من الجريد ليست دة لدة

guiGridListRemoveRow مش هاتحتاج

Link to comment
addEventHandler("onClientGUIClick",root, 
    function () 
        local sel = guiGridListGetSelectedItem(VehShopGrid) 
        if source == BVB then 
            if sel ~= -1 then 
                triggerServerEvent("onBuyCar",localPlayer,guiGridListGetItemText(VehShopGrid,sel,1),guiGridListGetItemText(VehShopGrid,sel,2),guiGridListGetItemData(VehShopGrid,sel,1),guiGridListAddRow(PV.Grid,sel,1)) 
            else 
                outputChatBox("# Error : Please Choose A Vehicle To Buy.",255,0,0) 
            end 

ليش ما يضيف رو بالقريد ليست الاخر ؟

Link to comment

addEventHandler("onClientGUIClick",BVB, 
function () 
if ( guiGridListGetSelectedItem(VehShopGrid) ~= -1 ) then 
        triggerServerEvent("onBuyCar",localPlayer,guiGridListGetItemText(VehShopGrid,sel,1),guiGridListGetItemText(VehShopGrid,sel,2),guiGridListGetItemData(VehShopGrid,sel,1),guiGridListAddRow(PV.Grid,sel,1)) 
else 
        outputChatBox("# Error : Please Choose A Vehicle To Buy.",255,0,0) 
    end 
end , false ) 
Link to comment
addEventHandler("onClientGUIClick",root, 
    function () 
        local sel = guiGridListGetSelectedItem(VehShopGrid) 
        if source == BVB then 
            if sel ~= -1 then 
                triggerServerEvent("onBuyCar",localPlayer,guiGridListGetItemText(VehShopGrid,sel,1),guiGridListGetItemText(VehShopGrid,sel,2),guiGridListGetItemData(VehShopGrid,sel,1)) 
                Row1 = guiGridListAddRow(PVGrid,1) 
                guiGridListSetItemText(PVGrid,Row1,1,sel,false,false) 
            else 
                outputChatBox("# Error : Please Choose A Vehicle To Buy.",255,0,0) 
            end 

ضاف باللوحة الثانية رقم 3 مب اسم السيارة القمت بشرائها

Link to comment
int guiGridListAddRow ( element gridList ) 

مافي للفنكشن دا غير ارقمنت واحد

مثال :

local NameGrideList = guiCreateGridList ( 0.80, 0.10, 0.15, 0.60, true ) 
local column = guiGridListAddColumn( NameGrideList, "Player Name", 0.85 ) 
  
addEventHandler("onClientGUIClick",Soking, 
function () 
if ( guiGridListGetSelectedItem(NameGrideList ) ~= -1 ) then 
    local Row = guiGridListAddRow ( NameGrideList ) 
        guiGridListSetItemText ( NameGrideList, Row, column, getPlayerName ( localPlayer ), false, false ) 
else 
        outputChatBox("Error ",255,0,0) 
    end 
end , false ) 
Link to comment
int guiGridListAddRow ( element gridList ) 

مافي للفنكشن دا غير ارقمنت واحد

مثال :

local NameGrideList = guiCreateGridList ( 0.80, 0.10, 0.15, 0.60, true ) 
local column = guiGridListAddColumn( NameGrideList, "Player Name", 0.85 ) 
  
addEventHandler("onClientGUIClick",Soking, 
function () 
if ( guiGridListGetSelectedItem(NameGrideList ) ~= -1 ) then 
    local Row = guiGridListAddRow ( NameGrideList ) 
        guiGridListSetItemText ( NameGrideList, Row, column, getPlayerName ( localPlayer ), false, false ) 
else 
        outputChatBox("Error ",255,0,0) 
    end 
end , false ) 

اخوى الكود ما فرق غير فى رقم واحد كنت ضايفه

الحين يضيف الرو بالقريد ليست بس ارقام مب اسماء

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