Leaderboard
Popular Content
Showing content with the highest reputation on 02/07/18 in all areas
-
بعض الناس اسلوبه زبالة الناس تحاول تساعدك وانت اسلوبك زباله معهم , بنظري .. انك لاتستحق المساعده5 points
-
3 points
-
3 points
-
السلام عليكم ورحمة الله وبركاته طبعا اليوم معنا سكربت جميل لمراقبة السيرفر عند دخولك اليه معنا سكربت مراقبة الشات .. او بمعنى اصح .. لوق الشات جميع الحصريات تجدونها في الفيديو * لا تنسوا دعمي بالايك والاشتراك . ______________________________________________ الاهدائات @+1HidroNex @#[K]iLLeR<3 @Mr_SnipeR<3 @!#NssoR_) @JN[T]OoOoL @RoSsi @N3xT @*RayaN-Alharbi @بويكا @KhaledAlamri ولكل من يضع تعليق ولمن لم يضع ايضا تعليق ___________________________________________ في أمان الله2 points
-
2 points
-
مسوي له بس مب مسوي له حق الخط مسوي بالعجلة فقط آمين وياك2 points
-
2 points
-
السلام عليكم يا ريت مكنش بزعجم بس اليعرف شئ يا ريت يفيدني انا دارس 3ds Max و معي دبلومه بس هو مختلف تماماً عن استخدامه في MTA بدي اعمل اوبجت به اضأه و يتحرك بعرف اصمم و اخرج الاوبجت كامل DFF , TXD , Col بس ماعرف استخرج معه اضائه او حركه بس شكراًً يريت توضيح1 point
-
file functions انا انصحك انك تحوله ل لان قاعدة البيانات تشفر المعلومات ويكون حجمها كبير بالسكربت من ناحية فكرة المود وايضا المعلومات موب مهمة عشان تسويها قاعدة بيانات وبالتوفيق ان شاء الله1 point
-
1 point
-
لو ان اللوحة مهمة وفيها خواص, مثل الباند وغيره ممكن اللاعب يفتحها ويخرب كل السيرفر, وزي ما قال عبدالكريم راح ترجع قيم خاطئة1 point
-
1 point
-
local BlockedWords = { "mtasa", "second", "third", "addmore", } addEventHandler("onPlayerChat",getRootElement(), function(message, type) cancelEvent() if (type == 1) or (type == 2) then cancelEvent() end if (type == 0) then local new = "" local counter = 0 for word in message:gmatch("%S+") do counter = counter + 1 for i, swr in ipairs(BlockedWords) do local src = word:lower():gsub("%s", "") local src = src:gsub("#%x%x%x%x%x%x", "") local src = src:gsub("%c", "") local src = src:gsub("%p", "") local pat = swr:lower():gsub("%s", "") if src:find(pat) then local replaceString = "" for x=1,word:gsub("#%x%x%x%x%x%x",""):len() do replaceString = replaceString.."*" end word = word:gsub(word, replaceString) end end if counter == 1 and word:len() > 2 then word = word:gsub("%a", string.upper, 0) end new = new..word.." " end if new ~= "" then message = new end outputChatBox(getPlayerName(source)..":#FFFFFF "..message, root, 255, 255, 255, true) end end)1 point
-
ض ، عشانك كويتي تدافع عنه مو قصدي اهانة ولا شي ولاكن ادري ولاكن شعيب مستفز جدا اول مرة ازعل عليه كل مرة يطير في جبهات الناس الحين ماتدري وين طارت بجهته1 point
-
1 point
-
-- حط السيريالات هنا local Serials = { ["sssssssssssssssssssssssssssssss"] = true, } GUIEditor = { button = {}, window = {}, edit = {} } local screenW, screenH = guiGetScreenSize() GUIEditor.window[1] = guiCreateWindow((screenW - 293) / 2, (screenH - 113) / 2, 293, 113, "توزيع السلحة", false) guiWindowSetSizable(GUIEditor.window[1], false) GUIEditor.edit[1] = guiCreateEdit(9, 31, 182, 32, "", false, GUIEditor.window[1]) GUIEditor.button[1] = guiCreateButton(191, 32, 91, 35, "اعطاء اسلحة", false, GUIEditor.window[1]) guiSetFont(GUIEditor.button[1], "default-bold-small") guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FF12FE00") guiSetFont(GUIEditor.button[2], "default-bold-small") guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FF12FE00") GUIEditor.button[3] = guiCreateButton(9, 67, 91, 35, "اغلاق", false, GUIEditor.window[1]) guiSetFont(GUIEditor.button[3], "default-bold-small") guiSetProperty(GUIEditor.button[3], "NormalTextColour", "FF12FE00") GUIEditor.button[4] = guiCreateButton(192, 67, 91, 35, "اعطاء الكل اسلحة", false, GUIEditor.window[1]) guiSetFont(GUIEditor.button[4], "default-bold-small") guiSetProperty(GUIEditor.button[4], "NormalTextColour", "FF12FE00") addEventHandler("onClientGUIClick",root,function () if source == GUIEditor.button[1] then local houres = guiGetText(GUIEditor.edit[1]) triggerServerEvent("Give;Houres",localPlayer,houres) elseif source == GUIEditor.button[2] then triggerServerEvent("Enable;Houres",localPlayer,'true') elseif source == GUIEditor.button[4] then triggerServerEvent("Enable;Houres",localPlayer,'false') elseif source == GUIEditor.button[3] then guiSetVisible(GUIEditor.window[1],false) showCursor(false) end end) guiSetVisible (GUIEditor.window[1], false ) function OpenWin() if Serials[getPlayerSerial(localPlayer)] then if guiGetVisible(GUIEditor.window[1]) then guiSetVisible(GUIEditor.window[1],false) showCursor(false) guiSetInputEnabled(false) else guiSetVisible(GUIEditor.window[1],true) showCursor(true) guiSetInputEnabled(true) end end end addCommandHandler ("word", OpenWin) -- غير كلمة word بالي تبيه1 point
-
1 point
-
------------ Client string.find guiGetText onClientGUIClick getPlayerMoney takePlayerMoney -------------- Server onPlayerLogin ----------- dbConnect -- or setAccountData getAccountData ----------- setElementData getElementData اظن كذا1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
Tem sim. Use as seguintes funções: setPedAnimation - Coloca uma animação em um jogador ou NPC. getDistanceBetweenPoints3D - Verifica a distância entre 2 coordenadas, use para verificar se o mecânico está perto de um carro para ser consertado. fixVehicle - Recupera um veículo. addCommandHandler - Evento que ativa uma função ao usar determinado comando, por exemplo /arrumar.1 point
-
1 point
-
The decompilation key for level 1 obfuscation (as listed on https://luac.multitheftauto.com) has been circulating in certain hacking groups for a while because it had previously been compromised. In response to level 1 obfuscation becoming insecure, we created level 2 - "More" option. While level 2 obfuscation is a way stronger level of obfuscation, nothing is completely secure. Every single time the current highest level of obfuscation gets cracked, we try to implement a new one as fast as possible. Everything can be breached. So to keep your scripts as safe as possible, you should always use the highest level of obfuscation that https://luac.multitheftauto.com offers, and perhaps also take measures like someone else posted directly above me. Generally speaking, only scripts still obfuscated with the previous, outdated level encryption are susceptible, we advise a re-compile whenever you see that luac.multitheftauto.com starts offering a new level of obfuscation. As I said, nothing is secure. Whenever our latest obfuscation level is cracked, we will take our best efforts to implement a new (tougher) level to replace it for those who want heightened security. Please note that it takes both people that wouldn't usually spend their time playing games (but use their cracking skills for darker purposes) to crack each new generation of obfuscation, and quite some resources to achieve that. Also, alot of people on MTA contend that securing your resources with compiling is a matter of "best effort" (atleast preventing very easy theft, a first layer of defense) and might even be unnecesary/useless for various reasons. However, as I wrote earlier, we take it seriously to continuously offer you the most secure options to aid you in that quest. While nothing related to the possibilities we offer for compilation is completely breach-proof, there's some reasons why the chance you and your scripts become a victim is low, and also why decompiled scripts are often renderred largely useless (thus dealing no harm to you as creator), are pretty low; (open the spoiler)1 point
-
اذا يا صاحب الموضوع بتستعمل الكود ذا لا تنسى تسوي تحقق ان الرقم أصغر من اللي فالجدول عشان ما يتعدا الجدول ويصير بق1 point
-
0 points
-
0 points
-
0 points
-
0 points