Jump to content

الجات و الماركر


Recommended Posts

ويش الخطأ بلكود انا ما اشوف خطأ

ان اذا الاعب لمس الماركر يطلع له كلام في الجات

بس الكلام ما يطلع

addEventHandler ( "onMarkerHit", marker, 
    function ( player ) 
        if ( getElementType ( player ) == "player" ) then  
            outputChatBox("mohssan", source, 255, 0, 0, true)                
        end 
    end 
) 

Link to comment
outputChatBox("mohssan", source, 255, 0, 0, true) 

source للايفنت هو الماركر يصير كذا :

outputChatBox("mohssan", player, 255, 0, 0, true) 

مشكور

بس مدام الموضوع عن الماركر بغيت شلون احذف الماركر يعني مو بس يختفي

لكن بعدين اقدر ارد اطلعه

Link to comment
setElementVisibleTo 

تصحيح

ابغي اذا لمس الماركر ينحدف

addEventHandler ( "onMarkerHit", marker2, 
    function ( player ) 
        if ( getElementType ( player ) == "player" ) then 
            setElementVisibleTo ( marker2,false )    
        end 
    end 
) 

Link to comment
addEventHandler ( "onMarkerHit", marker2, 
    function ( player ) 
        if ( getElementType ( player ) == "player" ) then 
            destroyElement(marker2) 
            marker2 = nil 
        end 
    end 
) 

اقدر بعدين اطلعها ؟

Link to comment
لم يتم التجربة :
addEventHandler ( "onMarkerHit", marker2, 
    function ( player ) 
        if ( getElementType ( player ) == "player" ) then 
            setElementVisibleTo ( marker2,getRootElement(),false )    
        end 
    end 
) 

يختفي الماركر لكن اذا اروح ليه و هو مختفي تتنفذ الاوامر الي فيه

Link to comment

اكيد لازم تسويها تقدر تسوي كذا

addEventHandler ( "onMarkerHit", marker2, 
    function ( player ) 
        if ( getElementType ( player ) == "player" ) then 
            destroyElement(marker2) 
         marker2 = nil 
        end 
    end 
) 

وتسوي وظيفة ثانية تسويه

if isElement(marker2) then 
destroyElement(marker2) 
marker2 = nil 
end  
marker2 = createMarker(..) 

Link to comment
اكيد لازم تسويها تقدر تسوي كذا
addEventHandler ( "onMarkerHit", marker2, 
    function ( player ) 
        if ( getElementType ( player ) == "player" ) then 
            destroyElement(marker2) 
         marker2 = nil 
        end 
    end 
) 

وتسوي وظيفة ثانية تسويه

if isElement(marker2) then 
destroyElement(marker2) 
marker2 = nil 
end  
marker2 = createMarker(..) 

تسلم برستيج تعبتك وياي

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