Jump to content

x[شرح|حفظ داتا فى ملف اكس ام ال]x


Recommended Posts

guiGridListSetItemText( MyGrid, RowForRow, 1, xmlNodeGetAttributes ( v ).Name ,false, false) 
                    guiGridListSetItemText( MyGrid, RowForRow, 2, xmlNodeGetAttributes ( v ).Money, false, false) 

الكودين دول فيهم خطأ يسوي لاق

الدي بق يقول :

expected string at argument 4

Link to comment

شوف

فى زر اسمه

بيع السيارة

بيع السيارة وظيفته

انه يحذف الرو و يعطى اللاعب فلوس

يوم اضغط على الزر يمسح الرو بس لما ادوس اف 4 الرو يرجع !!

لازم اعادة حفظ للداتا

ان الرو اتحذف

Link to comment
addEventHandler("onClientGUIClick",root, 
function ( ) 
if ( source == SellButton ) then 
guiGridListRemoveRow(MyGrid,guiGridListGetSelectedItem(MyGrid)) 
triggerServerEvent("GiveMoneyDestroyVehicle",localPlayer) 
end 
end 
) 

addEventHandler("onClientGUIClick",root, 
function ( ) 
    if ( source == SellButton ) then 
      local veh = xmlLoadFile ( 'Vehicles.xml' ) 
        if veh then 
            for k,v in ipairs ( xmlNodeGetChildren ( veh ) ) do 
                if xmlNodeGetAttributes ( v ).Name == guiGridListGetSelectedItemText ( MyGrid, 1 ) then  
                    xmlNodeSetAttribute ( v, 'Name', nil ) 
                        xmlNodeSetAttribute ( v, 'Money', nil ) 
                            xmlDestroyNode ( v ) 
            end 
        end 
            xmlSaveFile ( veh ) 
                xmlUnloadFile ( veh ) 
                    guiGridListRemoveRow(MyGrid,guiGridListGetSelectedItem(MyGrid)) 
                        triggerServerEvent("GiveMoneyDestroyVehicle",localPlayer) 
            end 
        end 
    end 
) 
اتوقع يوم يبيع السيارة وتحذف الرو لازم تستخدم

xmlSaveFile

هو بالأساس ما حذف السياره من الاكس ام ال كيف يسوي حفظ؟

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