-
Posts
1,830 -
Joined
-
Last visited
Everything posted by Me[Z]oO
-
setElementData(source, "Account", getAccountName(account)) !!!!
-
انت فاهم وش يبي بالضبط؟ عطاه #J2mes يبي يحط علي كل الاكونتات داتا انا خليت اول ما اللاعب يدخل يحط ع الاكونت بتاعه داتا ويقدر يسوي لوب باستخدام getAccounts طريقتي مجربها من قبل !
-
احلي جابر <3 منور
-
مود رائع ي بطل استمر بالتوفيق
-
addEventHandler("onPlayerLogin", root, function(_, account) setElementData(source, "Account", getAccountName(account)) end)
-
لك ولي انشااءالله <3
-
انت المعلم <3
-
تلميذك منور دابل <3 منور والله الموضوع
-
منور جست <3
-
منور يا ابن ليبيا <3
-
منور امين انت الكفو
-
منور الموضوع يا بطل <3 بالنسبة للاحداثيات يقدر يقف ف المكان الي يبيه ويسوي الماركر
-
مود رائع بس في بق خلي الشيك بوكس راديو بوتون لانه لو اختار 30 و60 يوم وش يصير بق كبير والدي بق بينفجر + هل تحفظ التايمر بالاكونت داتا ؟
-
* اخباركم ان شاء الله بخير يوم جايب لكم مود مسابقة الفلوس الصور : ًصور :- ان شاء الله عجبكم .. المود مشفر لـ حفظ الحقوق ***** المود عبارة عن : انك تسوي تكتب المربع الاول مثلا تم بدا المسابقة اذهب الي علامة المال علي الخريطة تكتب بالمربع الثاني المبلغ الي يحصل عليه اللاعب لين يلمس الماركر واول ما تضغط بدأ المسابقة يظهر ماركر بمكانك يلون الوان متعددة اول ما اللاعب يلمس الماركر ياخد الفلوس ويختفي الماركر والعلامة الماركر يتنشأ مكان ما انت واقف يمكنك حذف المسابقة ايضا السكربت سهل بس في صديق الي طلبه مني ****** يمديك تغير الامر لفتح اللوحة عبر ملف Setting.lua الامر الحالي competion الإهداءات 1 - راجو 2 - دابل 3 - جوست 4 - سعود 5 - نصور 6 - تنطيل 7 - ويزارد 8 - لووس 9 - خالد 10 - كركر 11 - مودير 12 - سعد 13-تنطيل 14-ماكس 15-احزان 16-احمد09 17-دي تي سي 12 18- احمد لي 19-حسون 20-من يسوي تعليق ع الموضوع =) التحميل : https://community.multitheftauto.com/index.php?p=resources&s=details&id=12965
-
Tapleto-Host| Linux/Windows VPS - Game Servers - TeamSpeak
Me[Z]oO replied to TAPL's topic in الاستضافات
-
#تم التجربة --Client local key = "F5" GUIEditor = { gridlist = {}, window = {}, button = {} } local screenW, screenH = guiGetScreenSize() GUIEditor.window[1] = guiCreateWindow((screenW - 699) / 2, (screenH - 493) / 2, 699, 493, "xX[rent system]Xx", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetProperty(GUIEditor.window[1], "CaptionColour", "FFFEF500") guiSetVisible (GUIEditor.window[1],false) gridlist = guiCreateGridList(11, 33, 448, 450, false, GUIEditor.window[1]) guiGridListAddColumn(gridlist, "ID", 0.5) guiGridListAddColumn(gridlist, "Car Name", 0.5) GUIEditor.button[1] = guiCreateButton(466, 35, 223, 51, "xX[spawn Vehicle|اضهار السياره]Xx", false, GUIEditor.window[1]) guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFFECB00") GUIEditor.button[2] = guiCreateButton(466, 96, 223, 51, "xX[Destroy Vehicle|سحب السياره]Xx", false, GUIEditor.window[1]) guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FFFECB00") GUIEditor.button[3] = guiCreateButton(466, 163, 223, 51, "xX[Warp To Vehicle|انتقال للسياره]Xx", false, GUIEditor.window[1]) guiSetProperty(GUIEditor.button[3], "NormalTextColour", "FFFECB00") GUIEditor.button[4] = guiCreateButton(466, 224, 223, 51, "xX[Warp Vehicle| نقل السياره]Xx", false, GUIEditor.window[1]) guiSetProperty(GUIEditor.button[4], "NormalTextColour", "FFFECB00") GUIEditor.button[6] = guiCreateButton(544, 308, 220, 56, "xX[Repair|اصلاح]Xx", false, GUIEditor.window[1]) guiSetProperty(GUIEditor.button[6], "NormalTextColour", "FFFECB00") function Show_Hide() if guiGetVisible(GUIEditor.window[1]) == false then guiSetVisible(GUIEditor.window[1], true) showCursor(true) else guiSetVisible(GUIEditor.window[1], false) showCursor(false) end end bindKey(key,"down",Show_Hide) Cars = { {"Infernus",411} } for Key, Value in ipairs(Cars) do local Row = guiGridListAddRow(gridlist) guiGridListSetItemText(gridlist, Row, 1, Value[1], false, false) guiGridListSetItemText(gridlist, Row, 2, Value[2], false, false) end addEventHandler ('onClientGUIClick',GUIEditor.button[1],function () if ( guiGridListGetSelectedItem (gridlist) ~= -1 ) then local id = guiGridListGetItemText (gridlist,guiGridListGetSelectedItem (gridlist),2) triggerServerEvent('spawn',localPlayer,id) end end,false) addEventHandler ('onClientGUIClick',GUIEditor.button[2],function () if ( guiGridListGetSelectedItem (gridlist) ~= -1 ) then local id = guiGridListGetItemText (gridlist,guiGridListGetSelectedItem (gridlist),2) triggerServerEvent('Destroy',localPlayer,id) end end,false) addEventHandler ("onClientGUIClick",root, function () if source == GUIEditor.button[3] then triggerServerEvent("WarpToVehicle",localPlayer) end end) addEventHandler ("onClientGUIClick",root, function () if source == GUIEditor.button[4] then triggerServerEvent("mezo",localPlayer) end end) addEventHandler ("onClientGUIClick",root, function () if source == GUIEditor.button[6] then triggerServerEvent("mezo3",localPlayer) end end) --Server nVehicle = {}, addEvent("spawn",true) addEventHandler("spawn",root,function (vehicleID) local x, y, z = getElementPosition (source) local _,_,r = getPedRotation (source) if isElement(nVehicle[source]) then destroyElement(nVehicle[source]) else nVehicle[source] = createVehicle (vehicleID, x, y, z+1, 0, 0,r) warpPedIntoVehicle (source,nVehicle[source] ) end addEvent("WarpToVehicle",true) addEventHandler("WarpToVehicle",root, function () warpPlayerIntoVehicle (source , nVehicle[source]) end ) addEvent("mezo",true) addEventHandler("mezo",root, function () x,y,z = getElementPosition(source) setElementPosition(nVehicle[source],x,y,z) end ) addEvent("mezo3",true) addEventHandler("mezo3",root, function () fixVehicle(nVehicle[source]) end ) end) addEvent("Destroy",true) addEventHandler("Destroy",root,function (vehicleID) destroyElement (nVehicle[source]) end) صلحت لك لو دست ع الزر اكتر من مرة يسوي اكثر من سيارة صلحت لك بعد التريقرات وضفت لك تريقر اصلا السيارة وتريقر انتقال السيارة لك وسحب السيارة لك
-
صلحته لك سويتلك لاعب ومساعد ولقيت زر المسح فاضي م يسوي شي برمجته لك تعا فيس استقبل المود