Jump to content

وش سالفة النظام الجديد الاصدار


EH10

Recommended Posts

لا ما بيغيرون شي, من نشر الاشاعة هذي؟
1.4 حاول تصبر للأصدار الجديد

, لأن حسب الي اعرفه انه بيغرون في نظام البرمجه,

Heads up! Client classes only work on MTA 1.4, therefore we highly recommend you to visit Client Scripting Classes first.

مثال من الويكي,

addEventHandler( "onClientResourceStart", resourceRoot, 
    function() 
        infernus = Vehicle.create( 411, Vector3( 0, 0, 3 ) ); -- Create an Infernus and spawn it at the middle of SA. 
        infernus:setColor( 0, 0, 0 ); -- Set its color to black. 
    end) 
  
addCommandHandler( "blowinfernus", 
    function() 
        if not infernus.blown then -- Check if the Infernus is blown up or not. 
            infernus:blow(); 
        else -- Ouch, it's blown up, let's output an error to the client. 
            outputChatBox( "The Infernus has already been blown up by you.", 255, 0, 0, false ); 
        end 
    end) 

اذا كانت اشاعه وش قصه المثال ؟

ووش قصه :

Heads up! Client classes only work on MTA 1.4, therefore we highly recommend you to visit Client Scripting Classes first.

Link to comment

يمديك مثلاً تصنع سيارة باستخدام هالطريقة

Vehicle.create ( --[[الأرقيومنتات]] ) 

أو

Vehicle ( --[[ الأرقيومنتات ]] ) 

Classes can be created by either calling the create method, when applicable, or by calling the class. For example: Vehicle(...) is the same as Vehicle.create(...).
Link to comment

ما ادري وش النظام , يعني تيتي المثال ذا يثبت عكس كلامك

addEventHandler( "onClientResourceStart", resourceRoot, 
    function() 
        infernus = Vehicle.create( 411, Vector3( 0, 0, 3 ) ); -- Create an Infernus and spawn it at the middle of SA. 
        infernus:setColor( 0, 0, 0 ); -- Set its color to black. 
    end) 
  
addCommandHandler( "blowinfernus", 
    function() 
        if not infernus.blown then -- Check if the Infernus is blown up or not. 
            infernus:blow(); 
        else -- Ouch, it's blown up, let's output an error to the client. 
            outputChatBox( "The Infernus has already been blown up by you.", 255, 0, 0, false ); 
        end 
    end) 

createVehicle المثال ذا من

وبعدين حاط الاحداثيات داخله Vector3 لاحظ انت انه حاط بالمثال

Link to comment

للتوضيح فقط, النظام القديم ما بيروح

https://wiki.multitheftauto.com/wiki/Meta.xml

اذا تبي تفعلها, فعلها بكيفك, اذا ما تبي, خلاص OOP اسمها meta.xml فيه خاصية في ملف ال

class system واذا فعلتها, يمديك تستخدم ال

عشنه اكثر توضيح في بناء الاكواد class system بس انا شخصياً افضل ال

Object-Oriented programming = OOP :ملاحظة بسيطة

في البرمجة في صفحة الويكي OOP القراءة عن

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...