Jump to content

MaGnOoN7

Members
  • Posts

    13
  • Joined

  • Last visited

MaGnOoN7's Achievements

Square

Square (6/54)

0

Reputation

  1. انا مثلي مثلك ادور حل لحماية سكربتاتي فك التشفير ماافك بس اعلمك ان فيه سبيل لفك التشفير عن طريق تحليل الملف وعلى طاري الحل فيه حل ان شاء الله مثل ماعطتيني الكود الي عطل فك التشفير السريع بتعطيني كود يعطل تحليل الملف
  2. ولايخفيك ان البرنامج يطلع لك السطر الي فيه الكود Defined at Line يعني البحث بالهيكس مايأخذ منك 5 دقايق
  3. ياخي يمديك اذا كان التحليل شغال ومازال البرنامج يقدر يقراء الملف المشفر تقدر تفكه وعلى طاري كيف تحذف الكود انا اعلمك البرنامج الحين اذا سوينا تحليل للملف يطلع لك كل function الي بالملف انت تأخذ function الي فيها الكود وتحذفها بالهيكس سوى تصفرها او تسوي لها استبدال مع وظيفه ثانيه تصفرها = تخلي مكانها فراغ بالملف
  4. ياليت تقول لنا وش الي أنفك الحين بالصوره ما فيه أي كود مفكوك وش يشلع R2? R14? dxDrawText? tocolor? !!!!!!!!!!!!!!!!!!!!!!!!فهمني بالله وش الي أنفك تحليل الملف شغال يعني يمديك تطلع الكود من التحليل وتشلعه لسلة المهملات وتفك التشفير يشلع = يحذفه
  5. حطه بآول سطر في الكود ولازم تحط الكود ذا بعدين تشفره يعني تحط الكود وبعدين شفر بعدين جرب هو بااول السطر ومشفر !
  6. للاسف الكود يعطل فقط فك التشفير السريع بس تحليل الملف مازال شغال يعني تقدر تشلع الكود من الملف وتفكه ! فيه حل ؟
  7. إذا حطيته بآخر سطر بينفك الملف تقريباً نصه أما إذا حطيته بأول سطر ما بينفك من الملف شي يمكن قراءة فك التشفير تصير من اخر السطر ؟
  8. وعليكم السلام ورحمة الله وبركاته استخدم هالكود https://wiki.multitheftauto.com/wiki/DxDrawColorText وحطه في اي سطر في السكربت بس من الافضل تحطه آخر سطر في السكربت يعطيك العافيه جربت حطيت الكود وجاني ايرو جربتها بااول الملف واخر الملف وكلها جت ايرو بس وش الافضل اول الملف والا بالاخير ؟ الكود function dxDrawColorText(str, ax, ay, bx, by, color, scale, font, alignX, alignY) bx, by, color, scale, font = bx or ax, by or ay, color or tocolor(255,255,255,255), scale or 1, font or "default" if alignX then if alignX == "center" then ax = ax + (bx - ax - dxGetTextWidth(str:gsub("#%x%x%x%x%x%x",""), scale, font))/2 elseif alignX == "right" then ax = bx - dxGetTextWidth(str:gsub("#%x%x%x%x%x%x",""), scale, font) end end if alignY then if alignY == "center" then ay = ay + (by - ay - dxGetFontHeight(scale, font))/2 elseif alignY == "bottom" then ay = by - dxGetFontHeight(scale, font) end end local alpha = string.format("%08X", color):sub(1,2) 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(getColorFromString("#"..col..alpha)) end if s ~= 1 or cap ~= "" then local w = dxGetTextWidth(cap, scale, font) dxDrawText(cap, ax, ay, ax + w, by, color, scale, font) ax = ax + w color = tocolor(getColorFromString("#"..col..alpha)) end last = e + 1 s, e, cap, col = str:find(pat, last) end if last <= #str then cap = str:sub(last) dxDrawText(cap, ax, ay, ax + dxGetTextWidth(cap, scale, font), by, color, scale, font) end end
  9. السلام عليكم ورحمة الله وبركاته كيف اقدر احمي ملفات لوا من فك التشفير؟
  10. عيدك مبارك كل عام والامه الاسلاميه بخير
  11. نصلحه لك بس علمنا وشهو اسم الموقع ! GUIEditor_Window = {} GUIEditor_TabPanel = {} GUIEditor_Tab = {} GUIEditor_Button = {} GUIEditor_Edit = {} GUIEditor_Scrollpane = {} GUIEditor_Scrollbar = {} GUIEditor_Window[1] = guiCreateWindow(381,223,606,123,"start bank rebbery now",false) GUIEditor_Button[1] = guiCreateButton(474,40,122,56,"set time bank robbery at 1 minute",false,GUIEditor_Window[1]) GUIEditor_Button[2] = guiCreateButton(345,40,128,57,"finish bank robbery no one win",false,GUIEditor_Window[1]) GUIEditor_Button[3] = guiCreateButton(216,40,128,57,"Bring All in bank",false,GUIEditor_Window[1]) GUIEditor_Button[4] = guiCreateButton(87,40,129,56,"all win ",false,GUIEditor_Window[1]) GUIEditor_Edit[1] = guiCreateEdit(349,442,5,0,"",false,GUIEditor_Window[1]) GUIEditor_TabPanel[1] = guiCreateTabPanel(131,245,0,0,false,GUIEditor_Window[1]) GUIEditor_Tab[1] = guiCreateTab("Tab",GUIEditor_TabPanel[1]) GUIEditor_TabPanel[2] = guiCreateTabPanel(48,50,5,5,false,GUIEditor_Window[1]) GUIEditor_Tab[2] = guiCreateTab("Tab",GUIEditor_TabPanel[2]) GUIEditor_Tab[3] = guiCreateTab("Tab",GUIEditor_TabPanel[2]) GUIEditor_Scrollpane[1] = guiCreateScrollPane(9,3,5,5,false,GUIEditor_Window[1]) GUIEditor_Scrollbar[1] = guiCreateScrollBar(594,113,3,1,true,false,GUIEditor_Window[1]) bindKey ( "F9" , "down" , function() if ( guiGetVisible ( GUIEditor_Window[1] ) == true ) then guiSetVisible ( GUIEditor_Window[1] ,false ) showCursor (false ) else guiSetVisible ( GUIEditor_Window[1] ,true ) showCursor (true ) end end)
×
×
  • Create New...