-
Posts
1,830 -
Joined
-
Last visited
Everything posted by Me[Z]oO
-
GUIEditor = { button = {}, edit = {}, window = {}, gridlist = {}, label = {}, } GUIEditor.window[1] = guiCreateWindow(210, 134, 374, 394, "لوحة - ارسال المال", false) guiWindowSetSizable(GUIEditor.window[1], false) GUIEditor.label[2] = guiCreateLabel(22, 342, 198, 44, "Created By Iphone", false, GUIEditor.window[1]) guiLabelSetColor(GUIEditor.label[2], 255, 0, 0) GUIEditor.gridlist[2] = guiCreateGridList(9, 20, 129, 320, false, GUIEditor.window[1]) local column = guiGridListAddColumn(GUIEditor.gridlist[2], "اللاعبين", 0.9) --- if ( column ) then for i, p in ipairs(getElementsByType("player")) do local row = guiGridListAddRow ( GUIEditor.gridlist[2]) guiGridListSetItemText ( GUIEditor.gridlist[2], row, column, getPlayerName ( p), false, false ) end end --- GUIEditor.button[3] = guiCreateButton(243, 21, 122, 45, "ارسال", false, GUIEditor.window[1]) GUIEditor.edit[1] = guiCreateEdit(245, 76, 120, 30, "", false, GUIEditor.window[1]) GUIEditor.label[7] = guiCreateLabel(208, 85, 79, 43, " : المبلغ", false, GUIEditor.window[1]) guiLabelSetColor(GUIEditor.label[7], 125, 253, 0)
-
الاكواد من الويكي م تفيدك !! هذه مجرد امثله وانت تفهم الارقمنتات
-
يا الله من وين هذا الابداع اجل هذا مصدر الابداع فكرة جديدة, اول مرة اشوفها استمر ,~
-
function dxDrawImageOnElement(TheElement,Image,distance,height,width,R,G,B,alpha) local x, y, z = getElementPosition(TheElement) local x2, y2, z2 = getElementPosition(localPlayer) local distance = distance or 20 local height = height or 1 local width = width or 1 local checkBuildings = checkBuildings or true local checkVehicles = checkVehicles or false local checkPeds = checkPeds or false local checkObjects = checkObjects or true local checkDummies = checkDummies or true local seeThroughStuff = seeThroughStuff or false local ignoreSomeObjectsForCamera = ignoreSomeObjectsForCamera or false local ignoredElement = ignoredElement or nil if (isLineOfSightClear(x, y, z, x2, y2, z2, checkBuildings, checkVehicles, checkPeds , checkObjects,checkDummies,seeThroughStuff,ignoreSomeObjectsForCamera,ignoredElement)) then local sx, sy = getScreenFromWorldPosition(x, y, z+height) if(sx) and (sy) then local distanceBetweenPoints = getDistanceBetweenPoints3D(x, y, z, x2, y2, z2) if(distanceBetweenPoints < distance) then dxDrawMaterialLine3D(x, y, z+1+height-(distanceBetweenPoints/distance), x, y, z+height, Image, width-(distanceBetweenPoints/distance), tocolor(R or 255, G or 255, B or 255, alpha or 255)) end end end end MarkerName = createMarker(..............) addEventHandler("onClientRender",root, function() Picture = dxCreateTexture("Name.png") dxDrawImageOnElement(MarkerName,Picture) end)
-
ان بعض الظن اثم قولت اعتقد ماقولت حقه لان الى ارسلها لي مثلها بالظبط هات صورة
-
guiSetVisible(GUIEditor.window[1],false) بعد كود اللوحة
-
شكلك اول مرة تدري #Le3ba SaedAmer Uinted #MASriy ذول حساباته عادي لو اعترفت ان ذول حساباتك م فيها شي بالمناسبة المود خرافي وعجبني استمر
-
ان بعض الظن اثم
-
كان في شك اول انك سعد لكن الحين مرحلة اليقين ههههههههههههههههههههههه
-
الطلب الاول setElementData addEventHandler -- "onClientWeaponFire" getElementData createExplosion الطلب الثاني setWorldSpecialPropertyEnabled الطلب الثالث addEventHandler -- "onClientPlayerDamage" cancelEvent
-
بالتوفيق اذا كانت الاكواد مو نسخ ولصق مثل الاهدائات
-
ناسخ كل اهدائاتي بالموضوع حقي
-
skype mezo.prince1
-
وش جاب سعد لـ سعود ض
-
كنت قبل اسبوع كاتب #Egypit وهي غلط الصح Egypt
-
ههههههههههههههههههههههههههههههههههههههههههههههه Location: #Egypit نفس طريقة الكتابة حقتك كاتب مصر غلط ونفس الاي بي وعلي مين تهرب
-
ليش تسوي حسابين انت ؟ حساب لعبة هذا يخص مين ؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟
-
--Client addEventHandler ("onClientGUIClick", root, function () if source == armour then if getPedArmor(localPlayer) == 100 then outputChatBox("تم تعبئة درعك من قبل يزم -_-",25,255,0 ) else triggerServerEvent('Mezo',localPlayer) outputChatBox("تم تعبئة درعك",source) end end end) --Server addEvent('Mezo',true) addEventHandler('Mezo',root, function() setPedArmor ( source, 100 ) end)