Jump to content

</Mr.Tn6eL>

Members
  • Posts

    2,799
  • Joined

  • Days Won

    13

Everything posted by </Mr.Tn6eL>

  1. ماتقدر تحمي الكيك الا من الادمنية وتقدر تعدلها وتحط سيريالات محددة محمية
  2. هو اصلا حق طارة نفس التصميم الاصلي يعني ماعدلو الا على كم شي
  3. زخرفه من اي موقع زخرفة مايحتاج برمجة
  4. الموضوع سطحي جداً، واحنا وش يدرينا عن نظام الديربي حقك
  5. @Abdul KariM وقعت بالخطأ اللي حذرت منه لاحظ استخدام اسم الحساب لجلب الداتا والمفترض الحساب وليس اسمه local accName = getAccountName( getPlayerAccount( client ) ); ... t[7] = getAccountData(accName, "nick");
  6. sourceاذا تبي اسم الشخص اللي ضغطت عليه استخدم function masternew ( _, _, thePlayer ) local account = getPlayerAccount(thePlayer) if account and not isGuestAccount(account) and isObjectInACLGroup("user." .. getAccountName(account), aclGetGroup("Police")) then if getElementType( source ) == "player" then triggerClientEvent ( thePlayer, "openpolice" ,thePlayer,getPlayerName(source)) end end end
  7. يب استخدم هذا الكود مرة وحدة يعني مو لازم تحطه كل مرة تبي تجيب اسم الاعب من حسابه يعني تقدر تجي الاكوانت داتا من اي مود function accounts(_, arg2) if eventName == "onResourceStart" then for k, v in ipairs(getElementsByType("player")) do local account = getPlayerAccount(v) if account and not isGuestAccount(account) then setAccountData(account, "nick", getPlayerName(v)) end end elseif eventName == "onPlayerLogin" then setAccountData(arg2, "nick", getPlayerName(source)) elseif eventName == "onPlayerChangeNick" then local account = getPlayerAccount(source) if account and not isGuestAccount(account) then setAccountData(account, "nick", arg2) end end end addEventHandler("onResourceStart", resourceRoot, accounts) addEventHandler("onPlayerLogin", root, accounts) addEventHandler("onPlayerChangeNick", root, accounts) يكون الاستخدام كذا getAccountData(account, "nick") account هو الحساب وليس اسمه
  8. عندك متغيرات زايدة ماهي مستعملة وعندك بعض الاخطاء في استخدام الحدث onElementClicked راجع function masternew ( _, _, thePlayer ) local account = getPlayerAccount(thePlayer) if account and not isGuestAccount(account) and isObjectInACLGroup("user." .. getAccountName(account), aclGetGroup("Police")) then if getElementType( source ) == "player" then triggerClientEvent ( thePlayer, "openpolice" ,thePlayer,getPlayerName(thePlayer),getPlayerName(source)) end end end
  9. addEventHandler("onResourceStart", .....) يب يقدر يسوي ملف سيرفر جديد ويحط فنشكن يلغي وبالتالي قدر يتجاوزها
  10. ماقلت غلطان طريقتك عملية لو واحد سحب باك اب بس بشرط يكون مشفر 100%
  11. مايهم اذا فيه ترايقر اولا الطريقة حقتك اصلا ماتشغل المود الا بالداتا هذي يعني لو حطيت الداتا المود بيحمل طبيعي زي اي مود ثاني
  12. Use guiGetText with string.find to find text in memo
  13. يب راح تسوي لوب كذا
  14. تقدر تخليه كذا بمود مستقل addEventHandler ( "onResourceStart" , root , function () local MyData = getElementData ( root , "theData" ) if MyData == "RunTheScripts" then exports["guimessages"]:outputServer(root,"resource started!",0,255,0) else cancelEvent () exports["guimessages"]:outputServer(root,"resource can not start! this is not server Gta-4u",255,0,0) end end ) ; بس الطريقة اصلا ما تنفع لانها اصلا ماتحمي ملفات كلنت
  15. لا بس تحتاج تعرفها كذا addEvent("Acconts",true ) addEventHandler("Acconts",root, function (Acc) for i, v in ipairs ( Acc ) do RoW = guiGridListAddRow( GUIEditor.gridlist[1] ) guiGridListSetItemText( GUIEditor.gridlist[1], RoW, 1, v, false, false ) end Accounts = Acc end )
  16. في الكلنت Acconts تحتاج تخزن اسماء حسابات الاعبين في جدول حدث بعدين تستخدم onClientGUIChanged guiGridListClear guiGetText string.lower guiGridListAddRow guiGridListSetItemText
  17. الطريقة اللي تسويها غلط وتشغل الصوت على الداتا وتربطه بالسيارة onClientElementStreamIn تحتاج تسوي السماعات بالسيرفر وتعطيها داتا للصوت المحدد وبالكلنت تستخدم حدث
  18. يبغالك تسوي داتا لحساب الاعب وتحطها اسم الاعب بعدين تجيبها اذكر في كود طرحته يسوي الداتا هذي دور وتلقاه
  19. ليش تحط "اللي يدرس" احس تقهرنا هخخخخخخخخخخخخ
  20. لكن حتى لو حطيتها الارقام نفس الميلادي راح يختلف الشهر الجاي واللي بعده نبغى وظيفة دقيقة 100%
  21. من جاهز يتبرع بكبدته ؟ مقدم طلب بالديب ويب لطباخ يسويلي كبدة بشرية
  22. لا الشهور الهجرية تختلف عن الميلادية وانت قاعد تجيب الشهر الميلادي وتعطيه على اسم هجري
×
×
  • Create New...