I_Mr.[T]he[P]rInCe Posted May 9, 2015 Share Posted May 9, 2015 سلام عليكم الموضوع من عنوانة ابي شرح للاكونت داتا AccountData لما استخدم الكود يقولي Bad arugumnt @ 'getAccountData' Expected account at arugumnt 1, got boolean والسلام خير ختام Link to comment
</Mr.Tn6eL> Posted May 9, 2015 Share Posted May 9, 2015 الاكوانت داتا عبارة عن بيانات تحطها بحساب الاعب ورني كودك نشوف الخطا Link to comment
Walid Posted May 9, 2015 Share Posted May 9, 2015 -- طريقة الإستعمال local account = getPlayerAccount(player) if not isGuestAccount(account) then setAccountData(account, key, value) -- or getAccountData(account,key) end Link to comment
I_Mr.[T]he[P]rInCe Posted May 9, 2015 Author Share Posted May 9, 2015 الاكوانت داتا عبارة عن بيانات تحطها بحساب الاعبورني كودك نشوف الخطا function onMarkerHi(pl) if (getElementType (pl) == "vehicle") then if (source == mar) then local vAcc = getPlayerAccount(root) if getAccountData (vAcc, "Name") == true then outputChatBox("لديك الرخصة", root, 255, 0, 0) else outputChatBox("ليس لديك الرخصة", root, 255, 0, 0) end end end end addEventHandler("onMarkerHit", getResourceRootElement(), onMarkerHi) Link to comment
I_Mr.[T]he[P]rInCe Posted May 9, 2015 Author Share Posted May 9, 2015 -- طريقة الإستعمال local account = getPlayerAccount(player) if not isGuestAccount(account) then setAccountData(account, key, value) -- or getAccountData(account,key) end value اللي هي true <<< false ؟ Link to comment
Walid Posted May 9, 2015 Share Posted May 9, 2015 -- موش باللازم تكون true function onMarkerHi(plr,matchDim) if matchDim and isElement(plr) and getElementType(plr) == "player" then if (source == mar) then if isPedInVehicle(plr) then local account = getPlayerAccount(plr) if getAccountData (account, "Name") == true then outputChatBox("???? ??????", plr, 255, 0, 0) else outputChatBox("??? ???? ??????", plr, 255, 0, 0) end end end end end addEventHandler("onMarkerHit", getResourceRootElement(), onMarkerHi) Link to comment
I_Mr.[T]he[P]rInCe Posted May 9, 2015 Author Share Posted May 9, 2015 -- موش باللازم تكون true function onMarkerHi(plr,matchDim) if matchDim and isElement(plr) and getElementType(plr) == "player" then if (source == mar) then if isPedInVehicle(plr) then local account = getPlayerAccount(plr) if getAccountData (account, "Name") == true then outputChatBox("???? ??????", plr, 255, 0, 0) else outputChatBox("??? ???? ??????", plr, 255, 0, 0) end end end end end addEventHandler("onMarkerHit", getResourceRootElement(), onMarkerHi) يعني value true او false Link to comment
Walid Posted May 9, 2015 Share Posted May 9, 2015 يعني valuetrue او false value تعني الحاجة إلي إنت عايز تحفظها مثال local x,y,z = getElementPosition(plr) local account = getPlayerAccount(plr) if account then setAccountData(account, key , toJSON({x,y,z}) end Link to comment
I_Mr.[T]he[P]rInCe Posted May 9, 2015 Author Share Posted May 9, 2015 يعني valuetrue او false value تعني الحاجة إلي إنت عايز تحفظها مثال local x,y,z = getElementPosition(plr) local account = getPlayerAccount(plr) if account then setAccountData(account, key , toJSON({x,y,z}) end شرط تكون موجودة ؟ Link to comment
Walid Posted May 9, 2015 Share Posted May 9, 2015 (edited) شرح تكون موجودة ؟ في المثال السابق قمنا بحف مكان اللاعب local x,y,z = getElementPosition(plr) local account = getPlayerAccount(plr) if account then setAccountData(account, key , toJSON({x,y,z}) end -- التحقق من وجودها local x , y,z = unpack( fromJSON(getAccountData(account ,key))) Edited May 9, 2015 by Guest Link to comment
I_Mr.[T]he[P]rInCe Posted May 9, 2015 Author Share Posted May 9, 2015 شرح تكون موجودة ؟ في المثال السابق قمنا بحف مكان اللاعب local x,y,z = getElementPosition(plr) local account = getPlayerAccount(plr) if account then setAccountData(account, key , toJSON({x,y,z}) end -- التحقق من وجودها local x , y,z = unpack( getAccountData(account ,key)) اخي اقولك شرط تكون موجودة مو شرح Link to comment
I_Mr.[T]he[P]rInCe Posted May 9, 2015 Author Share Posted May 9, 2015 شرح تكون موجودة ؟ yes مشكور Link to comment
*[MSN]MHMD Posted May 9, 2015 Share Posted May 9, 2015 https://forum.multitheftauto.com/viewtopic.php?f=164&t=62247&sid=45e4f5f002cebbf457335cf7c46a7878 Link to comment
</Mr.Tn6eL> Posted May 9, 2015 Share Posted May 9, 2015 شرح تكون موجودة ؟ في المثال السابق قمنا بحف مكان اللاعب local x,y,z = getElementPosition(plr) local account = getPlayerAccount(plr) if account then setAccountData(account, key , toJSON({x,y,z}) end -- التحقق من وجودها local x , y,z = unpack( getAccountData(account ,key)) اخر سطر تحقق ان الداتا موجود وثم استعمل استعمل fromJSON Link to comment
I_Mr.[T]he[P]rInCe Posted May 9, 2015 Author Share Posted May 9, 2015 كذا صح setAccountData(getPlayerAccount(plr), "name", getPlayerAccount(plr)) Link to comment
Simple. Posted May 9, 2015 Share Posted May 9, 2015 كذا صحsetAccountData(getPlayerAccount(plr), "name", getPlayerAccount(plr)) يب بس لازم تكون معرف plr وبعدين ليه تجيب الحساب وتحط له داتا فيها اسم حسابه؟ Link to comment
I_Mr.[T]he[P]rInCe Posted May 9, 2015 Author Share Posted May 9, 2015 كذا صحsetAccountData(getPlayerAccount(plr), "name", getPlayerAccount(plr)) يب بس لازم تكون معرف plr وبعدين ليه تجيب الحساب وتحط له داتا فيها اسم حسابه؟ plr حاتطها في الفنكشن function (plr) وبعدين ليه تجيب الحساب وتحط له داتا فيها اسم حسابه؟ مو فاهم ايش تقصد Link to comment
Simple. Posted May 9, 2015 Share Posted May 9, 2015 كذا صحsetAccountData(getPlayerAccount(plr), "name", getPlayerAccount(plr)) يب بس لازم تكون معرف plr وبعدين ليه تجيب الحساب وتحط له داتا فيها اسم حسابه؟ plr حاتطها في الفنكشن function (plr) وبعدين ليه تجيب الحساب وتحط له داتا فيها اسم حسابه؟ مو فاهم ايش تقصد setAccountData(getPlayerAccount(plr), "name", getPlayerAccount(plr)) انا اقصد آخر ارقمنت انت مسوي الداتا تجيب حسآب اللاعب يعني مثلا حساب اللاعب Prince تجيب حسابه وتحطها في الداتا مافهمت الفايده منها Link to comment
I_Mr.[T]he[P]rInCe Posted May 9, 2015 Author Share Posted May 9, 2015 انا ابي اسوي ماركر لما احد يلمسه يسويله الداتا ذي غلط؟ Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now