Jump to content

x[ سوال ]x اخفا مركر


Recommended Posts

يشتغل و هدا مجرد مثل

  
  
local markerExit = createMarker (390,174,1009, "arrow", 1.0, 0, 0, 0, 0 ) 
setElementAlpha (markerExit,0 ) 
  
addEventHandler("onMarkerHit",markerExit, 
  
function () 
  
outputChatBox("--") 
  
end 
  
) 

--سيرفر

Link to comment

م ظبت

  local markerExit = createMarker (390,174,1009, "arrow", 1.0, 0, 0, 0, 0 ) 
    setElementAlpha (markerExit,0 ) 
    setElementInterior (markerExit, 3 ) 
    addEventHandler ( "onMarkerHit",markerExit ,function (hitPlayer) 
    if (getElementType(hitPlayer) == 'player' ) then 
    if ( getPlayerTeam (hitPlayer) ) == getTeamFromName ( "Police LS" ) then 
    setElementPosition (hitPlayer,1483,-1767,19) -- Posicion del jugador donde aparecere cuando toque el marcador. 
    setElementInterior ( hitPlayer, 0 ) -- Interior donde aparecera el jugador. 
    setElementRotation ( hitPlayer, 0, 0, 0 ) --Rotacion del jugador ( donde aparecera ) 
    end 
    end 
    end) 
Link to comment

local markerExit = createMarker (390,174,1009, "arrow", 1.0, 0, 0, 0, 0 ) 
    destroyElement ( markerExit ) 
    setElementInterior (markerExit, 3 ) 
    addEventHandler ( "onMarkerHit",markerExit ,function (hitPlayer) 
    if (getElementType(hitPlayer) == 'player' ) then 
        if ( getPlayerTeam (hitPlayer) ) == getTeamFromName ( "Police LS" ) then 
            setElementPosition (hitPlayer,1483,-1767,19)  
               setElementInterior ( hitPlayer, 0 )  
                 setElementRotation ( hitPlayer, 0, 0, 0 )  
         end 
     end 
 end) 

Link to comment
هات ملف الميتا

وحاطط الكود سيرفر ولا كلينت ؟

يا طفلي العزيز

الساينتكس حق الكلاينت و السيرفر هو هو

الا اخر ارقمنت اللي هو VisibleTo

ومانه مستعمله يعني ردك ذا ماله اي فائدة

Link to comment
هات ملف الميتا

وحاطط الكود سيرفر ولا كلينت ؟

يا طفلي العزيز

الساينتكس حق الكلاينت و السيرفر هو هو

الا اخر ارقمنت اللي هو VisibleTo

ومانه مستعمله يعني ردك ذا ماله اي فائدة

يا حبيبي

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

Link to comment

او جرب هدا

function isPlayerInTeam(player, team) 
    assert(isElement(player) and getElementType(player) == "player", "Bad argument 1 @ isPlayerInTeam [player expected, got " .. tostring(player) .. "]") 
    assert((not team) or type(team) == "string" or (isElement(team) and getElementType(team) == "team"), "Bad argument 2 @ isPlayerInTeam [nil/string/team expected, got " .. tostring(team) .. "]") 
    return getPlayerTeam(player) == (type(team) == "string" and getTeamFromName(team) or (type(team) == "userdata" and team or (getPlayerTeam(player) or true))) 
end  
  
  
  
local w = createMarker (1482.26880,-1772.30725,18.79576, "arrow",1) 
setElementDimension(w,1) 
    addEventHandler ( "onMarkerHit",w,function (hitPlayer) 
    if getElementType(hitPlayer) == 'player'  then 
   if  isPlayerInTeam(hitPlayer,"Police LS")  then 
    setElementPosition (hitPlayer,1483,-1767,19) -- Posicion del jugador donde aparecere cuando toque el marcador. 
    else 
    outputChatBox("انت ليس من هدا التيم",hitPlayer,0,255,0) 
    end 
    end 
    end 
    ) 
     

Edited by Guest
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...