Jump to content

SycroX

Members
  • Posts

    2,141
  • Joined

  • Last visited

  • Days Won

    15

Everything posted by SycroX

  1. علي وش تتهاوشون انتم ؟ عشان واحد صمم لوحه فقط يبقا المود كلو بحقوقو ؟ اجل وين راحت حقوق برستيج المبرمج الأصلي للمود ؟
  2. لا انا استخدم الطريقه دي دايما + تظبط اطرح ال dxDrawText حقك
  3. @N3xT ترا ما يحتاج تسوي تريجر .. كل الي عليه يضيف الجدول في ملف اخر فقط + local يشيل
  4. ضايف المود لجروب ادمن ؟
  5. لا طبعا بكل سهوله مثال : _dxDrawRectangle = dxDrawRectangle function dxDrawRectangle(xx, yy, ww, hh, color, postgui) local x, y, w, h = convertToAllScreens(xx, yy, ww, hh, resolutionX, resolutionY) return _dxDrawRectangle(x, y, w, h, color, postgui) end شيل ذول resolutionX, resolutionY و حط مقاس الشاشه حقك مكانهم
  6. addEventHandler("onClientGUIClick", guiRoot, function () if source == GUIEditor.checkbox[1] then if guiCheckBoxGetSelected(GUIEditor.checkbox[1]) then triggerServerEvent("vehColorRandom", localPlayer, true) else triggerServerEvent("vehColorRandom", localPlayer, false) end end end ) ---#Server local timers = {} addEvent("vehColorRandom", true ) addEventHandler("vehColorRandom", root, function(bool) if isPedInVehicle(source) then local vehicle = getPedOccupiedVehicle(source) if vehicle then if bool then if timers[source] then return end timers[source] = setTimer(setVehicleColor, 200, 0, vehicle, math.random(0, 255), math.random(0, 255), math.random(0, 255)) else if timers[source] then killTimer(timers[source]) timers[source] = nil end end end end end )
  7. وظيفه حلوه بالتوفيق وظيفه مفيده جدا بالتوفيق روك
  8. لا ما تحذفهم في برامج لتشفيرهم بفلوس اظن او كان في برنامج مسويه مايكرو مو فاكر الرابط حقو بس كان مجانا
  9. مشكور EH10 منور المنتدي تسلم ركان
  10. تحديثات جديده + اصدار جديد للجيم مود و بعض المودات بمناسبه عيد الفطر المبارك 14/6/2018 يوم ------------------------
  11. cache="false" في الميتا و خلصت نفسك :-
  12. كود هيمو صح | بس انا ضفت له بعض التحققات عشان ما يطلع لك دي بق مثلا لاعب خرج و انت جيت تصكه بيطلع لك انه قيمه اللاعب نيل او غير اسمه الخ يعني .. --client addEventHandler("onClientGUIClick", root, function () if source == aAdminButtonTO then local selectedRow = guiGridListGetSelectedItem(aTab1.PlayerList) if selectedRow and selectedRow ~= -1 then local selectedPlayerName = guiGridListGetItemText(aTab1.PlayerList, selectedRow, 1) triggerServerEvent("Admin:SlapPlayerNow", localPlayer, selectedPlayerName) end end end ) -- #server addEvent("Admin:SlapPlayerNow", true) addEventHandler("Admin:SlapPlayerNow", root, function(selectedPlayerName) local player = getPlayerFromName(selectedPlayerName) if player and isElement(player) then if not isPedDead(player) then killPed(player, player) end end end )
  13. ابداع x ابداع موفق هيمو
  14. guiSetEnabled(aTab1.Mute, iif [ mute ] "Unmute" ,true) وش ذا ؟؟؟؟؟
  15. يب لسا مرغوب من البعض حتي ولله سيرفري يدخله اجانب من الهند و تركيا لهيك بفكر اسويه بـ3 لغات
  16. عندك اداره كويسه و تقدر تبرمج = افتح حرب عصابات لسا فاتح سيرفر من شهر في اقل من اسبوعين صار يوصل 40 - 50
  17. ما يحتاج توقف start stop stopall restart لانها اصلا تحتاج صلاحيات و لو انت معطيه واحد الصلاحيات و جيت قفلت دول اكيد يعني بيروح للوحه و يستخدمهم من هناك + ثاني شي ما في طريقه منهم تمنع السرقه كلهم طرق حمايه السيرفر و اف 8 من التخريب ---------------------- الطرق الوحيده لمنع المودات من السرقه كالتالي : 1 - اشتري من شركه كويسه و أمانه 2 - لا تعطي الاف تي بي لاحد غيرك 3 - cache="false" لكل ملفات الكلنت سايد --- بالتوفيق
  18. ذي حطها بالملف الي هتشفره addEvent("add_g",true) addEventHandler("add_g",root, function (splayer,sgroup) if not isObjectInACLGroup("user."..getAccountName(getPlayerAccount(source)),aclGetGroup(allowedGroup)) then outputChatBox("* لايوجد لديك صلاحيات لفعل هذا.",source,255,0,0) outputDebugString("* "..getPlayerName(source).." had attempted to hack the server",2) return end if isGuestAccount(getPlayerAccount(getPlayerFromName(tostring(splayer)))) then outputChatBox("* You can't add "..splayer.." to "..sgroup.." because he is not logged in",source,255,0,0) return end for _ ,v in ipairs ( myGroup ) do if not aclGetGroup ( v ) then outputChatBox("Error", source) return end if getPlayerFromName(tostring(splayer)) == source and v == sgroup then outputChatBox("* لايوجد لديك صلاحيات لفعل هذا.",source,255,0,0) return end end aclGroupAddObject (aclGetGroup(sgroup), "user."..getAccountName(getPlayerAccount(getPlayerFromName(splayer)))) outputChatBox("* "..splayer.." تم الترقية بنجاح "..sgroup.."",source,0,255,0) outputChatBox("* تم ترقيتك إلى "..sgroup.." من قبل "..getPlayerName(source).."",getPlayerFromName(splayer),0,255,0) end ) و ذي للملف الي تباه ما ينشفر myGroup = {"Console", "Admin"}
×
×
  • Create New...