Leaderboard
Popular Content
Showing content with the highest reputation on 25/06/18 in all areas
-
السلام عليكم ورحمة الله وبركاته طبعا اليوم معنا سكربت الـ رسالة العامة معروف ادري بس الانا مسويه في تقنيات ماشفتها في اليوتيوب ملاحظة :- الاكواد مكتوبة باليد كود كود المقطع الخاص بالفيديو :- مشاهدة ممتعة ان شاء الله متميزات السكربت تجدونها كلها في المقطع لاتنسى دعمي بالضغط على زر لايك , والاشتراك بالقناة ليصلك كل جديد . والسلام عليكم ورحمة الله وبركاته2 points
-
Join our discord server to stay tuned! https://discord.gg/T8KH3Cq You can also share your opinions and feedbacks there. Check our new forums as-well here https://westsiderpg.com Whats new? Thats just few of the recent updates! Join us at our forums at; https://westsiderpg.com or Join our discord to get updated more often! https://discord.gg/T8KH3Cq2 points
-
Currently I'm working on a new map editor with more features and a more user friendly UI however a major thing I'd like to see is what you (The Community) want to see added in the editor. If you respond with a feature request please state the name of the feature or tool as well as a brief description; I'll be posting some screen shots of what the new tool will look like as soon as I have the basic functionality done.1 point
-
Salut, prin acest "story" vreau sa atentionez pe majoritatea ce doresc sa cumpere un gamemode/scripturi de la un Scripter Roman, Simple01. Prima oara cand am luat legatura cu Simple a fost prin luna Mai, eu dorind un gamemode pentru un server de Roleplay pe care il doream sa il deschid. A zis ca daca vreau un gamemode de la 0 poate dura pana la 3 luni cu + sau - , sau un gamemode cu o baza de date aleasa de mine la jumatate de pret fata de ce-l de la 0. Am ales sa mergem pe baza Paradise Roleplay cu un timp de finalizare aproximativ de 1 luna jumatate cu + -. Intelegerea de bun inceput unde am batut palma amandoi a fost sa ii dau mai intai jumatate din bani la inceput si la sfarsit inca jumatate. Pe parcurs am fost amanat de cateva ori cu pretextul ca "o data ce nu i am dat vreun ban poate abandona cand vrea", eu deja facand rost de majoritatea banilor si asteptand si restu tovarasilor mei sa ii predea. Prima transa de bani au fost trimisi pe data de 14 mai, in aceeasi zi apucandu-se de lucru. A lucrat aproximativ 3-4 zile apoi spunandu-mi ca are ceva examene si nu stie cat mai poate lucra. I-am zis ca este ok si l-am asteptat aproximativ pana pe 8 iunie pentru a reveni si sa isi termine toata treaba pe care o avea. Mai pe scurt dupa o luna, la gamemode erau modificate doar cateva scripturi maxim 4-5. Undeva pe la mijlocu lunii iunie am fost anuntat tot de Simple ca el nu mai vrea sa mai contribuie la proiect si ca imi face doar jumatate din pe care i-am dat o, fara a avea un motiv. Asta a facut o dupa ce ne-am inteles cu proiectu, preturile si timpu avut. El nerespectandu-si vorbele pe care le-a zis cand eu i am dat banii.Am vazut ca nu este un tip serios si dorind sa scap cat mai rapid de el am zis ok, fa-mi gamemodu jucabil pentru a putea sa ii dau drumu pe data anuntata. I-am dat o noua lista cu task-urile pe care trebuia sa le faca, a acceptat-o . Pana pe data de 16 iunie a lucrat ca un melc pot zice, aici a fost si ultima oara cand am luat legatura cu el. Am primit block pe majoritatea platformelor folosite. Mi-a fost transmis prin alt baiat ca "serviciile lui au fost concluse" . Gamemode-ul nu este deloc jucabil, totul este situat in SF nemodificand mai absoult nimic. Ce ar mai trebuii sa cunosti despre Simple ? -O data trimisa o lista cu toate scripturile pe care le vrei, la inceputul proiectului este imposibil de mai adauga ceva sub pretextul "Asta nu scrie pe lista,nu lucrez" -El nu lucreaza in weekend, dupa ce l-am asteptat aproape 1 luna sa isi de a examenele si i-am zis hai pe server sa lucram mi sa raspuns cu "este Duminica" -O data ce ai hotarat cu el niste lucruri de la inceput el le poate modifica pentru ca este "scripteru" . -Mi sa oferit la jumatate de pret fata de gamemode-ul hotarat de noi, ca poate incerca sa se faca scripter pe un alt server de Roleplay cu "reputatia" lui si sa fure gamemod-ul contra o suma de bani, apoi trimitandu-l mie pentru a il folosi. -Tot el a venit cu o propunere la mine cu pretextu sa fie el scripter permanent la mine in schimbu la jumatate din donatiile pe care le primesc, aici l am refuzat si probabil d-asta a si renuntat la mijlocu proiectului. Prin asta sper sa conving si alti oameni ce pe viitor se gandeau sa apeleze la serviciile lui, eu unu am cazut intr-o plasa si pierzand bani,o cumunitate de 60+ playeri si mult timp de pe urma lui. Sunt curios cat timp o sa se mai laude cu expersia asta : Orice dovada foto/video o puteti cere la ID discord : GabiV [Skeedz]#15121 point
-
تسلم وانت الاروع والجاي افضل ان شاء الله وبيكون فيه لوقات1 point
-
1 point
-
1 point
-
1 point
-
Oh. In that case I'd just modify the original code I gave, to select the lowest index rather than value local lowest = math.huge for key, value in pairs(sortedTable) do if type(key)=="number" and key < lowest then lowest = key end end -- or alternatively, use a loop that doesn't use pairs function local lowest = 0 while (true) do -- warning: this will loop indefinitely if the table has no indices that aren't numbered lowest = lowest + 1 -- keep incremeting the index if sortedTable[i] then -- until an index is found with a logically non-false value break -- and escape the while-loop end end -- Now here, -- lowest = the lowest number index in the table, and of course, -- sortedTable[lowest] = the value of the lowest index of the table1 point
-
If it's already sorted, you should be able to pick the first value and it should be the lowest, and the last value which would be the highest sortedTable[1] -- first value, the lowest if sorted properly sortedTable[#sortedTable] -- last value, the highest if sorted properly1 point
-
I'm unsure which method is faster or more optimised, but you can do either function getLowestValue(haystack) assert(haystack and type(haystack) == "table", "Bad argument @ 'getLowestValue' [Expected 'table' at argument 1, got '"..type(haystack).."']") local lowest, thekey = math.huge, nil -- set lowest to value of infinity for key, value in pairs(haystack) do if value < lowest then -- if this value is lower than the lowest value found so far (infinity to begin with) lowest, thekey = value, key -- set that lowest value to this value and store the key/index where we found the value end end return lowest, thekey -- return the lowest value found along with the key/index under which it was found (nil if there was nothing lower than infinity) end or try using table.sort to sort the table by value from lowest to highest (not sure if this works for tables with non-integer/non-sequential keys/indices) and simply access the first index of that table. Table.sort is part of Lua's standard libraries, which means it is implemented in C. Both methods definitely iterate the table, and I've heard that in some instances, table.sort can be slower than other sorting algorithms written in pure Lua.1 point
-
1 point
-
1 point
-
وياريت ماتكون زعلت انا بس ابي اقدم شي حلو للمشاهدين .. فقط لاغير1 point
-
جاتني الفكرة لما كنت قاعد اسوي لوحة وشفت كل المودات حقت الرسالة العامة كلهم كدا قلت ليش ماخلي الوقت يجي في ايديت بوكس ؟؟ يكون شي حصري بس بالنسبة للفيديو حقك لا ماشفته الا الحين لما انت عطيتني الرابط عليه افضل الصلاة والسلام1 point
-
1 point
-
السلام عليكم ورحمة الله وبركاته صاحب السيرفر هو مانستر وليس انا انا معتزل حاليا من اللعبة سبق وتكلمت وقلت اني معتزل وبخصوص تحديثات و اخبار السيرفر تجيني من الإدارة وانا اكتبها لكم هنا بالتوفيق1 point
-
Hey Dear MTA Community! Today i wanna show you my new works (almost all of them aren't finished because i didnt have to finish them). And i want to offer myself as an UI/GUI/Web designer, i've really cheap designs (depends on what do you need). Before you contact me you have to know that i'm really bad in logos. Thanks for reading and enjoy watching. SKYPE: Jekorgi DISCORD: Jekorgi #8655 E-Mail: [email protected] You can find my all works there: https://imgur.com/a/VFKnQhY Simple avatar: YouTube Banner: Race HUD: Wallpaper: Business card: Instagram redesign: Forum theme: Simple tournament logo: Race HUD: Ranks for my Race:1 point
-
السلام عليكم ورحمة الله وبركاته .. شباب انا عندي الاستعداد افتح سيرفر استضافة لكل شخص يتمنى ان يكون عنده سيرفر استضافة .. ادري فيه البعض عنده مشاكل ماليه الـ اخر .. ولاكن انا اتكفل بكل شي اشتراك + تجديد العدد محدود راح اسلم [ 3 ] سيرفرات فقط + لي كونسل كامل الصلاحيات بكل سيرفر وصاحب السيرفر له جميع الصلاحيات .. العدد محدود فقط : 3 للتواصل : instagram: ylt2 Skype : live:a_e_101 point
-
1 point
-
1 point
-
1 point
-
1 point
-
السلام عليكم ورحمة الله وبركاته كيفكم ياشباب , ان شاء الله بخير طبعا اليوم اول سكربت لي في الفورم والمساهمات , واليوتيوب كمان ض1 المهم السكربت عبارة عن رسالة تأتي من الجنب الايمن من الشاشة الى الجنب الايسر السكربت سهل ومايحتاج شي , بس عشان بس بداية القناة كدا وكدا جبت شي سهل بس بعد كدا , بسوي كل التبغوه من موادت الفيديو الخاص بالسكربت اتمنى لكم مشاهدة ممتعة وجميلة رابط السكربت الخاص بالفيديو :- https://up.top4top.net/downloadf-8895nb9f1-zip.html الحقوق لجميع السيرفرات العربية لان السكربت شامل . وان شاء الله مارح اقصر معكم في شي * لا تنسوا دعمي :- لايك , اشتراك , كومنت الجميل , واهم شي النشر لتستفيد انت وغيرك . ( في امان الله ورعايته )1 point
-
والحين بينزل سكربت الرسالة العامة بس صبر باقي المونتاج انتظروني1 point
-
1 point
-
addEventHandler ( "onClientPlayerDamage", getRootElement(), playerdamaged ) to addEventHandler ( "onClientPlayerDamage", getLocalPlayer(), playerdamaged )1 point
-
1 point
-
تحديث جديد للاستضافه تغيير الشكل , اضافه لغة الانجليزيه https://billing.4acm.net عطونا رايكم بكل صراحه حول التصميم الجديد1 point
-
It may become official, however I'm not sure. And the other stuff is for sure planned. Code structure is kinda a mess right now but I'm going to clean it up quite a lot and get some people to review it before first release.1 point
-
هو يبي انه لما يجي شخص يفك ميوت يصير تحقق إذا بيفك ميوت نفسه مايخليه اما انت حاط سيريالات معينة تفك ميوت .. if ( targetPlayer ~= player ) then1 point
-
I'll want to do an encoder anyway, so if I'll finish it I'll post it here.1 point
-
Update: - Added function to get window parts. There is function to get window frame (window:getFrame()) and window header image - part, where located title and close button (window:getHeader()), and for tab panel you now can get tab button (tab:getTabHeader([string/gui-element] TabIndex)). - Added functions to create custom labels. It looks like default labels, but it connected with window color scheme - Fixed events, now you can add every event of object with its method - obj:addEvent(). If event doesn't exists, you can create it using default function addEvent(...), and then add event using object method. For more information look at the example.lua. In updated file all parent windows replaced with methods of getting frame of its window, replaced all addEventHandler's to method addEvent of object, and added example for labels.1 point
-
1 point
-
أبحث عن كافة العاب MMO RPG لا تخاف ماهي كثيرة مره قليلة على حسب علمي وشوف كل لعبة ولعبة يمكن تلقى لعبتك وبالتوفيق + حمستني العب اللعبة يولد1 point
-
You don't have to hide each GUI element, just use the parent element. The parent elements, in this case, are the window and the gridList. guiSetVisible( GUIEditor.window[1], bool ) guiSetVisible(GUIEditor.gridlist[1], bool) That is enough. Edit: Hide only the window, gridList is the window's child. But the problem was the window's variable 'name' that wasn't being used on the other elements, instead it was 'GUIEditor.window [1]'. And in your last code, replace 'name' with GUIEditor.window[1] in guiWindowSetSizable.1 point
-
السلام عليكم ورحمة الله وبركاتة طبعا اليوم حاب اني ابيع حسابي بـ ستيم . معلومات الحساب لفل الحساب 81 150 لعبة فيه جراند والعاب جميلة . والحساب صارله سنتين , ===== اللي حاب يشتري حساب لعبة Smite ==== حساب اللعبة لفل 115 كل السكنات موجوده كل الشخصيات موجوده ========== اللي حاب يشتري يكلمني هنا او في دسكورد !!dd#7064 الدفع عن طريق باي بال فقط !0 points
-
بسم الله الرحمن الرحيم السلام عليكم ورحمة الله وبركاته محاربين الزومبي سيعود من جديد بإذن الله بعد ماتم اغلاقه قبل فترة سنعود بأقوى الحصريات انتظرونا ، ونعمل لرضاكم0 points
-
0 points