Leaderboard
Popular Content
Showing content with the highest reputation on 28/06/19 in all areas
-
This is how you handle these issues, discuss them in a PM. Spamming and putting private conversations in this thread as some of you did only causes us to get involved and stop it. You gain nothing, we gain nothing, the server owner gains nothing. Do not do it again.2 points
-
Honestly, wouldn't recommend. Community Founder never seen in game, Community Manager seen in game, but most of the time - AFK. (Not very friendly one). I was banned (or kicked) and left really dissatisfied. The manager didn't even try to ask me what was wrong, some admins are more on the abusive side. Play at your own risk, but if you get into a bad situation, the admins will play with your nerves.2 points
-
Slipe is an open source framework that enables anyone to write scripts for MTA:San Andreas in C# instead of Lua, wrapping all MTA elements and classes and including some .NET Core namespaces. It is based on CSharp.Lua by Yang Huan. Slipe features: Runs on Windows and Linux Built in continuous deployment support with (GitHub) webhooks Object oriented wrappers for all MTA elements Async/await for MTA functions that use callbacks C# style Http requests, sockets and XML methods. Use Visual Studio and its Intellisense Type safety You can find more information about the project on https://prod.mta-slipe.com. Our Discord Our Github The project is still in Alpha, and since it is open source anyone is welcome to contribute1 point
-
السلام عليكم و رحمه الله و بركاته اليوم حبيت اسوي مود سهل و خفيف بيساعد المبرمجين في البرمجه بشكل كبير طبعا كنت معتزل و لي سنه ما نزلت شي جديد فحبيت اسوي خير شويه المود عباره عن نظام صلاحيات للحسابات وش فايدته .... ؟ مثلا عندك لوحه و تبي تخليها لكم لاعب فقط تقدر تستعمل السكربت عشان تخصص اللوحه لحسابتهم فقط او مثلا عندك لوحه و بها ازرار كتير و مثلا تبي زر يكون خاص للاعب بكل سهوله تقدر تستعمل السكربت السكربت هدفه توفير الوقت + طبعا عدم استخدام طرق التحققات الشائعه بين المبرمجين الي احيانا تسبب مشاكل للسيرفر --------------------------------------------------------------------------------------------------------- Export Functions / الوظائف الي تستطيع استدعائها Server Side : createPremission deletePremission addPremissionToAccount removePremissionFromAccount Client/Server ( Shared ) : getAllPremissions isAccountHasPremission getAccountsWithPremission getPremissionTable isPremissionExist Client Side : getClientAccount ------------------------------------------------------------------------------------- شرح الوظائف : createPremission تستخدم هذه الوظيفه لعمل صلاحيه جديده Usage : createPremission ( premissionName ) premissionName = اسم الصلاحيه الي تباها deletePremission تستخدم هذه الوظيفه في مسح صلاحيه موجوده من قبل Usage : deletePremission ( premissionName ) premissionName = اسم الصلاحيه addPremissionToAccount تستخدم هذه الوظيفه لاعطاء صلاحيه للحسابات .. Usage : addPremissionToAccount ( AccountName , Permission ) AccountName = اسم الحساب Permission = الصلاحيه removePremissionFromAccount تستخدم هذه الوظيفه في مسح صلاحيه من حساب Usage : removePremissionFromAccount ( Account , Permission ) Account = اسم الحساب Permission = الصلاحيه getAllPremissions تجيب لك الصلاحيات الموجوده Usage : getAllPremissions () الوظيفه ترجع لك جدول فيه الصلاحيات الي موجوده isAccountHasPremission تتحقق اذا كان الحساب عنده الخاصيه او لا Usage : isAccountHasPremission ( AccountName , Permission ) ترجع القيمه boolean getAccountsWithPremission تجيب لك الحسابات الي عندها صلاحيه محدده Usage : getAccountsWithPremission ( Permission ) Permission = اسم الصلاحيه ترجع لك جدول فيه اسماء الحسابات الي عندها الصلاحيه ذي getPremissionTable تجيب لك الجدول الكامل للصلاحيات الجدول كالتالي : Permissions = { PermissionName = { Accounts ...... }, etc........... } isPremissionExist تتحقق لك اذا كان في صلاحيه بالأسم الي انت مسويه من قبل او لا Usage : isPremissionExist ( PermissionName ) getClientAccount تجيب لك اسم حساب اللاعب في الكلينت سايد Usage : getClientAccount ( Player ) لو اللاعب مو مسجل بيرجع لك قيمه guest -------------------------------------------------------------------------------------------- طبعا المود يحفظ الصلاحيات لو وقف المود و اشتغل مره تانيه .. *NOTE : لسا ملاحظ اني كتبت كلمه Permission غلط معلش مخدتش بالي رابط التحميل : PERMISSIONS SYSTEM Ver: 1.0.0 المود مو مشفر للي حابب يتعلم كدا كدا المود مخصص للمبرمجين :- UPCOMING SCRIPT / السكربت القادم Resources Manager ( V3 )1 point
-
Hello MTA:SA Community, i release my old Multi-language system. DL: https://github.com/DorteY/mtasa-languagesystem Have Fun1 point
-
ماشاء الله تبارك الله , مافية كلمات توصف ابداعك .1 point
-
local dataNames = { "kill.level", "Level", "Kills", "Death", "walks" }, function eventsHandler ( _, account ) if ( eventName == "onPlayerLogin" ) then for _, v in ipairs ( dataNames ) do local dataValue = getAccountData ( account, v ) if ( dataValue ) then setElementData ( source, v, dataValue ) end end setElementData ( source, "loggedin", true ) elseif ( eventName == "onPlayerQuit" ) then local playerAccount = getPlayerAccount ( source ) if ( playerAccount ) then for _, v in ipairs ( dataNames ) do local dataValue = getElementData ( source, v ) if ( dataValue ) then setAccountData ( playerAccount, v, dataValue ) end end end elseif ( eventName == "onResourceStop" ) then for k,v in ipairs ( getElementsByType ( "player" ) ) do if ( not isGuestAccount ( getPlayerAccount ( v ) ) ) then for _,data in ipairs ( dataNames ) do if ( getElementData ( v , data ) ) then setAccountData ( getPlayerAccount ( v ) , data , getElementData ( v , data ) ) end end end end elseif ( eventName == "onResourceStart" ) then for k,v in ipairs ( getElementsByType ( "player" ) ) do if ( not isGuestAccount ( getPlayerAccount ( v ) ) ) then for _,data in ipairs ( dataNames ) do if ( getAccountData ( getPlayerAccount(v) , data ) ) then setElementData ( v , data , getAccountData ( getPlayerAccount ( v ) , data ) ) end end end end end end addEventHandler ( "onPlayerLogin", root, eventsHandler ) addEventHandler ( "onPlayerQuit", root, eventsHandler ) addEventHandler ( "onResourceStart", root, eventsHandler ) addEventHandler ( "onResourceStop", root, eventsHandler ) جرب هذا1 point
-
المشكلة هي انك تعيد تشغيل السكربت و الناس مسجلة دخول ف لازم تعمل حدث لما يشتغل السكربت و لما يطفي ياخذ المعلومات للموجودين و يحفظها و تنحل1 point
-
Dunno how admins are abusive. Contact me on Discord at Sacred#7706 and let me know why you think so.1 point
-
1 point
-
Preciso que o playSound3D toque nas mesmas coordenadas do marker, tentei dessa forma porém não deu certo phone = { {1970.5, -1776.5999755859, 12.60000038147}, {1365.0999755859, -1741.1999511719, 12.60000038147}, } randomPhone = math.random(1, #phone) function trafVenda () outputChatBox("Tabela randomizada, value: "..randomPhone ) setTimer(function() local markerphone= createMarker(phone[randomPhone][1], phone[randomPhone][2], phone[randomPhone][3], "cylinder",1.1, 16, 102, 231, 100 ) local X, Y, Z = getElementPosition (markerphone) local som = playSound3D ("Phone/telefone", X, Y, Z, false) local blip = createBlipAttachedTo(markerphone, 37, 2) outputChatBox("Marker e Blip criados.") if isElementWithinMarker (getLocalPlayer(), markerphone) then destroyElement(markerphone) destroyElement(blip) outputChatBox("Teste finalizado.") stopSound(som) end end, 15000, 1) end addCommandHandler("teste", trafVenda) BASS ERROR 2 in LoadMedia path:D:\MTA San Andreas 1.5\mods\deathmatch\resources\cristal\Phone\telefone 3d:1 loop:1 ACABEI D PERCEBER QUE N COLOQUEI .MP3 KKKK1 point
-
You will need to update the server to a build that supports it (from after this change: https://github.com/multitheftauto/mtasa-blue/commit/8b6bfe2b6009e42f5783a023d466cc215885b5cd) 64-bit server: - https://nightly.multitheftauto.com/?mtasa_x64-1.5-rc-latest - https://nightly.multitheftauto.com/?multitheftauto_linux_x64-1.5-latest regular server: re-download installer from https://multitheftauto.com1 point
-
هو شغلك كويس , لكن ماعجبني .. استمر في طرح الافكار الجديدة1 point
-
local playersInJobs = { ["job-name"] = {} } table.insert(playersInJobs["job-name"], player) if #playersInJobs["job-name"] == 10 then end1 point
-
اللعبه يلعبها يومياً اكثر من 24 الف شخص , القصه مو انها انقرضت , القصه مافيه شي جديد1 point
-
لاترفعو لنا مواضيع تافها وشكرا ( قلعه تقلعك )1 point
-
قريبا جدا يوم رمضان 8 24/5/2017 -------------------------------- اعزروني ما هنزل صور اليوم عشان الافكار ما تنسرق قبل الأفتتاح الصور يوم الأربع انزلها في أمان الله1 point
-
1 point