Jump to content

طلب تصحيح كود عجيب - تــــم بفضل المبدع عنــآآد ^^


Recommended Posts

السلام عليكم ...

سويت كود بنفسي و زبط جزئيا بس مو كامل

وظيفة الكود :

لما تكتب /vehicle

تعطيك سيارة انفرنوس شرط تكون في قروب ار بي سي

و ذي السيارة لحد يقدر يركبها الا انا

يعني اذا حاول واحد ركب تطلعله مسج تقوله لا تحاول مثلا

لكن الخطا هنا هو بعد ما يركب الشخص في السيارة تطلعله الرسالة و ما ينزل من السيارة

مع اني استعملت cancelEvent

هاذا الكود

    addCommandHandler('vehicle', 
    function( p ) 
    if isObjectInACLGroup ( "user." ..getAccountName ( getPlayerAccount ( p ) ), aclGetGroup ( "RPC" ) ) then 
    local x, y, z = getElementPosition( p ) 
      
    vehicle = createVehicle ( 411, x, y + 3, z ) 
    end 
    end 
    ) 
      
     addEventHandler ( "onVehicleEnter", root, 
    function( player, seat, jacked ) 
        if source == vehicle then 
            if (seat == 0) and ( not getPlayerFromName ( "#[iMr][E'rrOr]_N" ) ) then         
                    cancelEvent() 
                    removePlayerFromVehicle ( thePlayer ) 
                    outputChatBox ( "~][ هذه السيـآرة خاصة بفخامة مستر ايرور ][~", player, 255, 255, 0, true ) 
            elseif ( getPlayerFromName ( "#[iMr][E'rrOr]_N" ) ) then 
                    outputChatBox('مرحبا بك سيدي في سيـآرتك', player, 255, 0, 0, true) 
            end 
        end 
    end 
     ) 

الرجاء تصحيح الخطا اللي في الكود

يصبح لما يطغط انتر او اف تطلعله الرسالة و ما يقدر يدخل السيارة كسائق

واذا عندكم كود له نفس الوظيفة عطوني ياه

وشكرا

Edited by Guest
Link to comment
  
addCommandHandler ( "vehicle", 
    function ( thePlayer ) 
        if isObjectInACLGroup ( "user." ..getAccountName ( getPlayerAccount ( thePlayer ) ), aclGetGroup ( "RPC" ) ) then 
            x, y, z = getElementPosition ( thePlayer )    
            theVehicle = createVehicle ( 411, x, y + 3, z ) 
        end 
    end 
) 
          
addEventHandler ( "onVehicleStartEnter", root, 
    function ( thePlayer, theSeat ) 
        if source == theVehicle then 
            if ( theSeat == 0 ) and ( getPlayerName ( thePlayer ) ~= "#[iMr][E'rrOr]_N" ) then        
                cancelEvent ( ) 
                outputChatBox ( "~][ هذه السيـآرة خاصة بفخامة مستر ايرور ][~", thePlayer, 255, 255, 0, true ) 
            else 
                outputChatBox ( "مرحبا بك سيدي في سيـآرتك", thePlayer, 255, 0, 0, true ) 
            end 
        end 
    end 
) 
  

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...