Jump to content

</Mr.Tn6eL>

Members
  • Posts

    2,799
  • Joined

  • Days Won

    13

Everything posted by </Mr.Tn6eL>

  1. حتى احنا نسميه قفا وكمان نقول بالوجه والقفا يعني من قدام و ورا او من الظاهر والباطن
  2. createAnimation client only لكنها تستخدم بدون رندر وبسهولة وببساطة interpolateBetween الوظيفة مثل ويعني لو بغيت تسوي حركات على اللوحة او على اي شي ثاني مو بس حركات يمديك تستخدمها في اشياء ثانية interpolateBetween تختصر استخدام [color=#FF0000]createAnimation[/color]([color=#008000]int[/color] from, [color=#008000]int[/color] to, [color=#008000]int/string[/color] easing, [color=#008000]int[/color] duration, [color=#008000]function[/color] onChange) Required Arguments ---from: the start value ---to: the end value ---easing: the easing function to use for the animation or can be used the easing number, e.g. "Linear" = 1, "InQuad" = 2, "OutQuad" = 3, ... ---duration: the duration of animation ---onChange: the function to call when the animation value is changed Code : anims = { } builtins={ "Linear", "InQuad", "OutQuad", "InOutQuad", "OutInQuad", "InElastic", "OutElastic", "InOutElastic", "OutInElastic", "InBack", "OutBack", "InOutBack", "OutInBack", "InBounce", "OutBounce", "InOutBounce", "OutInBounce" } function table.find(t, v) for k,a in ipairs(t) do if a == v then return true end end return false end function createAnimation(f, t, easing, duration, onChange, onEnd) assert(type(f) == "number", "Bad argument @ 'createAnimation' [expected number at argument 1, got "..type(f).."]") assert(type(t) == "number", "Bad argument @ 'createAnimation' [expected number at argument 2, got "..type(t).."]") assert(type(easing) == "string" or (type(easing) == "number" and (easing >= 1 or easing <= #builtins)), "Bad argument @ 'createAnimation' [invalid easing at argument 3]") assert(type(duration) == "number", "Bad argument @ 'createAnimation' [expected number at argument 4, got "..type(duration).."]") assert(type(onChange) == "function", "Bad argument @ 'createAnimation' [expected function at argument 5, got "..type(onChange).."]") return table.insert(anims, {from = f, to = t, easing = table.find(builtins, easing) and easing or builtins[easing], duration = duration, start = getTickCount( ), onChange = onChange, onEnd = onEnd}) end addEventHandler("onClientRender", root, function( ) local now = getTickCount( ) for k,v in ipairs(anims) do v.onChange(interpolateBetween(v.from, 0, 0, v.to, 0, 0, (now - v.start) / v.duration, v.easing)) if now >= v.start+v.duration then table.remove(anims, k) if type(v.onEnd) == "function" then v.onEnd( ) end end end end) Example : --Slide Animation local sx, sy = guiGetScreenSize( ) local window = guiCreateWindow((sx-300)/2, (sy-400)/2, 300, 400, "Test", false) guiSetVisible(window, false) bindKey("f2", "down", function( ) if anim then return end local v = guiGetVisible(window) if not v then guiSetVisible(window, true) end anim = true createAnimation(v and 400 or 0, v and 0 or 400, 2, 1250, function(height) if v and height == 0 then guiSetVisible(window, false) anim = false elseif not v and height == 400 then anim = false end local w, h = guiGetSize(window, false) guiSetSize(window, w, height, false) end) end) ولاتنسوني من صالح دعائكم والسلام عليكم ورحمة الله وبركاته
  3. كفوووو سكربت رائع من الوجه والقفا
  4. رابط الكراك 32 بت https://drive.google.com/folderview?id= ... sp=sharing
  5. الكود من الويكي
  6. ERROR: Problem with resource: play; Failed to link to freeroam خطأ : مشكلة فالمود؛ فشل الوصول إلى الفري روم
  7. يامن تخليتي عني لا اريد من حليبك اريد حليب . . ..... ............... ........................ ............................... ههههههههههه قديم على ايام ويندوز إكس بي
  8. ممكن امزح معك انت طفل عمرك 10 سنين امزح + وش دخلك + امزح هههه اصلا انا اكلم راجوواقوله يهدي عليك ما كلمتك انت ههههههههههههههه هههه دقيقة هو اللي غلط علي كيف يهدى
  9. ممكن امزح معك انت طفل عمرك 10 سنين امزح + وش دخلك + امزح هههه
  10. وش قصة اعلان يا اطفال ياحلوين اشربو الحليب ؟؟ وربي اعلان كل شوي يجيني حق نيدو ؟؟
  11. انا ابي اسجل مايسجل كل ما اكتب كلمة سر مايكتب
  12. ما يمديك تجيب سيريال لاعب ثاني في الكلنت غير اللوكال بلاير
  13. نافذة gui ولا dx? اذا دي اكس استخدم رندر تارقت 2D rotation dxCreateRenderTarget dxSetRenderTarget dxDrawImage -- draw render target 3D rotation dxCreateRenderTarget dxCreateShader dxSetShaderValue -- set shader value to render target dxSetRenderTarget dxSetShaderTransform dxDrawImage -- draw shader ملف الشادر texture Tex0; technique simple { pass P0 { //-- Set up texture stage 0 Texture[0] = Tex0; //-- Leave the rest of the states to the default settings } }
  14. اصبح الناس يساء فهمنا فمن يقوم بهذي الحركات ماههو الا بإرهابي
  15. mta و http هذي الوظائف للاتصال ببروتوكول تسمح لك الاتصال واحضار البيانات بحيث يمديك تتصل بسكربت معين بسيرفر ما لكن يجب توفير صلاحية في ذاك السيرفر ويمديك تتصل بموقع ويب لاحضار بيانات معينة او ارسال بيانات معينة يعني اتصال واحضار بيانات خارجية وازيدك من الشعر بيت تبي تحمل صورة, ملفات يمديك تستخدم الوظيفة fetchRemote و callRemote تستخدم مثلا اذا بغيت تتصل مع سيرفر ثاني مثلا تبغى تسوي مود شات يتصل بين السيرفرين اول شي نحط المودين في السيرفرين ونعيطهم صلاحيات ويعني يمديك تتواصل فيما بينهم او تبغى تسوي موقع ؟. وتجيب السكور ولفل الاعب ارسل البيانات بهذي الوظيفة ثم باستخدام phpSDK تقدر تجيب البيانات وتحطها بموقعك يعني باختصار اتصالات خارجية
×
×
  • Create New...