Jump to content

onVehicleStartEnter


Recommended Posts

السلام عليكم شباب مشكلتي اليوم مع ذا الكود

     veh = {} 
    addEventHandler("onVehicleStartEnter",root, 
        function (player) 
         if veh[player] and isElement( veh[player] ) then 
         veh[player] = veh[source]  
            if ( getTeamName( getPlayerTeam( player ) ) ~= Settings["teamName"] ) then       
                cancelEvent()  
                outputChatBox("* #0069c7this vehicle for #ff0000"..Settings["teamName"].." #0069c7team",player,255,0,0,true) 
            end 
            end 
        end 
    ) 

المشكلة اللي فيه انه يسوي الامر مرة واحدة بس ما يتكرر يعني

الاعب لمى يجي يبى يركب السيارة يطلعله كلام في الشات يقول

"this vehicle for Gang team" 

ولمى يرجع الاعب مره ثانيه يبغى يركب السيارة ما يطلع له

"this vehicle for Gang team" 

ويقدر يركب السيارة

خلاصة الكلام انه الخلل اللي في المود هو: اللاعب لمى يجي يضغط المره الاولى يطلع له الكلام اللي في الشات وما يقدر يدخل السيارة ولمى يجي مره ثانيه يضغط يقدر يدخل السيارت

المساعدة يا شباب..؟؟

Link to comment
local Team = "Tema Name" 
addEventHandler("onVehicleStartEnter", root, 
function(player) 
    if veh[player] and isElement( veh[player] ) then 
           veh[player] = veh[source] 
            if (getPlayerTeam ( player ) ) and ( getPlayerTeam ( player ) == getTeamFromName ( "tostring ( Team )" ) ) then 
            outputChatBox("* #0069c7this vehicle for #ff0000"..Team.." #0069c7team",player,255,0,0,true) 
            cancelEvent() 
        else 
            outputChatBox("*Welcome",player,255,0,0,true) 
        end 
    end 
    end) 

لـــم يتم التجربة

Link to comment

local Team = "Tema Name" 
  
addEventHandler("onVehicleStartEnter", root, 
function    (   player  ) 
    if veh[player] and isElement ( veh[player] ) then 
          if getPlayerTeam ( player ) ~= getTeamFromName ( Team ) then 
                outputChatBox( "* #0069c7this vehicle for #ff0000"..Team.." #0069c7team",player,255,0,0,true ) 
                cancelEvent(    ) 
        end 
    end 
end 
) 
Link to comment
local Team = "Tema Name" 
  
addEventHandler("onVehicleStartEnter", root, 
function    (   player  ) 
    if veh[player] and isElement ( veh[player] ) then 
          if getPlayerTeam ( player ) ~= getTeamFromName ( Team ) then 
                outputChatBox( "* #0069c7this vehicle for #ff0000"..Team.." #0069c7team",player,255,0,0,true ) 
                cancelEvent(    ) 
        end 
    end 
end 
) 

برستيج المشكلة اللي فيه انه ما يركب اي سيارة الا اذا كان من الفريق

اي سيارة حتى الادمنيه والفري روم ما يقدر يركبها عشان كذا ان حطيت

veh = {} 
veh[player] = veh[source] 

Link to comment

local Team = "Tema Name" 
  
addEventHandler("onVehicleStartEnter", root, 
function    (   player  ) 
    if veh[player] and isElement ( veh[player] ) then 
        if ( source == veh[player] ) then 
          if getPlayerTeam ( player ) ~= getTeamFromName ( Team ) then 
                outputChatBox( "* #0069c7this vehicle for #ff0000"..Team.." #0069c7team",player,255,0,0,true ) 
                cancelEvent(    ) 
            end 
        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...