Jump to content

iiv03

Members
  • Posts

    476
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by iiv03

  1. iiv03

    i need help :(

    local show = false local alpha = 0 screenWidth, screenHeight = guiGetScreenSize() scale = (screenWidth/1280)*(screenHeight/720) addEventHandler("onClientRender", getRootElement(), function() if show then alpha = math.min(alpha + 20, 255) else alpha = math.max(alpha - 20, 0) end dxDrawRectangle(screenWidth/3.3595, screenHeight/2.4406, screenWidth/2.4710, screenHeight/5.4961, tocolor(0, 0, 0, 148), alpha)) end ) bindKey("F1", "down", function() show = not show end ) what is problem?
  2. شباب انا كنت العب عادي الي حيرني لما دخلت سويت editor للماب عشان اجيب لقطه صوره وقفلت editor كله وشغلت race عشان العب ماب بس لما لعبت جتني لفه بطيئ مره ؟ ليش انا غيرت ججيم مود مانفع خرجت لعبه مانفع طفيت سيرفر محلي مانفع زودت fps 100 مانفع والجيم سبيد نورمال مخليه 1 جربت اغيره مانفع السياره تبقي لفته ثقيله مره ممكن حل؟
  3. السلام عليكم شبآب وأسف علي جوده جهازي خرا بس الحين ختمت ماب قاز 11 عآرف انه سهل بس قريب بختم مابات صعب ومثل مابات صعب Rage Just got Shraket Final Rage Just got shraket! Snake v9 Snake v10 RedGTX Zidra Skillz Naval v10 مابات ثآنيه مأعرف أسمه بس كثير اتمنا بس تدعمني بلايك المقطع : تحيآتي
  4. hey guys i know Action its best and easy for record mta sa and when u download action version cracked after i installing the program and mta its work and open when i open Action Give me The Error and MTA San Andreas if i select Cancel Mta Quit and if i select OK is open Visual Studio 2017 ? what is problem i want to record video I've got this problem with my old PC and this is a new PC Windows 10 Pro 64 Bit New from Microsoft Version = 1.5.6-release-14334.0.000 Time = Sun Sep 9 05:31:56 2018 Module = C:\Program Files (x86)\Mirillis\Action!\action_x86.dll Code = 0xC0000005 Offset = 0x00006B64 EAX=00000000 EBX=005B025C ECX=0B940000 EDX=00000000 ESI=54562790 EDI=1374AED8 EBP=1CACED38 ESP=1CACECE8 EIP=54366B64 FLG=00010246 CS=0023 DS=002B SS=002B ES=002B FS=0053 GS=002B father mta (ccw) help
  5. hi guys i want to get color these in image ( ---,---,--- )
  6. السلام عليكم شباب بالله كيف اخلي لوحة م تتحرك ب ماوس ؟ او تتحرك مع GUI يعني مثال انا مسوي dx ومخليه علي gui بس الاعب المشكله يحرك dx وال gui ماتتحرك يعني بديهم اثنين يتحركو مع بعضهم او بديهم مايتتحركو اذا ضغذت كليك يسار علي ماوس وماتتحرك تبقى ب نفس شيئ + لو سمحتو والله مفهمت شيئ لضبط شاشه اخليه ب كل لاعبين مساعده لاهنتم وشكرا
  7. hello guys i have the script and i want to change the dxText how The color I need 85, 85,85 i tried to change it and the color change did not work local sx,sy = guiGetScreenSize() local px = 40 local py = sy/-10 - 5 local counter = 250 local fadeOut = nil cMessages = {} function dxDrawColorText(str, ax, ay, bx, by, color, scale, font, alpha) local pat = "(.-)#(%x%x%x%x%x%x)" local s, e, cap, col = str:find(pat, 1) local last = 1 while s do if cap == "" and col then color = tocolor(tonumber("0x"..col:sub(1, 2)), tonumber("0x"..col:sub(3, 4)), tonumber("0x"..col:sub(5, 6)), alpha) end if s ~= 1 or cap ~= "" then local w = dxGetTextWidth(cap, scale, font) dxDrawText(cap, ax, ay, ax + w, by, color, scale, font, "left", "center") ax = ax + w color = tocolor(tonumber("0x"..col:sub(1, 2)), tonumber("0x"..col:sub(3, 4)), tonumber("0x"..col:sub(5, 6)), alpha) end last = e + 1 s, e, cap, col = str:find(pat, last) end if last <= #str then cap = str:sub(last) local w = dxGetTextWidth(cap, scale, font) dxDrawText(cap, ax, ay, ax + w, by, color, scale, font, "left", "center") end end addEventHandler("onClientRender", root, function() if getElementData(localPlayer, "guiDisabled") then return end counter = counter - 1 if counter == 20 and cMessages[1] then fadeOut = cMessages[1] table.remove(cMessages, 1) end if counter <= 20 and counter > 0 then py = sy/2 - 40 + counter elseif counter == 0 then py = sy/2 - 40 counter = 200 end if fadeOut then fadeOut[3] = math.max(fadeOut[3] - 0.05, 0) for i = 1,2 do dxDrawImage(px - 20, 2 + py - 20, 18,16, fadeOut[2]..".png", 0,0,0,tocolor(255,255,255,255*fadeOut[3])) end dxDrawText(string.gsub ( fadeOut[1], '#%x%x%x%x%x%x', ''), px+1, 1+py - 10, px + 101, 1+py, tocolor(80,80,80,200*fadeOut[3]), 1, "default-bold", "left", "center" ) dxDrawColorText(fadeOut[1], px, py -10, px + 100, py, tocolor(255,255,255,255*fadeOut[3]), 1, "default-bold", 255*fadeOut[3] ) if fadeOut[5] and fExists(fadeOut[5]) and fadeOut[4] == 1 then dxDrawImage(px - 25, 2 + py - 20, 18,16, fadeOut[5], 0,0,0,tocolor(255,255,255,255*fadeOut[3])) end if fadeOut[3] == 0 then fadeOut = nil end end for id, message in ipairs(cMessages) do if id > 4 then return end cMessages[id][3] = math.min(cMessages[id][3] + 0.05, 1) for i = 1,2 do dxDrawImage(px - 20, 2 + py + ( id - 1 ) * 20, 18,16, message[2]..".png", 0,0,0,tocolor(255,255,255,255*cMessages[id][3])) end dxDrawText(string.gsub ( message[1], '#%x%x%x%x%x%x', ''), px+1, 1+py + (id-1)*20, px + 101, 1+py + id*20, tocolor(80,80,80,200*cMessages[id][3]), 1, "default-bold", "left", "center" ) dxDrawColorText(message[1], px, py + (id-1)*20, px + 100, py + id*20, tocolor(255,255,255,255*cMessages[id][3]), 1, "default-bold", 255*cMessages[id][3] ) if message[5] and fExists(message[5]) and message[4] == 1 then dxDrawImage(px - 25, 2 + py + ( id - 1 ) * 20, 18,16,message[5],0,0,0,tocolor(255,255,255,255*message[3])) end end end ) function outputCrapBox( mType, message, more ) if #cMessages == 0 then counter = 300 end local intMType if mType == "join" then intMType = 1 elseif mType == "quit" then intMType = 2 elseif mType == "login" then intMType = 3 elseif mType == "nickchange" then intMType = 4 elseif mType == "mute" then intMType = 5 else return end if more then more = ":admin/client/images/flags/"..more..".png" end table.insert( cMessages, { message, mType, 0, intMType, more } ) end addEvent("onClientCrapBox", true) addEventHandler("onClientCrapBox", root, function( mType, message, more ) outputCrapBox( mType, message, more ) end ) addEventHandler('onClientPlayerChangeNick', root, function(oldNick, newNick) outputCrapBox("nickchange", oldNick.." #FFFFFFchanged his name to "..newNick..".") end ) flExists = {} flChecked = {} function fExists( filename ) if flChecked[filename] then return flExists[filename] end flChecked[filename] = true flExists[filename] = fileExists(filename) return flExists[filename] end
  8. لو سمحتو بدور علي مبرمج ريس برمجته حلو ونتفاهم ب خاص كل شيئ فلوس ويقبل كروت الشحن التونسي : اورنج - اوريدو
  9. mc-client.lua mc-server.lua dxclient.lua اول شيئ م لحضت و مدخلت منتدي نسيت السؤال قلته فوق انا غبي ؟ كيف يعني انا دخلت الحين جديد سجلت ب منتدي و دخلت جديد ببرمجه و كيف انا غبي ؟ انا اطلب مساعده ي زفت افهم
  10. How do I do redo, nextmap, and random in any feature I've created? I've tried to give the admin, supermoderator, and moderator the same thing and I have tried the same name and the same name exists in the group and added command.redo command.nextmap command.random It did not work and they tell me: [PM] You are not an Admin
  11. باف8 يجيني redo شباب انا عندي آسل وشغال الحين مشغل عليه جيم مود ريس و سيرفري طبعا ريس بس انا مرقي حالي علي رتب كونسول بس ! لما اكتب [PM] You are not an Admin لازم ارقي حالي علي رتب ادمن وانا مابغي ارقي حالي بدي خاصيه بس اسوي قروب مثال Redo-Next واعطي الشخص الريدو يرستارت الماب اللي ابغاه انا حل ؟
  12. اتوقع حاطه ب رتب الكونسول كمان
  13. يعني قصدك شو اسم السكريبت انا مسوي مود اللوحة تسجيل علي gui و دي اكس
  14. ي جماعه مب مسوي ولا اي رمززززززززز افهموووووو ابغي حل !
  15. شباب انا جربت الاسل حق مستر جراند عارفه حق هجوله جربت اعدل الرتب حق القروب بس لما حطيته في السيرفر ريس و سويت ريستارت لريس و شغلت الجيم مود حق ريس بيضهر لي اريور لكل مابات / Changing to random map in 5 seconds Changing to random map in 5 seconds Changing to random map in 5 seconds Changing to random map in 5 seconds هذا يعني للآسل م يقبل الجيم مود ولا كيف تكفون ابي حل ولو واحد معه آسل يعطيني اياه اسف علي التعب
  16. تغيرت و شفته https://luac.multitheftauto.com/
  17. <meta> <info name="ACER#RuLeZ" version="1.0.0" description="FN - LoginPanel"/> <script src="mc-client.luac" type="client"/> <script src="dxclient.luac" type="client"/> <script src="mc-server.luac" type="server"/> <file src="CHLORINR.ttf" /> <file src="logo.png" /> </meta> لا مفيه اذا مب مشفر المود يشتغل بس اذا شفرته م يشتغلي
  18. غيرته و مزبطت لما اسوي ريفرش يجيني ارور للمود WARNING: Not loading resource 'loginpanel' as it contains illegal characters
  19. نسيت ي حب والله النت حقي كانت مفصوله والحين رجعته ممكن الصيغة بجرب ؟
  20. بدي طريق اشفر به مودات بسيطه عشان اذا بشفر مودات من mta luac المود م يشتغل حل !?
  21. Hi guys I have this screet published but I was correct it I would add a lot of pictures and when I added one picture InfernusIMG3 and I tried the model and opened a palette and I was press Next come to me 2 pictures only and I want 3 pictures to come What is the problem and please fix problem note: I want to add a lot of pictures : InfernusIMG_state = false addEventHandler("onClientResourceStart", resourceRoot, function() Julian = guiCreateStaticImage(0.24, 0.14, 0.50, 0.70, "data/img/background.png", true) guiSetAlpha(Julian, 0.79) local font0_font = guiCreateFont("data/font/font.ttf", 10) guiSetFont(Nick, font0_font) guiLabelSetHorizontalAlign(Nick, "center", false) guiLabelSetVerticalAlign(Nick, "center") TitleImage = guiCreateStaticImage(0.00, 0.00, 1.00, 0.08, "data/img/background.png", true, Julian) Title = guiCreateLabel(0.00, 0.00, 0.99, 0.88, "× [ Skins Cars ] ×", true, TitleImage) guiSetFont(Title, font0_font) guiLabelSetHorizontalAlign(Title, "center", false) guiLabelSetVerticalAlign(Title, "center") InfernusIMG = guiCreateStaticImage(0.16, 0.24, 0.65, 0.58, "data/infernus/default.png", true, Julian) InfernusIMG2 = guiCreateStaticImage(0.16, 0.24, 0.65, 0.58, "data/infernus/micra-v1.png", true, Julian) InfernusIMG3 = guiCreateStaticImage(0.16, 0.24, 0.65, 0.58, "data/infernus/info1.png", true, Julian) how_to = guiCreateLabel(0.21, 0.81, 0.52, 0.04, "Image Click Active Default Infernus", true, Julian) guiSetFont(how_to, "default-bold-small") guiLabelSetColor(how_to, 255, 143, 0) guiLabelSetHorizontalAlign(how_to, "center", false) guiLabelSetVerticalAlign(how_to, "center") Next = guiCreateStaticImage(0.53, 0.88, 0.08, 0.09, "data/img/next.png", true, Julian) Back = guiCreateStaticImage(0.36, 0.88, 0.08, 0.09, "data/img/back.png", true, Julian) guiSetVisible( InfernusIMG2, false ) guiSetVisible( InfernusIMG3, false ) guiSetVisible( Julian, false ) end ) function button_hover(aX, aY) if source == Back then guiStaticImageLoadImage( Back, "data/img/back2.png" ) elseif source == Next then guiStaticImageLoadImage( Next, "data/img/next2.png" ) end end addEventHandler( "onClientMouseEnter", root, button_hover) function button_out(aX, aY) if source == Back then guiStaticImageLoadImage( Back, "data/img/back.png" ) elseif source == Next then guiStaticImageLoadImage( Next, "data/img/next.png" ) end end addEventHandler( "onClientMouseLeave", root, button_out) function button_infernus() if source == Back then guiSetVisible( InfernusIMG, true ) guiSetVisible( InfernusIMG3, false ) guiSetVisible( InfernusIMG2, false ) elseif source == Next then guiSetVisible( InfernusIMG, false ) guiSetVisible( InfernusIMG2, true ) guiSetVisible( InfernusIMG3, true ) elseif source == InfernusIMG2 then txd = engineLoadTXD ( "data/model/infernus.txd" ) engineImportTXD ( txd, 411 ) dff = engineLoadDFF ( "data/model/infernus.dff" ) engineReplaceModel ( dff, 411 ) elseif source == InfernusIMG3 then txd = engineLoadTXD ( "data/model/infernus1.txd" ) engineImportTXD ( txd, 411 ) dff = engineLoadDFF ( "data/model/infernus1.dff" ) engineReplaceModel ( dff, 411 ) elseif source == InfernusIMG then engineRestoreModel( 411 ) end end addEventHandler( "onClientGUIClick", root, button_infernus) function bind() local IsWindowVisible = guiGetVisible(Julian) if (IsWindowVisible == true) then guiSetVisible(Julian, false) guiSetInputEnabled(false) showCursor(false) end if (IsWindowVisible == false) then guiSetVisible(Julian, true) showCursor(true) end end bindKey("o", "down", bind)
  22. iiv03

    مشكله

    معرف اصلن المود مب حقي حق واحد اجنبي اخذته عشان اعدل عليه
  23. السلام عليكم انا عدلت هذا المود وبدي اضيف كثير صور فيه بس جربت اسوي كوبي ل صوره الثاني كل شيئ كوبي و اخليه صوره 3 بس لما خلصت المشكله لما اضغط علي سهم يمين يمين تجي صورتين بس و انا ابغي 3 صور و بدي ازيد ي جماعه هذا مود InfernusIMG_state = false addEventHandler("onClientResourceStart", resourceRoot, function() Julian = guiCreateStaticImage(0.24, 0.14, 0.50, 0.70, "data/img/background.png", true) guiSetAlpha(Julian, 0.79) local font0_font = guiCreateFont("data/font/font.ttf", 10) guiSetFont(Nick, font0_font) guiLabelSetHorizontalAlign(Nick, "center", false) guiLabelSetVerticalAlign(Nick, "center") TitleImage = guiCreateStaticImage(0.00, 0.00, 1.00, 0.08, "data/img/background.png", true, Julian) Title = guiCreateLabel(0.00, 0.00, 0.99, 0.88, "Julian Infernus Panel", true, TitleImage) guiSetFont(Title, font0_font) guiLabelSetHorizontalAlign(Title, "center", false) guiLabelSetVerticalAlign(Title, "center") InfernusIMG = guiCreateStaticImage(0.16, 0.24, 0.65, 0.58, "data/infernus/default.png", true, Julian) InfernusIMG2 = guiCreateStaticImage(0.16, 0.24, 0.65, 0.58, "data/infernus/micra-v1.png", true, Julian) InfernusIMG3 = guiCreateStaticImage(0.16, 0.24, 0.65, 0.58, "data/infernus/info1.png", true, Julian) how_to = guiCreateLabel(0.21, 0.81, 0.52, 0.04, "Image Click Active Default Infernus", true, Julian) guiSetFont(how_to, "default-bold-small") guiLabelSetColor(how_to, 255, 143, 0) guiLabelSetHorizontalAlign(how_to, "center", false) guiLabelSetVerticalAlign(how_to, "center") Next = guiCreateStaticImage(0.53, 0.88, 0.08, 0.09, "data/img/next.png", true, Julian) Back = guiCreateStaticImage(0.36, 0.88, 0.08, 0.09, "data/img/back.png", true, Julian) guiSetVisible( InfernusIMG2, false ) guiSetVisible( InfernusIMG3, false ) guiSetVisible( Julian, false ) end ) function button_hover(aX, aY) if source == Back then guiStaticImageLoadImage( Back, "data/img/back2.png" ) elseif source == Next then guiStaticImageLoadImage( Next, "data/img/next2.png" ) end end addEventHandler( "onClientMouseEnter", root, button_hover) function button_out(aX, aY) if source == Back then guiStaticImageLoadImage( Back, "data/img/back.png" ) elseif source == Next then guiStaticImageLoadImage( Next, "data/img/next.png" ) end end addEventHandler( "onClientMouseLeave", root, button_out) function button_infernus() if source == Back then guiSetVisible( InfernusIMG, true ) guiSetVisible( InfernusIMG3, false ) guiSetVisible( InfernusIMG2, false ) elseif source == Next then guiSetVisible( InfernusIMG, false ) guiSetVisible( InfernusIMG2, true ) guiSetVisible( InfernusIMG3, true ) elseif source == InfernusIMG2 then txd = engineLoadTXD ( "data/model/infernus.txd" ) engineImportTXD ( txd, 411 ) dff = engineLoadDFF ( "data/model/infernus.dff" ) engineReplaceModel ( dff, 411 ) elseif source == InfernusIMG3 then txd = engineLoadTXD ( "data/model/infernus1.txd" ) engineImportTXD ( txd, 411 ) dff = engineLoadDFF ( "data/model/infernus1.dff" ) engineReplaceModel ( dff, 411 ) elseif source == InfernusIMG then engineRestoreModel( 411 ) end end addEventHandler( "onClientGUIClick", root, button_infernus) function bind() local IsWindowVisible = guiGetVisible(Julian) if (IsWindowVisible == true) then guiSetVisible(Julian, false) guiSetInputEnabled(false) showCursor(false) end if (IsWindowVisible == false) then guiSetVisible(Julian, true) showCursor(true) end end bindKey("o", "down", bind)
  24. شوف لو عندك مود منشور و يغير سكنات سيارات هات بحمله و بشوف فنكشأت حقه
×
×
  • Create New...